summaryrefslogtreecommitdiff
path: root/src/mongo/db/timeseries/SConscript
blob: 505e7ba6cec72ea673a2616cb504ef8b2e193afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# -*- mode: python -*-

Import("env")

env = env.Clone()

env.Library(
    target='timeseries_options',
    source=[
        'timeseries.idl',
        'timeseries_options.cpp',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/base',
        '$BUILD_DIR/mongo/idl/idl_parser',
        '$BUILD_DIR/mongo/idl/server_parameter',
    ],
)

env.Library(
    target='bucket_catalog',
    source=[
        'bucket_catalog.cpp',
        'minmax.cpp',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/db/catalog/database_holder',
        '$BUILD_DIR/mongo/db/commands/server_status',
        '$BUILD_DIR/mongo/db/concurrency/write_conflict_exception',
        '$BUILD_DIR/mongo/db/views/views',
        '$BUILD_DIR/mongo/util/fail_point',
        'timeseries_options',
    ],
)

env.Library(
    target='bucket_compression',
    source=[
        'bucket_compression.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/bson/util/bson_column',
    ]
)

env.Library(
    target='timeseries_index_schema_conversion_functions',
    source=[
        'timeseries_index_schema_conversion_functions.cpp',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/db/index_names',
        '$BUILD_DIR/mongo/db/storage/storage_options',
        'timeseries_options',
    ],
)

env.Library(
    target='catalog_helper',
    source=[
        'catalog_helper.cpp',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/base',
        '$BUILD_DIR/mongo/db/catalog/collection_catalog',
        '$BUILD_DIR/mongo/db/namespace_string',
        'timeseries_options',
    ],
)

env.Library(
    target='timeseries_commands_conversion_helper',
    source=[
        'timeseries_commands_conversion_helper.cpp',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/db/index_commands_idl',
        '$BUILD_DIR/mongo/db/index_names',
        '$BUILD_DIR/mongo/db/namespace_string',
        '$BUILD_DIR/mongo/db/storage/storage_options',
        'timeseries_index_schema_conversion_functions',
        'timeseries_options',
    ],
)

env.Library(
    target='timeseries_dotted_path_support',
    source=[
        'timeseries_dotted_path_support.cpp',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/base',
    ],
)

env.Library(
    target='timeseries_update_delete_util',
    source=[
        'timeseries_update_delete_util.cpp',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/bson/mutable/mutable_bson',
        '$BUILD_DIR/mongo/db/pipeline/pipeline',
    ],
)

env.CppUnitTest(
    target='db_timeseries_test',
    source=[
        'bucket_catalog_test.cpp',
        'minmax_test.cpp',
        'timeseries_dotted_path_support_test.cpp',
        'timeseries_index_schema_conversion_functions_test.cpp',
        'timeseries_options_test.cpp',
        'timeseries_update_delete_util_test.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/db/catalog/catalog_test_fixture',
        'bucket_catalog',
        'timeseries_dotted_path_support',
        'timeseries_index_schema_conversion_functions',
        'timeseries_options',
        'timeseries_update_delete_util',
    ],
)