blob: fd5c9a25119d08a2d380f95636f642cf997aa213 (
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
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
|
include(GrPython)
macro(GR_PYBIND_MAKE name updir filter files)
configure_file(${CMAKE_SOURCE_DIR}/docs/doxygen/pydoc_macros.h ${CMAKE_CURRENT_BINARY_DIR} COPYONLY)
pybind11_add_module(${name}_python ${files})
SET(MODULE_NAME ${name})
if (${name} STREQUAL gr)
SET(MODULE_NAME "runtime")
endif()
if(ENABLE_DOXYGEN)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/docstring_status
COMMAND python3 ${CMAKE_SOURCE_DIR}/docs/doxygen/update_pydoc.py "sub"
"--json_path" ${CMAKE_BINARY_DIR}/docs/doxygen/gnuradio_docstrings.json
"--bindings_dir" ${CMAKE_CURRENT_SOURCE_DIR}/docstrings
"--output_dir" ${CMAKE_CURRENT_BINARY_DIR}
"--filter" ${filter}
COMMENT "Adding docstrings into ${name} pybind headers ..."
DEPENDS gnuradio_docstrings)
add_custom_target(${name}_docstrings ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/docstring_status)
else(ENABLE_DOXYGEN)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/docstring_status
COMMAND python3 ${CMAKE_SOURCE_DIR}/docs/doxygen/update_pydoc.py "copy"
"--bindings_dir" ${CMAKE_CURRENT_SOURCE_DIR}/docstrings
"--output_dir" ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Copying ${name} docstring templates as pybind headers ...")
add_custom_target(${name}_docstrings ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/docstring_status)
endif(ENABLE_DOXYGEN)
target_include_directories(${name}_python PUBLIC
${CMAKE_CURRENT_BINARY_DIR}
${PYTHON_NUMPY_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/lib
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include
${PYBIND11_INCLUDE_DIR}
)
target_link_libraries(${name}_python PUBLIC ${Boost_LIBRARIES} ${PYTHON_LIBRARIES} gnuradio-${MODULE_NAME})
target_compile_options(${name}_python PRIVATE -Wno-unused-variable) # disable warnings for docstring templates
add_dependencies(${name}_python ${name}_docstrings)
endmacro(GR_PYBIND_MAKE)
macro(GR_PYBIND_MAKE_CHECK_HASH name updir filter files)
configure_file(${CMAKE_SOURCE_DIR}/docs/doxygen/pydoc_macros.h ${CMAKE_CURRENT_BINARY_DIR} COPYONLY)
list(APPEND regen_targets "")
foreach(file ${files})
execute_process(COMMAND "python3"
${CMAKE_SOURCE_DIR}/gr-utils/bindtool/scripts/header_utils.py
"all"
${CMAKE_CURRENT_SOURCE_DIR}/${file}
OUTPUT_VARIABLE flags_all
)
list(GET flags_all 0 flag_auto)
list(GET flags_all 1 flag_pygccxml)
list(GET flags_all 2 header_filename)
list(GET flags_all 3 header_file_hash
)
# message(STATUS ${file} ":" ${flag_auto} ":" ${flag_pygccxml} ":" ${header_filename} ":" ${header_file_hash})
if (NOT ${header_filename} STREQUAL "None") # If no header filename is specified, don't bother checking for a rebuild
if (${name} STREQUAL gr)
set(header_full_path ${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include/gnuradio/${header_filename})
else()
set(header_full_path ${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include/gnuradio/${name}/${header_filename})
endif()
file(MD5 ${header_full_path} calc_hash)
# message(STATUS ${ii} " " ${calc_hash} " " ${saved_hash})
if (NOT ${calc_hash} STREQUAL ${header_file_hash})
# check the file and see if bindings should be automatically regenerated
if (flag_auto STREQUAL "False") # the regex match was not found, manual bindings
# if (NOT bindtool_use_pygccxml STREQUAL )
message(FATAL_ERROR "Python bindings for " ${header_filename} " are out of sync" )
else()
if (flag_pygccxml STREQUAL "True")
if(NOT PYGCCXML_FOUND)
message(FATAL_ERROR "Python bindings for " ${header_filename} " require pygccxml for automatic regeneration" )
endif()
endif()
message(STATUS "Regenerating Bindings in-place for " ${header_filename})
file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${file}.regen_status)
# Automatically regenerate the bindings
add_custom_command(
OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}}/${file}
COMMAND "python3"
${CMAKE_SOURCE_DIR}/gr-utils/bindtool/scripts/bind_intree_file.py
"--output_dir" ${CMAKE_CURRENT_SOURCE_DIR}/..
"--prefix" ${CMAKE_INSTALL_PREFIX}
"--src" ${CMAKE_SOURCE_DIR}
"--module" ${name}
"--filename" ${header_full_path}
"--status" ${CMAKE_CURRENT_BINARY_DIR}/${file}.regen_status
"--flag_automatic" ${flag_auto}
"--flag_pygccxml" ${flag_pygccxml}
# "--include" "$<INSTALL_INTERFACE:include>" #FIXME: Make the pygccxml generation use the source tree headers
COMMENT "Automatic generation of pybind11 bindings for " ${header_full_path})
add_custom_target(${file}_regen_bindings ALL DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}}/${file})
list(APPEND regen_targets ${file}_regen_bindings)
endif()
endif()
endif()
endforeach()
pybind11_add_module(${name}_python ${files})
SET(MODULE_NAME ${name})
if (${name} STREQUAL gr)
SET(MODULE_NAME "runtime")
endif()
if (${name} STREQUAL video_sdl)
SET(MODULE_NAME "video-sdl")
endif()
if(ENABLE_DOXYGEN)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/docstring_status
COMMAND python3 ${CMAKE_SOURCE_DIR}/docs/doxygen/update_pydoc.py "sub"
"--json_path" ${CMAKE_BINARY_DIR}/docs/doxygen/gnuradio_docstrings.json
"--bindings_dir" ${CMAKE_CURRENT_SOURCE_DIR}/docstrings
"--output_dir" ${CMAKE_CURRENT_BINARY_DIR}
"--filter" ${filter}
COMMENT "Adding docstrings into ${name} pybind headers ..."
DEPENDS gnuradio_docstrings)
add_custom_target(${name}_docstrings ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/docstring_status)
else(ENABLE_DOXYGEN)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/docstring_status
COMMAND python3 ${CMAKE_SOURCE_DIR}/docs/doxygen/update_pydoc.py "copy"
"--bindings_dir" ${CMAKE_CURRENT_SOURCE_DIR}/docstrings
"--output_dir" ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Copying ${name} docstring templates as pybind headers ...")
add_custom_target(${name}_docstrings ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/docstring_status)
endif(ENABLE_DOXYGEN)
target_include_directories(${name}_python PUBLIC
${CMAKE_CURRENT_BINARY_DIR}
${PYTHON_NUMPY_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/lib
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include
${PYBIND11_INCLUDE_DIR}
)
target_link_libraries(${name}_python PUBLIC ${Boost_LIBRARIES} ${PYTHON_LIBRARIES} gnuradio-${MODULE_NAME})
target_compile_options(${name}_python PRIVATE -Wno-unused-variable) # disable warnings for docstring templates
add_dependencies(${name}_python ${name}_docstrings ${regen_targets})
endmacro(GR_PYBIND_MAKE_CHECK_HASH)
macro(GR_PYBIND_MAKE_OOT name updir filter files)
list(APPEND regen_targets "")
foreach(file ${files})
execute_process(COMMAND "python3"
${CMAKE_CURRENT_SOURCE_DIR}/header_utils.py
"all"
${CMAKE_CURRENT_SOURCE_DIR}/${file}
OUTPUT_VARIABLE flags_all
)
list(GET flags_all 0 flag_auto)
list(GET flags_all 1 flag_pygccxml)
list(GET flags_all 2 header_filename)
list(GET flags_all 3 header_file_hash
)
# message(STATUS ${file} ":" ${flag_auto} ":" ${flag_pygccxml} ":" ${header_filename} ":" ${header_file_hash})
if (NOT ${header_filename} STREQUAL "None") # If no header filename is specified, don't bother checking for a rebuild
set(header_full_path ${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include/${name}/${header_filename}) # NOTE OOT version does not have gnuradio/ here
file(MD5 ${header_full_path} calc_hash)
# message(STATUS ${ii} " " ${calc_hash} " " ${saved_hash})
if (NOT ${calc_hash} STREQUAL ${header_file_hash})
# check the file and see if bindings should be automatically regenerated
if (flag_auto STREQUAL "False") # the regex match was not found, manual bindings
# if (NOT bindtool_use_pygccxml STREQUAL )
message(FATAL_ERROR "Python bindings for " ${header_filename} " are out of sync" )
else()
if (flag_pygccxml STREQUAL "True")
if(NOT PYGCCXML_FOUND)
message(FATAL_ERROR "Python bindings for " ${header_filename} " require pygccxml for automatic regeneration" )
endif()
endif()
message(STATUS "Regenerating Bindings in-place for " ${header_filename})
file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${file}.regen_status)
# Automatically regenerate the bindings
add_custom_command(
OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}}/${file}
COMMAND "python3"
${CMAKE_CURRENT_SOURCE_DIR}/bind_oot_file.py
"--output_dir" ${CMAKE_CURRENT_SOURCE_DIR}/..
"--prefix" ${CMAKE_INSTALL_PREFIX}
"--src" ${CMAKE_SOURCE_DIR}
"--module" ${name}
"--filename" ${header_full_path}
"--status" ${CMAKE_CURRENT_BINARY_DIR}/${file}.regen_status
"--flag_automatic" ${flag_auto}
"--flag_pygccxml" ${flag_pygccxml}
# "--include" "$<INSTALL_INTERFACE:include>" #FIXME: Make the pygccxml generation use the source tree headers
COMMENT "Automatic generation of pybind11 bindings for " ${header_full_path})
add_custom_target(${file}_regen_bindings ALL DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}}/${file})
list(APPEND regen_targets ${file}_regen_bindings)
endif()
endif()
endif()
endforeach()
configure_file(${CMAKE_SOURCE_DIR}/docs/doxygen/pydoc_macros.h ${CMAKE_CURRENT_BINARY_DIR} COPYONLY)
pybind11_add_module(${name}_python ${files})
SET(MODULE_NAME ${name})
if (${name} STREQUAL gr)
SET(MODULE_NAME "runtime")
endif()
if(ENABLE_DOXYGEN)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/extracted_docstrings.json
COMMAND python3 ${CMAKE_SOURCE_DIR}/docs/doxygen/update_pydoc.py "scrape"
"--xml_path" ${CMAKE_BINARY_DIR}/docs/doxygen/xml
"--json_path" ${CMAKE_CURRENT_BINARY_DIR}/extracted_docstrings.json
COMMENT "Scraping generated documentation for docstrings ..."
DEPENDS gnuradio-${MODULE_NAME} doxygen_target)
add_custom_target(
extracted_docstrings ALL
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/extracted_docstrings.json
)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/docstring_status
COMMAND python3 ${CMAKE_SOURCE_DIR}/docs/doxygen/update_pydoc.py "sub"
"--json_path" ${CMAKE_CURRENT_BINARY_DIR}/extracted_docstrings.json
"--bindings_dir" ${CMAKE_CURRENT_SOURCE_DIR}/docstrings
"--output_dir" ${CMAKE_CURRENT_BINARY_DIR}
"--filter" ${filter}
COMMENT "Adding docstrings into ${name} pybind headers ..."
DEPENDS extracted_docstrings)
add_custom_target(${name}_docstrings ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/docstring_status)
else(ENABLE_DOXYGEN)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/docstring_status
COMMAND python3 ${CMAKE_SOURCE_DIR}/docs/doxygen/update_pydoc.py "copy"
"--bindings_dir" ${CMAKE_CURRENT_SOURCE_DIR}/docstrings
"--output_dir" ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Copying ${name} docstring templates as pybind headers ...")
add_custom_target(${name}_docstrings ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/docstring_status)
endif(ENABLE_DOXYGEN)
target_include_directories(${name}_python PUBLIC
${CMAKE_CURRENT_BINARY_DIR}
${PYTHON_NUMPY_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/lib
${CMAKE_CURRENT_SOURCE_DIR}/${updir}/include
${PYBIND11_INCLUDE_DIR}
)
target_link_libraries(${name}_python PUBLIC ${Boost_LIBRARIES} ${PYTHON_LIBRARIES} gnuradio-${MODULE_NAME})
target_compile_options(${name}_python PRIVATE -Wno-unused-variable) # disable warnings for docstring templates
add_dependencies(${name}_python ${name}_docstrings ${regen_targets})
endmacro(GR_PYBIND_MAKE_OOT)
|