forked from keyianpai/hft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrule.py
executable file
·233 lines (218 loc) · 6.52 KB
/
rule.py
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import sys, os
from copy_header import *
from waflib.Tools.compiler_c import c_compiler
from waflib.Tools.compiler_cxx import cxx_compiler
sys.path += [ 'backend/tools/waf-plugins' ]
def options(opt):
opt.load('defaults')
opt.load('compiler_c')
opt.load('compiler_cxx')
def configure(conf):
Copy()
conf.load('defaults')
conf.load('compiler_c')
conf.load('compiler_cxx')
conf.env.INCLUDES += [ 'backend/src', 'src' ]
conf.env.INCLUDES += [ 'external/common/include', 'include' ]
conf.env.CXXFLAGS += [ '-g', '-ldl', '-std=c++11']
#conf.env.CXXFLAGS += [ '-g', '-lpthread', '-ldl']
conf.check(lib='pthread', uselib_store='pthread')
conf.check(lib='config++', uselib_store='config++')
conf.check(lib='python2.7', uselib_store='python2.7')
conf.check(lib='zmq', uselib_store='zmq')
conf.check(lib='z', uselib_store='z')
from waflib.Build import BuildContext
class all_class(BuildContext):
cmd = "all"
class pricer_class(BuildContext):
cmd = "pricer"
class proxy_class(BuildContext):
cmd = "proxy"
class mid_data_class(BuildContext):
cmd = "mid_data"
class ctpdata_class(BuildContext):
cmd = "ctpdata"
class ctporder_class(BuildContext):
cmd = "ctporder"
class getins_class(BuildContext):
cmd = "get_ins"
class simplemaker_class(BuildContext):
cmd = "simplemaker"
class simplearb_class(BuildContext):
cmd = "simplearb"
class backtest_class(BuildContext):
cmd = "backtest"
class order_matcher_class(BuildContext):
cmd = "order_matcher"
class demostrat_class(BuildContext):
cmd = "demostrat"
from lint import add_lint_ignore
def build(bld):
add_lint_ignore('external')
add_lint_ignore('backend')
if bld.cmd == "all":
run_all(bld)
return
if bld.cmd == "pricer":
run_pricer(bld)
return
if bld.cmd == "mid_data":
run_mid_data(bld)
return
if bld.cmd == "proxy":
run_proxy(bld)
return
if bld.cmd == "ctpdata":
run_ctpdata(bld)
return
if bld.cmd == "ctporder":
run_ctporder(bld)
return
if bld.cmd == "getins":
run_getins(bld)
return
if bld.cmd == "simplemaker":
run_simplemaker(bld)
return
if bld.cmd == "simplearb":
run_simplearb(bld)
return
if bld.cmd == "backtest":
run_backtest(bld)
return
if bld.cmd == "order_matcher":
run_order_matcher(bld)
return
if bld.cmd == "demostrat":
run_demostrat(bld)
return
else:
print "error! " + str(bld.cmd)
return
def run_ctpdata(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.read_shlib('thostmduserapi', paths=['external/ctp/lib'])
bld.program(
target = 'bin/ctpdata',
source = ['src/ctpdata/main.cpp'],
includes = ['external/ctp/include', 'external/zeromq/include'],
use = 'zmq thostmduserapi nick pthread config++'
)
def run_pricer(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.program(
target = 'bin/data_pricer',
source = ['src/pricer/main.cpp'],
includes = ['external/zeromq/include'],
use = 'zmq nick pthread config++'
)
def run_ctporder(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.read_shlib('thosttraderapi', paths=['external/ctp/lib'])
bld.program(
target = 'bin/ctporder',
source = ['src/ctporder/main.cpp',
'src/ctporder/listener.cpp',
'src/ctporder/token_manager.cpp',
'src/ctporder/message_sender.cpp'],
includes = ['external/ctp/include', 'external/zeromq/include'],
use = 'zmq thosttraderapi nick pthread config++'
)
def run_proxy(bld):
bld.program(
target = 'bin/data_proxy',
source = ['src/data_proxy/main.cpp'],
includes = ['external/zeromq/include'],
use = 'zmq pthread config++'
)
bld.program(
target = 'bin/order_proxy',
source = ['src/order_proxy/main.cpp'],
includes = ['external/zeromq/include'],
use = 'zmq pthread config++'
)
def run_mid_data(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.program(
target = 'bin/mid_data',
source = ['src/mid_data/main.cpp'],
includes = ['external/zeromq/include'],
use = 'zmq nick pthread config++'
)
def run_getins(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.read_shlib('thosttraderapi', paths=['external/ctp/lib'])
bld.program(
target = 'bin/getins',
includes = ['external/ctp/include', 'external/zeromq/include'],
source = ['src/GetInstrument/main.cpp'],
use = 'zmq nick thosttraderapi pthread config++'
)
def run_simplemaker(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.program(
target = 'bin/simplemaker',
source = ['src/simplemaker/main.cpp',
'src/simplemaker/strategy.cpp'],
includes = ['external/zeromq/include'],
use = 'zmq nick pthread config++'
)
def run_simplearb(bld):
#bld.read_shlib('nick', paths=['external/common/lib'])
bld.read_shlib('nick', paths=['external/common/lib'])
#bld.read_shlib('simplearb', paths=['external/strategy/simplearb/lib'])
bld.program(
target = 'bin/simplearb',
source = ['src/simplearb/main.cpp',
'src/simplearb/strategy.cpp'
],
includes = [
#'external/strategy/simplearb/include',
'external/zeromq/include'
],
use = 'zmq nick pthread config++ shm' # simplearb'
)
def run_backtest(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
#bld.read_shlib('backtest', paths=['external/strategy/backtest/lib'])
bld.program(
target = 'bin/backtest',
source = ['src/backtest/main.cpp',
'src/backtest/strategy.cpp'
],
includes = [
#'external/strategy/backtest/include',
'external/zeromq/include'
],
use = 'zmq nick pthread config++ python2.7 z'
)
def run_order_matcher(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.program(
target = 'bin/order_matcher',
source = ['src/order_matcher/main.cpp',
'src/order_matcher/order_handler.cpp'],
includes = ['external/zeromq/include'],
use = 'zmq nick pthread config++'
)
def run_demostrat(bld):
bld.read_shlib('nick', paths=['external/common/lib'])
bld.program(
target = 'bin/demostrat',
source = ['src/demostrat/main.cpp',
'src/demostrat/strategy.cpp'],
includes = ['external/zeromq/include'],
use = 'zmq nick pthread config++'
)
def run_all(bld):
#run_pricer(bld)
run_mid_data(bld)
run_proxy(bld)
run_ctpdata(bld)
run_ctporder(bld)
run_getins(bld)
run_simplearb(bld)
run_backtest(bld)
run_order_matcher(bld)
run_demostrat(bld)
run_simplemaker(bld)