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
|
# -*- mode: python -*-
Import("env")
env.InjectThirdPartyIncludePaths('asio')
env.Library(target='task_executor_interface',
source=[
'remote_command_request.cpp',
'remote_command_response.cpp',
'task_executor.cpp',
],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/rpc/metadata',
'$BUILD_DIR/mongo/util/net/hostandport',
])
env.Library(target='network_interface',
source=['network_interface.cpp',],
LIBDEPS=[
'task_executor_interface',
])
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',
'task_executor_interface',
])
env.Library('network_interface_mock',
[
'network_interface_mock.cpp',
'thread_pool_mock.cpp',
],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/rpc/metadata',
'$BUILD_DIR/mongo/util/net/network',
'network_interface',
'task_executor_interface',
])
env.Library(target='network_test_env',
source=['network_test_env.cpp',],
LIBDEPS=[
'network_interface_mock',
'task_executor_interface',
'$BUILD_DIR/mongo/db/coredb',
])
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/third_party/shim_asio',
'task_executor_interface',
])
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=[
'$BUILD_DIR/mongo/unittest/unittest',
'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',
'task_executor_interface',
]
)
env.Library(
target='thread_pool_task_executor_test_fixture',
source=[
'thread_pool_task_executor_test_fixture.cpp',
],
LIBDEPS=[
'thread_pool_task_executor',
'task_executor_test_fixture',
]
)
env.CppUnitTest(
target='thread_pool_task_executor_test',
source=[
'thread_pool_task_executor_test.cpp',
],
LIBDEPS=[
'thread_pool_task_executor_test_fixture',
]
)
|