1project( 2 'entity-manager', 3 'cpp', 4 default_options: [ 5 'warning_level=3', 6 'werror=true', 7 'cpp_std=c++20' 8 ], 9 license: 'Apache-2.0', 10 version: '0.1', 11 meson_version: '>=0.57.0', 12) 13add_project_arguments('-Wno-psabi', language: 'cpp') 14 15boost_args = [ 16 '-DBOOST_SYSTEM_NO_DEPRECATED', 17 '-DBOOST_ERROR_CODE_HEADER_ONLY', 18 '-DBOOST_NO_RTTI', 19 '-DBOOST_NO_TYPEID', 20 '-DBOOST_ALL_NO_LIB', 21 '-DBOOST_ALLOW_DEPRECATED_HEADERS' 22] 23build_tests = get_option('tests') 24cpp = meson.get_compiler('cpp') 25boost = dependency('boost', required: false) 26if not boost.found() 27 subproject('boost', required: false) 28 boost = declare_dependency( 29 include_directories: 'subprojects/boost_1_71_0', 30 ) 31 boost = boost.as_system('system') 32endif 33if get_option('fru-device') 34 i2c = cpp.find_library('i2c') 35endif 36 37nlohmann_json_dep = dependency('nlohmann_json', 38 fallback: [ 'nlohmann_json', 'nlohmann_json_dep']) 39 40sdbusplus = dependency('sdbusplus', required: false) 41if not sdbusplus.found() 42 sdbusplus_proj = subproject('sdbusplus', required: true) 43 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep') 44 sdbusplus = sdbusplus.as_system('system') 45endif 46systemd = dependency('systemd') 47systemd_system_unit_dir = systemd.get_pkgconfig_variable( 48 'systemdsystemunitdir', 49 define_variable: ['prefix', get_option('prefix')]) 50packagedir = join_paths( 51 get_option('prefix'), 52 get_option('datadir'), 53 meson.project_name(), 54) 55sysconfdir = join_paths( 56 get_option('prefix'), 57 get_option('sysconfdir'), 58 meson.project_name(), 59) 60threads = dependency('threads') 61if cpp.has_header('valijson/validator.hpp') 62 valijson = declare_dependency() 63else 64 subproject('valijson', required: false) 65 valijson = declare_dependency( 66 include_directories: 'subprojects/valijson/include' 67 ) 68 valijson = valijson.as_system('system') 69endif 70 71install_data('blacklist.json') 72 73configs = [ 74 '1ux16_riser.json', 75 '2ux8_riser.json', 76 '8x25_hsbp.json', 77 'a2ul16riser.json', 78 'a2ux8x4riser.json', 79 'acbell_rica_psu.json', 80 'asrock_e3c246d4i.json', 81 'asrock_romed8hm3.json', 82 'bletchley_baseboard.json', 83 'bletchley_chassis.json', 84 'bletchley_frontpanel.json', 85 'blyth.json', 86 'ahw1um2riser.json', 87 'aspower_u1a-d10550_psu.json', 88 'aspower_u1a-d10800_psu.json', 89 'aspower_u1a-d11200_psu.json', 90 'aspower_u1a-d11600_psu.json', 91 'aspower_u1d-d10800_psu.json', 92 'axx1p100hssi_aic.json', 93 'axx2prthdhd.json', 94 'bnp_baseboard.json', 95 'bellavista.json', 96 'delta_awf2dc3200w_psu.json', 97 'delta_dps-750xb_psu.json', 98 'delta_dps-1600ab_psu.json', 99 'delta_dps-2000ab_psu.json', 100 'everest.json', 101 'f1u12x25_hsbp.json', 102 'f1u4x25_hsbp.json', 103 'f2u12x35_hsbp.json', 104 'f2u8x25_hsbp.json', 105 'fbtp.json', 106 'fbyv2.json', 107 'fbyv35.json', 108 'fbyv35_nic_mellanox.json', 109 'flextronics_s-1100adu00-201_psu.json', 110 'greatlakes.json', 111 'greatlakes_nic_mellanox.json', 112 'ibm_1000w_cffps.json', 113 'ibm_1400w_cffps.json', 114 'ibm_1600w_cffps.json', 115 'ibm_2000w_cffps.json', 116 'ibm_2300w_cffps.json', 117 'intel_front_panel.json', 118 'kudo_bmc.json', 119 'kudo_motherboard.json', 120 'mt_jade.json', 121 'nisqually.json', 122 'nvme_p4000.json', 123 'pcie_ssd_retimer.json', 124 'pssf132202a.json', 125 'pssf162205a.json', 126 'pssf212201a.json', 127 'pssf222201a.json', 128 'rainier_2u_chassis.json', 129 'rainier_4u_chassis.json', 130 'rainier_1s4u_chassis.json', 131 'r1000_chassis.json', 132 'r2000_chassis.json', 133 'sas_module.json', 134 'solum_pssf162202_psu.json', 135 'storm_king.json', 136 'stp_baseboard.json', 137 'stp_p4000_chassis.json', 138 'twinlake.json', 139 'tyan_s7106_baseboard.json', 140 'tyan_s8036_baseboard.json', 141 'vegman_n110_baseboard.json', 142 'vegman_rx20_baseboard.json', 143 'vegman_sx20_baseboard.json', 144 'wft_baseboard.json', 145] 146filepaths = [] 147foreach c : configs 148 file = join_paths('configurations', c) 149 install_data( 150 file, 151 install_dir: join_paths( 152 packagedir, 153 'configurations', 154 ) 155 ) 156 filepaths += [file] 157endforeach 158 159validate_script = files('scripts/validate_configs.py') 160autojson = custom_target( 161 'check_syntax', 162 command: [ 163 validate_script, 164 '-v', 165 '-k', 166 ], 167 depend_files: files(filepaths), 168 build_by_default: true, 169 capture: true, 170 output: 'validate_configs.log', 171) 172 173schemas = [ 174 'global.json', 175 'legacy.json', 176 'openbmc-dbus.json', 177 'ibm.json', 178 'intel.json', 179 'pid.json', 180 'pid_zone.json', 181 'stepwise.json', 182 'virtual_sensor.json', 183] 184 185foreach s : schemas 186 install_data( 187 join_paths('schemas', s), 188 install_dir: join_paths( 189 packagedir, 190 'configurations', 191 'schemas', 192 ) 193 ) 194endforeach 195 196subdir('service_files') 197subdir('src') 198 199if not build_tests.disabled() 200 test_boost_args = boost_args + ['-DBOOST_ASIO_DISABLE_THREADS'] 201 gtest = dependency('gtest', main: true, disabler: true, required: false) 202 if not gtest.found() and build_tests.enabled() 203 cmake = import('cmake') 204 gtest_subproject = cmake.subproject('gtest') 205 cm_gtest = gtest_subproject.dependency('gtest') 206 cm_gtest_main = gtest_subproject.dependency('gtest_main') 207 gtest = declare_dependency(dependencies: [cm_gtest, cm_gtest_main, threads]) 208 endif 209 210 test( 211 'test_entity_manager', 212 executable( 213 'test_entity_manager', 214 'test/test_entity-manager.cpp', 215 'src/expression.cpp', 216 'src/utils.cpp', 217 cpp_args: test_boost_args, 218 dependencies: [ 219 boost, 220 gtest, 221 nlohmann_json_dep, 222 sdbusplus, 223 valijson, 224 ], 225 implicit_include_directories: false, 226 include_directories: 'include', 227 ) 228 ) 229 230 test( 231 'test_fru_utils', 232 executable( 233 'test_fru_utils', 234 'test/test_fru-utils.cpp', 235 'src/fru_utils.cpp', 236 'src/fru_reader.cpp', 237 cpp_args: test_boost_args, 238 dependencies: [ 239 boost, 240 gtest, 241 ], 242 implicit_include_directories: false, 243 include_directories: 'include', 244 ) 245 ) 246endif 247