protobuf_utils.cmake 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. cmake_minimum_required(VERSION 3.16)
  2. # Set a variable to the project root directory
  3. # Function to find the project root directory by looking for the "tools" directory
  4. function(find_project_root_dir start_dir project_root)
  5. set(next_dir ${start_dir})
  6. set(found FALSE)
  7. while(NOT found AND NOT "${next_dir}" STREQUAL "")
  8. message(STATUS "Checking ${next_dir} for sdkconfig")
  9. if(EXISTS "${next_dir}/sdkconfig")
  10. set(found TRUE)
  11. set(${project_root} ${next_dir} PARENT_SCOPE)
  12. else()
  13. get_filename_component(next_dir ${next_dir} DIRECTORY)
  14. endif()
  15. endwhile()
  16. if(NOT found)
  17. message(FATAL_ERROR "Unable to find the project root directory containing 'sdkconfig'.")
  18. endif()
  19. endfunction()
  20. # Call the function to find the project root directory
  21. find_project_root_dir(${CMAKE_CURRENT_SOURCE_DIR} PROJECT_ROOT_DIR)
  22. list(APPEND CMAKE_MODULE_PATH "${PROJECT_ROOT_DIR}/components/spotify/cspot/bell/external/nanopb/extra")
  23. set(TOOLS_DIR "${PROJECT_ROOT_DIR}/tools" )
  24. set(GENERATED_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/generated")
  25. set(GENERATED_PROTOBUF_ROOT "${CMAKE_BINARY_DIR}/protobuf")
  26. set(GENERATED_PY_DIRECTORY "${GENERATED_PROTOBUF_ROOT}/py")
  27. set(GENERATED_JS_DIRECTORY "${GENERATED_PROTOBUF_ROOT}/js")
  28. set(GENERATED_SPIFFS_DIRECTORY "${CMAKE_BINARY_DIR}/spiffs")
  29. find_package(PythonInterp REQUIRED)
  30. # Function to replace a placeholder in a list
  31. function(replace_in_list INPUT_LIST PLACEHOLDER REPLACEMENT OUTPUT_LIST)
  32. set(TEMP_LIST "")
  33. foreach(ITEM ${${INPUT_LIST}})
  34. string(REPLACE ${PLACEHOLDER} ${REPLACEMENT} ITEM ${ITEM})
  35. list(APPEND TEMP_LIST "${ITEM}")
  36. endforeach()
  37. set(${OUTPUT_LIST} ${TEMP_LIST} PARENT_SCOPE)
  38. endfunction()
  39. function(encode_special_chars INPUT_VAR)
  40. set(ENCODED_STRING "${${INPUT_VAR}}")
  41. # Encoding common special characters. Start with % so that
  42. # we don't collide with encodings if we process that char
  43. # later.
  44. string(REPLACE "%" "%25" ENCODED_STRING "${ENCODED_STRING}")
  45. string(REPLACE ":" "%3A" ENCODED_STRING "${ENCODED_STRING}")
  46. string(REPLACE "-" "%2D" ENCODED_STRING "${ENCODED_STRING}")
  47. string(REPLACE "=" "%3D" ENCODED_STRING "${ENCODED_STRING}")
  48. string(REPLACE "&" "%26" ENCODED_STRING "${ENCODED_STRING}")
  49. string(REPLACE "?" "%3F" ENCODED_STRING "${ENCODED_STRING}")
  50. string(REPLACE "/" "%2F" ENCODED_STRING "${ENCODED_STRING}")
  51. string(REPLACE " " "%20" ENCODED_STRING "${ENCODED_STRING}")
  52. string(REPLACE "!" "%21" ENCODED_STRING "${ENCODED_STRING}")
  53. string(REPLACE "@" "%40" ENCODED_STRING "${ENCODED_STRING}")
  54. string(REPLACE "#" "%23" ENCODED_STRING "${ENCODED_STRING}")
  55. string(REPLACE "$" "%24" ENCODED_STRING "${ENCODED_STRING}")
  56. string(REPLACE "^" "%5E" ENCODED_STRING "${ENCODED_STRING}")
  57. string(REPLACE "*" "%2A" ENCODED_STRING "${ENCODED_STRING}")
  58. string(REPLACE "(" "%28" ENCODED_STRING "${ENCODED_STRING}")
  59. string(REPLACE ")" "%29" ENCODED_STRING "${ENCODED_STRING}")
  60. string(REPLACE "+" "%2B" ENCODED_STRING "${ENCODED_STRING}")
  61. string(REPLACE "{" "%7B" ENCODED_STRING "${ENCODED_STRING}")
  62. string(REPLACE "}" "%7D" ENCODED_STRING "${ENCODED_STRING}")
  63. string(REPLACE "[" "%5B" ENCODED_STRING "${ENCODED_STRING}")
  64. string(REPLACE "]" "%5D" ENCODED_STRING "${ENCODED_STRING}")
  65. string(REPLACE "|" "%7C" ENCODED_STRING "${ENCODED_STRING}")
  66. string(REPLACE "\\" "%5C" ENCODED_STRING "${ENCODED_STRING}")
  67. string(REPLACE ";" "%3B" ENCODED_STRING "${ENCODED_STRING}")
  68. string(REPLACE "'" "%27" ENCODED_STRING "${ENCODED_STRING}")
  69. string(REPLACE "\"" "%22" ENCODED_STRING "${ENCODED_STRING}")
  70. string(REPLACE "<" "%3C" ENCODED_STRING "${ENCODED_STRING}")
  71. string(REPLACE ">" "%3E" ENCODED_STRING "${ENCODED_STRING}")
  72. string(REPLACE "," "%2C" ENCODED_STRING "${ENCODED_STRING}")
  73. string(REPLACE "`" "%60" ENCODED_STRING "${ENCODED_STRING}")
  74. # Add more replacements as needed
  75. # Set the result in the parent scope
  76. set(${INPUT_VAR} "${ENCODED_STRING}" PARENT_SCOPE)
  77. endfunction()
  78. function(array_to_delimited DELIMITER VAR_NAME)
  79. # Initialize the result variable
  80. set(RESULT "")
  81. set(ARR "${${VAR_NAME}}")
  82. # Determine if ARR is a list
  83. list(LENGTH ARR ARR_LENGTH)
  84. if(${ARR_LENGTH} GREATER 0)
  85. # Handle ARR as ITEMS
  86. foreach(ARRAY_ENTRY IN ITEMS ${ARR})
  87. set(RESULT "${RESULT}${ARRAY_ENTRY}${DELIMITER}")
  88. endforeach()
  89. else()
  90. # Handle ARR as a LIST
  91. foreach(ARRAY_ENTRY IN LISTS ${ARR})
  92. set(RESULT "${RESULT}${ARRAY_ENTRY}${DELIMITER}")
  93. endforeach()
  94. endif()
  95. # Remove the trailing delimiter
  96. # string(REGEX REPLACE "${DELIMITER}$" "" RESULT "${RESULT}")
  97. # encode_special_chars(RESULT)
  98. set(${VAR_NAME}_DELIMITED "${RESULT}" PARENT_SCOPE)
  99. endfunction()
  100. function(print_array MSG ARR)
  101. # Determine if ARR is a list
  102. list(LENGTH ARR ARR_LENGTH)
  103. # Check for the optional parameter to print each item on a new line
  104. list(LENGTH ARGN ARG_COUNT)
  105. if(ARG_COUNT EQUAL 1)
  106. # Get the first (and only) item in ARGN
  107. list(GET ARGN 0 ARGN_FIRST_ITEM)
  108. endif()
  109. if(ARG_COUNT EQUAL 1 AND ARGN_FIRST_ITEM STREQUAL "NEWLINE")
  110. if(${ARR_LENGTH} GREATER 0)
  111. message(STATUS "${MSG} [ITEMS]")
  112. foreach(ARRAY_ENTRY IN ITEMS ${ARR})
  113. message(STATUS " - ${ARRAY_ENTRY}")
  114. endforeach()
  115. else()
  116. message(STATUS "${MSG} [LISTS]")
  117. foreach(ARRAY_ENTRY IN LISTS ${ARR})
  118. message(STATUS " - ${ARRAY_ENTRY}")
  119. endforeach()
  120. endif()
  121. else()
  122. # Default behavior: concatenate the message and array entries
  123. set(OUTSTRING "")
  124. if(${ARR_LENGTH} GREATER 0)
  125. foreach(ARRAY_ENTRY IN ITEMS ${ARR})
  126. set(OUTSTRING "${OUTSTRING} ${ARRAY_ENTRY}")
  127. endforeach()
  128. else()
  129. foreach(ARRAY_ENTRY IN LISTS ${ARR})
  130. set(OUTSTRING "${OUTSTRING} ${ARRAY_ENTRY}")
  131. endforeach()
  132. endif()
  133. message(STATUS "${MSG}${OUTSTRING}")
  134. endif()
  135. endfunction()
  136. function(configure_env)
  137. if(CMAKE_HOST_WIN32)
  138. set(PROTODOT_BINARY "${TOOLS_DIR}/protodot/binaries/protodot-windows-amd64.exe" PARENT_SCOPE)
  139. set(CONFIG_FILE "${TOOLS_DIR}/protodot/config-win.json" PARENT_SCOPE)
  140. set(PROTOC_BINARY "${TOOLS_DIR}/protobuf/win64/bin/protoc.exe" PARENT_SCOPE)
  141. set(PROTOBUF_JS_BINARY "${TOOLS_DIR}/protobuf-javascript/win64/bin/protoc-gen-js.exe" PARENT_SCOPE)
  142. set(PROTOBUF_INCLUDE_DIR "${TOOLS_DIR}/protobuf/win64/include/google/protobuf" PARENT_SCOPE)
  143. set(PROTOC_PLUGIN_SUFFIX ".bat" PARENT_SCOPE)
  144. else()
  145. set(PROTODOT_BINARY "${TOOLS_DIR}/protodot/binaries/protodot-linux-amd64" PARENT_SCOPE)
  146. set(CONFIG_FILE "${TOOLS_DIR}/protodot/config.json" PARENT_SCOPE)
  147. set(PROTOC_BINARY "${TOOLS_DIR}/protobuf/linux-x86_64/bin/protoc" PARENT_SCOPE)
  148. set(PROTOBUF_JS_BINARY "${TOOLS_DIR}/protobuf-javascript/linux-x86_64/bin/protoc-gen-js" PARENT_SCOPE)
  149. set(PROTOBUF_INCLUDE_DIR "${TOOLS_DIR}/protobuf/linux-x86_64/include/google/protobuf" PARENT_SCOPE)
  150. set(PROTOC_PLUGIN_SUFFIX ".py" PARENT_SCOPE)
  151. # else()
  152. # message(FATAL_ERROR "Unsupported operating system")
  153. endif()
  154. endfunction()
  155. set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
  156. APPEND PROPERTY
  157. ADDITIONAL_MAKE_CLEAN_FILES "${CMAKE_BINARY_DIR}/protobuf"
  158. )
  159. set(PROTO_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}/proto;${NANOPB_GENERATOR_SOURCE_DIR}/proto" )
  160. # Path to the marker file
  161. set(MARKER_FILE "${CMAKE_BINARY_DIR}/python_requirements_met.txt")
  162. # Check if the marker file exists
  163. if(NOT EXISTS ${MARKER_FILE})
  164. # Marker file doesn't exist, run the Python script
  165. execute_process(
  166. COMMAND ${PYTHON_EXECUTABLE} ${TOOLS_DIR}/protoc_utils/check_python_packages.py ${MARKER_FILE}
  167. RESULT_VARIABLE PYTHON_PACKAGES_CHECK_RESULT
  168. )
  169. # Check the result of the Python script
  170. if(NOT PYTHON_PACKAGES_CHECK_RESULT EQUAL 0)
  171. message(FATAL_ERROR "Python package requirements not satisfied.")
  172. endif()
  173. else()
  174. message(STATUS "Python package requirements already satisfied.")
  175. endif()
  176. function(copy_files SRC_FILES SRC_BASE_DIR DEST_BASE_DIR)
  177. foreach(SRC_FILE ${SRC_FILES})
  178. # Get the relative path of the source file
  179. file(RELATIVE_PATH RELATIVE_SRC_FILE "${SRC_BASE_DIR}" ${SRC_FILE})
  180. string(REPLACE "${CMAKE_BINARY_DIR}" "" TARGET_NAME ${DEST_BASE_DIR})
  181. string(REPLACE "/" "_" TARGET_NAME ${TARGET_NAME})
  182. string(REPLACE "\\" "_" TARGET_NAME ${TARGET_NAME})
  183. # Compute the destination file path
  184. set(DEST_FILE "${DEST_BASE_DIR}/${RELATIVE_SRC_FILE}")
  185. # Create the directory structure in the destination
  186. get_filename_component(DEST_DIR ${DEST_FILE} DIRECTORY)
  187. file(MAKE_DIRECTORY ${DEST_DIR})
  188. # Copy the file if different
  189. add_custom_command(
  190. OUTPUT ${DEST_FILE}
  191. COMMAND ${CMAKE_COMMAND} -E copy_if_different ${SRC_FILE} ${DEST_FILE}
  192. DEPENDS ${SRC_FILE}
  193. COMMENT "Copying ${RELATIVE_SRC_FILE} to ${DEST_BASE_DIR}"
  194. )
  195. list(APPEND COPIED_FILES ${DEST_FILE})
  196. endforeach()
  197. # Add a custom target to trigger the copy
  198. add_custom_target(copy_${TARGET_NAME} DEPENDS ${COPIED_FILES})
  199. set(CUSTOM_COPY_TARGET copy_${TARGET_NAME} PARENT_SCOPE)
  200. set_property(GLOBAL APPEND PROPERTY CUSTOM_COPY_TARGETS copy_${TARGET_NAME})
  201. endfunction()