-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
615 lines (528 loc) · 18.3 KB
/
setup.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
#!/usr/bin/python
# -*- coding: utf8 -*-
#
# Create on: 2024-01-24
# Author: fasiondog
import os
import sys
import shutil
import subprocess
import datetime
import click
import hikyuu
HIKYUU_DIR = os.path.dirname(os.path.abspath(hikyuu.__file__))
CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))
lib_dir = f"{HIKYUU_DIR}/cpp"
include_dir = f"{HIKYUU_DIR}/include"
if not os.path.lexists(f"{HIKYUU_DIR}/include"):
include_dir = "{}/hikyuu_cpp".format(
os.path.dirname(os.path.abspath(HIKYUU_DIR)))
lib_dir = lib_dir.replace('\\', "\\\\")
include_dir = include_dir.replace('\\', "\\\\")
today = datetime.date.today()
username = os.getlogin()
xmake_template = """
add_rules("mode.debug", "mode.release")
set_languages("cxx17")
if is_plat("windows") then
if is_mode("release") then
set_runtimes("MD")
else
set_runtimes("MDd")
end
end
add_repositories("hikyuu-repo https://github.com/fasiondog/hikyuu_extern_libs.git")
add_requires("pybind11", {{system = false}})
add_requires("boost", {{
system = false,
debug = is_mode("debug"),
configs = {{
shared = is_plat("windows"),
multi = true,
date_time = true,
filesystem = false,
serialization = true,
system = false,
python = false,
cmake = false,
}},
}})
add_requires("spdlog", {{system = false, configs = {{header_only = true, fmt_external = true}}}})
add_requireconfs("spdlog.fmt", {{override = true, version = fmt_version, configs = {{header_only = true}}}})
target("export")
set_kind("shared")
if is_plat("windows") then
set_extension(".pyd")
else
set_filename("export.so")
end
add_packages("pybind11", "boost", "fmt", "spdlog")
add_defines("SPDLOG_ACTIVE_LEVEL=0")
if is_plat("windows") then
add_defines("HKU_API=__declspec(dllimport)")
add_defines("HKU_UTILS_API=__declspec(dllimport)")
end
add_includedirs("{include_dir}")
add_linkdirs("{lib_dir}")
add_links("hikyuu")
add_files("**.cpp")
if is_plat("windows") then
add_cxflags("-EHsc", "/Zc:__cplusplus", "/utf-8")
end
if is_plat("macosx") then
add_links("boost_date_time-mt", "boost_serialization-mt")
if is_plat("macosx") then
add_linkdirs("/usr/lib")
-- macosx 下不能主动链接 python,所以需要使用如下编译选项
add_shflags("-undefined dynamic_lookup")
end
end
on_load("windows", "linux", "macosx", function(target)
import("lib.detect.find_tool")
if is_plat("windows") then
-- detect installed python3
local python = assert(find_tool("python", {{version = true}}), "python not found, please install it first! note: python version must > 3.0")
assert(python.version > "3", python.version .. " python version must > 3.0, please use python3.0 or later!")
-- find python include and libs directory
local pydir = os.iorun("python -c 'import sys; print(sys.executable)'")
pydir = path.directory(pydir)
target:add("includedirs", pydir .. "/include")
target:add("linkdirs", pydir .. "/libs")
return
end
-- get python include directory.
local pydir = nil;
if os.getenv("CONDA_PREFIX") ~= nil then
local py3config = os.getenv("CONDA_PREFIX") .. "/bin/python3-config"
pydir = os.iorun(py3config .. " --includes"):trim()
else
pydir = os.iorun("python3-config --includes"):trim()
end
assert(pydir, "python3-config not found!")
target:add("cxflags", pydir)
end)
after_build(function(target)
local dst_dir = "./"
local dst_obj = dst_dir .. "core.so"
if not is_plat("cross") then
import("lib.detect.find_tool")
local python = assert(find_tool("python", {{version = true}}), "python not found, please install it first! note: python version must > 3.0")
local tmp = string.split(python.version, "%.")
dst_obj = dst_dir .. "export" .. tmp[1] .. tmp[2]
end
if is_plat("windows") then
os.cp(target:targetdir() .. '/export.pyd', dst_obj .. ".pyd")
elseif is_plat("macosx") then
os.cp(target:targetdir() .. '/export.so', dst_obj .. ".so")
else
if not is_plat("cross") then
os.trycp(target:targetdir() .. '/*.so', dst_obj .. ".so")
end
end
end)
"""
cpp_main_template = """
#include <pybind11/pybind11.h>
#include <hikyuu/hikyuu.h>
using namespace hku;
namespace py = pybind11;
void export_part(py::module& m);
#if PY_MINOR_VERSION == 8
PYBIND11_MODULE(export38, m) {
#elif PY_MINOR_VERSION == 9
PYBIND11_MODULE(export39, m) {
#elif PY_MINOR_VERSION == 10
PYBIND11_MODULE(export310, m) {
#elif PY_MINOR_VERSION == 11
PYBIND11_MODULE(export311, m) {
#elif PY_MINOR_VERSION == 12
PYBIND11_MODULE(export312, m) {
#elif PY_MINOR_VERSION == 13
PYBIND11_MODULE(export313, m) {
#else
PYBIND11_MODULE(export, m) {
#endif
export_part(m);
}
"""
cpp_export_template = """
/*
* Created on: {today}
* Author: {user}
*/
#include <pybind11/pybind11.h>
#include <hikyuu/hikyuu.h>
using namespace hku;
namespace py = pybind11;
void export_part(py::module& m) {{
m.def("my_part", []() {{ return RSI(); }});
}}
"""
python_part_template = """
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from hikyuu import *
try:
from .mypart import *
except:
from mypart import *
author = "{user}"
version = "{today}"
def part():
\"\"\"doc\"\"\"
ret = my_part()
ret.name = "{name}"
return ret
if __name__ == \"__main__\":
# 执行 testall 命令时,会多传入一个参数,防止测试时间过长
# 比如如果在测试代码中执行了绘图操作,可以打开下面的注释代码
# 此时执行 testall 命令时,将直接返回
if len(sys.argv) > 1:
ind = part()
print(ind)
exit(0)
import sys
if sys.platform == 'win32':
import os
os.system('chcp 65001')
# 仅加载测试需要的数据,请根据需要修改
options = {{
'stock_list': ['sz000001'],
'ktype_list': ['day'],
'preload_num': {{'day_max': 100000}},
'load_history_finance': False,
'load_weight': False,
'start_spot': False,
'spot_worker_num': 1,
}}
load_hikyuu(**options)
stks = tuple([sm[code] for code in options['stock_list']])
# 请在下方编写测试代码
ind = part()
print(ind)
"""
python_mypart_template = """
#!/usr/bin/python
# -*- coding: utf8 -*-
import sys
try:
if sys.version_info[1] == 8:
try:
from .export38 import *
except:
from export38 import *
elif sys.version_info[1] == 9:
try:
from .export39 import *
except:
from export39 import *
elif sys.version_info[1] == 10:
try:
from .export310 import *
except:
from export310 import *
elif sys.version_info[1] == 11:
try:
from .export311 import *
except:
from export311 import *
elif sys.version_info[1] == 12:
try:
from .export312 import *
except:
from export312 import *
elif sys.version_info[1] == 13:
try:
from .export313 import *
except:
from export313 import *
else:
try:
from .export import *
except:
from export import *
except:
try:
from .export import *
except:
from export import *
"""
only_python_template = """
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from hikyuu import *
author = "{user}"
version = "{today}"
def part():
\"\"\"doc\"\"\"
ret = Indicator()
ret.name = "{name}"
return ret
if __name__ == \"__main__\":
# 执行 testall 命令时,会多传入一个参数,防止测试时间过长
# 比如如果在测试代码中执行了绘图操作,可以打开下面的注释代码
# 此时执行 testall 命令时,将直接返回
if len(sys.argv) > 1:
ind = part()
print(ind)
exit(0)
import sys
if sys.platform == 'win32':
import os
os.system('chcp 65001')
# 仅加载测试需要的数据,请根据需要修改
options = {{
'stock_list': ['sz000001'],
'ktype_list': ['day'],
'preload_num': {{'day_max': 100000}},
'load_history_finance': False,
'load_weight': False,
'start_spot': False,
'spot_worker_num': 1,
}}
load_hikyuu(**options)
stks = tuple([sm[code] for code in options['stock_list']])
# 请在下方编写测试代码
ind = part()
print(ind)
# 显示图形
import matplotlib.pylab as plt
plt.show()
"""
@click.group()
def cli():
pass
@click.command()
@click.option(
'-t',
'--t',
type=click.Choice(
['af', 'cn', 'ev', 'mm', 'pg', 'se', 'sg', 'sp', 'st', 'pf', 'sys', 'ind', 'other']),
help="组件类型"
)
@click.option(
'-n',
'--n',
type=str,
help="名称"
)
@click.option('-cpp', '--cpp', is_flag=True, help='仅创建 python 版本的组件')
def create(t, n, cpp):
part_dir = f"{CURRENT_DIR}/{t}/{n}" if t in ("ind",
"sys", "pf", "other") else f"{CURRENT_DIR}/part/{t}/{n}"
if os.path.lexists(part_dir):
print("*****************************************************************")
print(f'Failed!\n "{part_dir}" is existed!')
print("*****************************************************************")
return
os.makedirs(part_dir)
if not cpp:
# 仅创建 Python 版本
python = only_python_template.format(
today=today.strftime("%Y%m%d"), user=username, name=n)
with open(f"{part_dir}/part.py", 'w', encoding='utf=8') as f:
f.write(python)
return
xmake_lua = xmake_template.format(
include_dir=include_dir, lib_dir=lib_dir)
with open(f"{part_dir}/xmake.lua", 'w', encoding='utf=8') as f:
f.write(xmake_lua)
cpp = cpp_main_template
with open(f"{part_dir}/main.cpp", 'w', encoding='utf=8') as f:
f.write(cpp)
cpp = cpp_export_template.format(
today=today.strftime("%Y%m%d"), user=username)
with open(f"{part_dir}/export.cpp", 'w', encoding='utf=8') as f:
f.write(cpp)
python = python_part_template.format(
today=today.strftime("%Y%m%d"), user=username, name=n)
with open(f"{part_dir}/part.py", 'w', encoding='utf=8') as f:
f.write(python)
python = python_mypart_template
with open(f"{part_dir}/mypart.py", 'w', encoding='utf=8') as f:
f.write(python)
print(f'Success create "{part_dir}!"')
@click.command()
def update():
part_dirs = ['sys', 'pf', 'ind', 'other', 'part/af',
'part/cn', 'part/ev', 'part/mm', 'part/pg', 'part/se', 'part/sg', 'part/sp', 'part/st',]
for item in part_dirs:
part_dir = f"{CURRENT_DIR}/{item}"
if not os.path.lexists(part_dir):
continue
with os.scandir(part_dir) as it:
for entry in it:
if (not entry.name.startswith('.')) and entry.is_dir() and (entry.name != "__pycache__"):
if os.path.exists(f"{part_dir}/{entry.name}/main.cpp"):
xmake_lua = xmake_template.format(
include_dir=include_dir, lib_dir=lib_dir)
with open(f"{part_dir}/{entry.name}/xmake.lua", 'w', encoding='utf=8') as f:
f.write(xmake_lua)
@click.command()
@click.option(
'-t',
'--t',
type=click.Choice(
['af', 'cn', 'ev', 'mm', 'pg', 'se', 'sg', 'sp', 'st', 'pf', 'sys', 'ind', 'other']),
help="组件类型"
)
@click.option(
'-n',
'--n',
type=str,
help="名称"
)
@click.option('-v', '--v', is_flag=True, help='显示详细的编译信息')
def build(t, n, v):
part_dir = f"{CURRENT_DIR}/{t}/{n}" if t in ("ind",
"sys", "pf", "other") else f"{CURRENT_DIR}/part/{t}/{n}"
if not os.path.lexists(part_dir):
print(f'"{part_dir}" is not existed!')
return
part_dir = part_dir.replace('\\', "\\\\")
print(part_dir)
verbose = " -vD" if v else ""
if sys.platform == 'win32':
os.system(
f"cd {part_dir} & xmake f -c -y & xmake{verbose}")
else:
os.system(
f"cd {part_dir} ; xmake f -c -y ; xmake{verbose}")
@click.command()
@click.option('-v', '--v', is_flag=True, help='显示详细的编译信息')
def buildall(v):
part_dirs = ['sys', 'pf', 'ind', 'other', 'part/af',
'part/cn', 'part/ev', 'part/mm', 'part/pg', 'part/se', 'part/sg', 'part/sp', 'part/st',]
for item in part_dirs:
part_dir = f"{CURRENT_DIR}/{item}"
if not os.path.lexists(part_dir):
continue
with os.scandir(part_dir) as it:
for entry in it:
if (not entry.name.startswith('.')) and entry.is_dir() and (entry.name != "__pycache__"):
if os.path.exists(f"{part_dir}/{entry.name}/xmake.lua"):
part_xmake = f"{part_dir}/{entry.name}"
print(
f"========================\nbuilding {part_xmake} ...\n========================")
verbose = " -vD" if v else ""
if sys.platform == 'win32':
os.system(
f"cd {part_xmake} & xmake f -c -y & xmake{verbose} & python part.py")
else:
os.system(
f"cd {part_xmake} ; xmake f -c -y ; xmake{verbose} ; python part.py")
@click.command()
@click.option(
'-t',
'--t',
type=click.Choice(
['af', 'cn', 'ev', 'mm', 'pg', 'se', 'sg', 'sp', 'st', 'pf', 'sys', 'ind', 'other']),
help="组件类型"
)
@click.option(
'-n',
'--n',
type=str,
help="名称"
)
def test(t, n):
part_dir = f"{CURRENT_DIR}/{t}/{n}" if t in ("ind",
"sys", "pf", "other") else f"{CURRENT_DIR}/part/{t}/{n}"
if not os.path.exists(f"{part_dir}/part.py"):
print("*****************************************************************")
print(f'Failed!!!!!\n"{part_dir}/part.py" is not existed!')
print("*****************************************************************")
return
part_dir = part_dir.replace('\\', "\\\\")
print(part_dir)
if sys.platform == 'win32':
os.system(
f"cd {part_dir} & python part.py")
else:
os.system(
f"cd {part_dir} ; python part.py")
@click.command()
def testall():
part_dirs = ['sys', 'pf', 'ind', 'other', 'part/af',
'part/cn', 'part/ev', 'part/mm', 'part/pg', 'part/se', 'part/sg', 'part/sp', 'part/st',]
for item in part_dirs:
part_dir = f"{CURRENT_DIR}/{item}"
if not os.path.lexists(part_dir):
continue
with os.scandir(part_dir) as it:
for entry in it:
if (not entry.name.startswith('.')) and entry.is_dir() and (entry.name != "__pycache__"):
part_name = f"{part_dir}/{entry.name}"
print(
f"========================\ntesting {part_name} ...\n========================")
if not os.path.exists(f"{part_name}/part.py"):
print(
"*****************************************************************")
print(
f'Failed!!!!\n"{part_dir}/part.py" is not existed!')
print(
"*****************************************************************")
if sys.platform == 'win32':
os.system(
f"cd {part_name} & python part.py 1")
else:
os.system(
f"cd {part_name} ; python part.py 1")
@click.command()
@click.option(
'-t',
'--t',
type=click.Choice(
['af', 'cn', 'ev', 'mm', 'pg', 'se', 'sg', 'sp', 'st', 'pf', 'sys', 'ind', 'other']),
help="组件类型"
)
@click.option(
'-n',
'--n',
type=str,
help="名称"
)
def clear(t, n):
part_dir = f"{CURRENT_DIR}/{t}/{n}" if t in ("ind",
"sys", "pf", "other") else f"{CURRENT_DIR}/part/{t}/{n}"
if not os.path.lexists(part_dir):
print(f'"{part_dir}" is not existed!')
return
part_dir = part_dir.replace('\\', "\\\\")
print(part_dir)
shutil.rmtree(f"{part_dir}/build", True)
shutil.rmtree(f"{part_dir}/.xmake", True)
shutil.rmtree(f"{part_dir}/__pycache__", True)
shutil.rmtree(f"{part_dir}/.ipynb_checkpoints", True)
shutil.rmtree(f"{part_dir}/.virtual_documents", True)
@click.command()
def clearall():
part_dirs = ['sys', 'pf', 'ind', 'other', 'part/af',
'part/cn', 'part/ev', 'part/mm', 'part/pg', 'part/se', 'part/sg', 'part/sp', 'part/st',]
for item in part_dirs:
part_dir = f"{CURRENT_DIR}/{item}"
if not os.path.lexists(part_dir):
continue
with os.scandir(part_dir) as it:
for entry in it:
if (not entry.name.startswith('.')) and entry.is_dir() and (entry.name != "__pycache__"):
if os.path.exists(f"{part_dir}/{entry.name}/xmake.lua"):
part_xmake = f"{part_dir}/{entry.name}"
print(part_xmake)
shutil.rmtree(f"{part_xmake}/build", True)
shutil.rmtree(f"{part_xmake}/.xmake", True)
shutil.rmtree(f"{part_dir}/{entry.name}/__pycache__", True)
shutil.rmtree(
f"{part_dir}/{entry.name}/.ipynb_checkpoints", True)
shutil.rmtree(
f"{part_dir}/{entry.name}/.virtual_documents", True)
cli.add_command(create)
cli.add_command(update)
cli.add_command(build)
cli.add_command(buildall)
cli.add_command(test)
cli.add_command(testall)
cli.add_command(clear)
cli.add_command(clearall)
if __name__ == "__main__":
cli()