-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup_utils.py
298 lines (246 loc) · 9.9 KB
/
setup_utils.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
from pkgutil import walk_packages
from setuptools import Extension
import subprocess
import platform
import sys
import os
import numpy
try:
from Cython.Distutils import build_ext # noqa
except ImportError:
sys.stderr.write("""
******************************************************
* Cython must be installed before install fluxclient *
* Use command `pip install cython` to fix it *
******************************************************
""")
raise
from fluxclient import __version__ as _VERSION # noqa
windows_program_files_sources = None
# Base method to find package in system
def has_package(package_name):
return subprocess.call(["pkg-config", "--exists", package_name]) == 0
# Base method to find library include files in system
def locate_includes(package_name):
proc = subprocess.Popen(["pkg-config", "--cflags-only-I", package_name],
stdout=subprocess.PIPE)
if proc.wait() == 0:
buf = proc.stdout.read().decode("utf8")
return buf[2:].rstrip()
else:
raise RuntimeError("Looking for package error: %s" % package_name)
def locate_library(package_name):
proc = subprocess.Popen(["pkg-config", "--libs-only-L", package_name],
stdout=subprocess.PIPE)
if proc.wait() == 0:
buf = proc.stdout.read().decode("utf8")
return buf[2:].rstrip()
else:
raise RuntimeError("Looking for package error: %s" % package_name)
def is_windows():
return platform.platform().startswith("Windows")
def is_posix():
return os.name == 'posix'
def is_linux():
return platform.platform().startswith("Linux")
def is_darwin():
return platform.platform().startswith("Darwin")
def prepare_setup():
if not sys.version_info >= (3, 3):
sys.stderr.write(
"ERROR: fluxclient require Python version grather then 3.3\n")
sys.exit(1)
# Ensure at correct working directory
os.chdir(os.path.abspath(os.path.dirname(__file__)))
options = {}
return options
def get_version():
return _VERSION
def get_install_requires():
return ['setuptools', 'pycrypto', 'pyserial', 'pillow', 'numpy', 'scipy',
'ecdsa', 'lxml', 'pyasn1==0.1.9']
def get_packages():
return [name
for _, name, ispkg in walk_packages(".")
if name.startswith("fluxclient") and ispkg]
def get_entry_points():
return {
"console_scripts": [
"flux_discover=fluxclient.commands.discover:main",
"flux_robot=fluxclient.commands.robot:main",
"flux_manager=fluxclient.commands.manager:main",
"flux_camera=fluxclient.commands.camera:main",
"flux_scan=fluxclient.commands.scan:main",
"flux_toolpath=fluxclient.commands.toolpath:main",
"flux_g2f=fluxclient.commands.fcode:gcode_2_fcode",
"flux_f2g=fluxclient.commands.fcode:fcode_2_gcode",
"flux_exp=fluxclient.commands.experiment_tool:main",
]
}
def get_default_extra_compile_args():
if is_darwin():
return ["--stdlib=libc++", "-std=c++11", "-mmacosx-version-min=10.9"]
elif is_linux():
return ["-lstdc++", "-std=c++11"]
elif is_windows():
return []
def create_utils_extentions():
return [
Extension(
'fluxclient.toolpath._toolpath',
sources=[
"src/toolpath/gcode_parser.cpp",
"src/toolpath/gcode_writer.cpp",
"src/toolpath/fcode_v1_writer.cpp",
"src/toolpath/py_processor.cpp",
"src/toolpath/_toolpath.pyx"
],
language="c++",
extra_compile_args=get_default_extra_compile_args(),
include_dirs=[numpy.get_include()]),
Extension(
'fluxclient.utils._utils',
sources=[
"src/utils/utils_module.cpp",
"src/utils/utils.pyx"],
language="c++",
extra_compile_args=get_default_extra_compile_args())
]
def create_pcl_extentions():
# Process include_dirs
include_dirs = []
# Process libraries
libraries = []
# Process extra_compile_args
extra_compile_args = get_default_extra_compile_args()
library_dirs = []
try:
if is_darwin():
try:
include_dirs += [locate_includes("flann")]
except RuntimeError:
sys.stderr.write("library flann not found, its may cause "
"compile issue in some environ.")
if not os.path.exists("/usr/local/include/boost"):
raise RuntimeError("boost lib include not found at "
"/usr/local/include/boost/")
if is_posix():
include_dirs += [locate_includes("eigen3")]
libraries += ["pcl_common", "pcl_octree", "pcl_io", "pcl_kdtree",
"pcl_search", "pcl_sample_consensus", "pcl_filters",
"pcl_features", "pcl_segmentation", "pcl_surface",
"pcl_registration", "pcl_keypoints"]
if has_package("pcl_common-1.8"):
include_dirs += [locate_includes("pcl_common-1.8")]
library_dirs += [locate_library("pcl_common-1.8")]
elif has_package("pcl_common-1.7"):
include_dirs += [locate_includes("pcl_common-1.7")]
library_dirs += [locate_library("pcl_common-1.7")]
else:
raise RuntimeError("Can not locate pcl includes.")
elif is_windows():
libraries += ["pcl_common_release", "pcl_octree_release",
"pcl_io_release", "pcl_kdtree_release",
"pcl_search_release", "pcl_sample_consensus_release",
"pcl_filters_release", "pcl_features_release",
"pcl_segmentation_release", "pcl_surface_release",
"pcl_registration_release", "pcl_keypoints_release"]
def find_in_program_files(label, names):
global windows_program_files_sources
if not windows_program_files_sources:
s = []
s.append(os.environ["ProgramFiles"])
if "ProgramFiles(x86)" in os.environ:
s.append(os.environ["ProgramFiles(x86)"])
windows_program_files_sources = s
dirs = []
for sources in windows_program_files_sources:
for name in names:
path = os.path.join(sources, name)
if os.path.isdir(path):
return path
else:
dirs.append(path)
raise RuntimeError("Can not find `%s` in any of follow "
"directorys: %s" % (label, dirs))
try:
eigen3_dir = os.path.join(
find_in_program_files("eigin3", ["Eigen"]), "include")
flann_dir = os.path.join(
find_in_program_files("flann", ["flann"]), "include")
include_dirs += [
os.path.join(eigen3_dir, "include"),
os.path.join(flann_dir, "include")]
except:
pass
pcl_dir = find_in_program_files("pcl", ["PCL 1.7.2",
"PCL 1.7.1"])
include_dirs += [
os.path.join(pcl_dir, "lib"),
os.path.join(pcl_dir, "include", "pcl-1.7"),
os.path.join(pcl_dir, "3rdParty", "flann", "include"),
os.path.join(pcl_dir, "3rdParty", "Eigen", "eigen3"),
os.path.join(pcl_dir, "3rdParty", "Boost", "include",
"boost-1_57")]
library_dirs += [
os.path.join(pcl_dir, "lib"),
os.path.join(pcl_dir, "3rdParty", "Boost", "lib")]
else:
raise RuntimeError("Unknow platform!!")
except (RuntimeError, FileNotFoundError):
import traceback
sys.stderr.write("\033[93m")
traceback.print_exc(file=sys.stderr)
sys.stderr("""\033[93m
*****************************************************************************
* Can not find pcl libraries, `fluxclient.scanner` and `fluxclient.printer` *
* will not work properly. *
*****************************************************************************
\033[0m""", file=sys.stderr)
return []
extensions = []
extensions.append(Extension(
'fluxclient.scanner._scanner',
sources=[
"src/scanner/scan_module.cpp",
"src/scanner/scanner.pyx"],
language="c++",
extra_compile_args=extra_compile_args,
libraries=libraries,
library_dirs=library_dirs,
extra_objects=[],
include_dirs=include_dirs
))
extensions.append(Extension(
'fluxclient.printer._printer',
sources=[
"src/printer/printer_module.cpp",
"src/printer/printer.pyx"],
language="c++",
extra_compile_args=extra_compile_args,
libraries=libraries,
library_dirs=library_dirs,
extra_objects=[],
include_dirs=include_dirs
))
extensions.append(Extension(
'fluxclient.utils._utils',
sources=[
"src/utils/g2f_module.cpp",
"src/utils/utils_module.cpp",
"src/utils/utils.pyx"],
language="c++",
extra_compile_args=extra_compile_args,
libraries=libraries,
library_dirs=library_dirs,
extra_objects=[],
include_dirs=["src/printer/"]
))
extensions.append(Extension(
'fluxclient.parser._parser',
sources = [
"src/svg_parser/nanosvg.c",
"src/svg_parser/svg_parser.pyx"
]
))
return extensions