summaryrefslogtreecommitdiff
path: root/src/mongo/executor/SConscript
blob: 6083b988bf58da1b04c8f46cf2a64772845e21fa (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
# -*- mode: python -*-

Import("env")

env.InjectThirdPartyIncludePaths('asio')

env.Library(target='task_executor_interface',
            source=['task_executor.cpp',],
            LIBDEPS=[
                '$BUILD_DIR/mongo/db/service_context',
            ])

env.Library(target='network_interface',
            source=['network_interface.cpp',],
            LIBDEPS=[
            ])

env.Library(target='network_interface_impl', # TODO: rename to thread_pool_network_interface
            source=['network_interface_impl.cpp',],
            LIBDEPS=[
                '$BUILD_DIR/mongo/client/remote_command_runner_impl',
                '$BUILD_DIR/mongo/util/concurrency/thread_pool',
                'network_interface',
                # TODO: add dependency on the task executor *interface* once available.
            ])

env.Library('network_interface_mock',
            [
                'network_interface_mock.cpp',
                'thread_pool_mock.cpp',
            ],
            LIBDEPS=[
                'network_interface',
            ])

env.Library(target='network_test_env',
            source=['network_test_env.cpp',],
            LIBDEPS=[
                'network_interface_mock',
                '$BUILD_DIR/mongo/db/coredb',
                '$BUILD_DIR/mongo/db/repl/replication_executor',
            ])

env.Library(
    target='network_interface_asio',
    source=[
        'network_interface_asio.cpp',
        'network_interface_asio_auth.cpp',
        'network_interface_asio_command.cpp',
        'network_interface_asio_connect.cpp',
        'network_interface_asio_ssl.cpp',
        'network_interface_asio_operation.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/client/clientdriver',
        '$BUILD_DIR/mongo/db/coredb',
        '$BUILD_DIR/mongo/db/repl/replication_executor',
        '$BUILD_DIR/third_party/shim_asio',
    ])

env.Library(
    target='network_interface_factory',
    source=[
        'network_interface_factory.cpp',
    ],
    LIBDEPS=[
        'network_interface',
        'network_interface_asio',
        'network_interface_impl',
    ])

env.Library(
    target='task_executor_test_fixture',
    source=[
        'task_executor_test_common.cpp',
        'task_executor_test_fixture.cpp'
    ],
    LIBDEPS=[
        'network_interface_mock',
        'task_executor_interface',
    ]
)

env.Library(
    target='thread_pool_task_executor',
    source=[
        'thread_pool_task_executor.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/util/concurrency/thread_pool'
    ]
)

env.CppUnitTest(
    target='thread_pool_task_executor_test',
    source=[
        'thread_pool_task_executor_test.cpp',
    ],
    LIBDEPS=[
        'thread_pool_task_executor',
        'task_executor_test_fixture',
        '$BUILD_DIR/mongo/client/remote_command_runner',
    ]
)