1project(
2     'openpower-vpd-parser',
3     'c',
4     'cpp',
5     default_options: [
6       'warning_level=3',
7       'werror=true',
8       'cpp_std=c++17'
9     ],
10     version: '1.0'
11)
12
13build_tests = get_option('tests')
14
15sdbusplus = dependency('sdbusplus')
16phosphor_logging = dependency('phosphor-logging')
17phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
18
19compiler = meson.get_compiler('cpp')
20python = find_program('python3', required:true)
21
22compiler.has_header('CLI/CLI.hpp')
23compiler.has_header('nlohmann/json.hpp')
24add_global_arguments('-Wno-psabi', language : ['c', 'cpp'])
25configure_file(output: 'config.h',
26                       configuration :{
27                       'INVENTORY_JSON_DEFAULT': '"'+get_option('INVENTORY_JSON_DEFAULT')+'"',
28                       'VPD_FILES_PATH': '"'+get_option('VPD_FILES_PATH')+'"',
29                       'INVENTORY_PATH': '"'+get_option('INVENTORY_PATH')+'"',
30                       'IPZ_INTERFACE': '"'+get_option('IPZ_INTERFACE')+'"',
31                       'INVENTORY_MANAGER_SERVICE': '"'+get_option('INVENTORY_MANAGER_SERVICE')+'"',
32                       'BUSNAME' : '"' + get_option('BUSNAME') + '"',
33                       'OBJPATH' : '"' + get_option('OBJPATH') + '"',
34                       'IFACE' : '"' + get_option('IFACE') + '"',
35                       'OBJECT_MAPPER_SERVICE' : '"'+get_option('OBJECT_MAPPER_SERVICE')+'"',
36                       'OBJECT_MAPPER_OBJECT' : '"'+get_option('OBJECT_MAPPER_OBJECT')+'"',
37                       'POWER_SUPPLY_TYPE_INTERFACE' : '"'+get_option('POWER_SUPPLY_TYPE_INTERFACE')+'"',
38                       'INVENTORY_MANAGER_CACHE' : '"'+get_option('INVENTORY_MANAGER_CACHE')+'"',
39                       'INVENTORY_JSON_SYM_LINK': '"'+get_option('INVENTORY_JSON_SYM_LINK')+'"',
40                       'INVENTORY_JSON_2U': '"'+get_option('INVENTORY_JSON_2U')+'"',
41                       'INVENTORY_JSON_4U': '"'+get_option('INVENTORY_JSON_4U')+'"'
42                       }
43  )
44
45if get_option('ibm-parser').enabled()
46        ibm_read_vpd_SOURCES = ['ibm_vpd_app.cpp',
47                                'vpd-parser/ipz_parser.cpp',
48                                'impl.cpp',
49                                'utils.cpp',
50                                'vpd-parser/keyword_vpd_parser.cpp',
51                                'vpdecc/vpdecc.c',
52                                'vpdecc/vpdecc_support.c',
53                                'vpd-parser/memory_vpd_parser.cpp',
54                                'vpd-parser/parser_factory.cpp'
55                               ]
56
57        ibm_vpd_exe = executable(
58                                'ibm-read-vpd',
59                                ibm_read_vpd_SOURCES,
60                                dependencies: [
61                                        sdbusplus,
62                                        phosphor_logging,
63                                ],
64                                include_directories : 'vpd-parser/',
65                                install: true,
66                                cpp_args : '-DIPZ_PARSER'
67                            )
68
69        vpd_tool_SOURCES = ['vpd_tool.cpp',
70                            'vpd_tool_impl.cpp'
71                           ]
72
73        vpd_tool_exe = executable(
74                                 'vpd-tool',
75                                 vpd_tool_SOURCES,
76                                 dependencies: [
77                                   sdbusplus
78                                   ],
79                                 install: true
80                                 )
81if get_option('vpd-manager').enabled()
82    subdir('vpd-manager')
83endif
84
85else
86        FRUGEN = '$srcdir/extra-properties.py -e' + get_option('FRU_YAML')
87        PROPGEN = '$srcdir/extra-properties.py -e' + get_option('PROP_YAML')
88
89        src_dir = meson.source_root()
90        FRU_GEN_SCRIPT = src_dir + '/writefru.py'
91        FRU_GEN_SCRIPT_FILES = src_dir + '/writefru.yaml'
92
93        PROP_GEN_SCRIPT = src_dir + '/extra-properties.py'
94        PROP_GEN_SCRIPT_FILES = src_dir + '/extra-properties-example.yaml'
95
96        writefru_hpp = custom_target('writefru.hpp',
97                                     command:[python,
98                                              FRU_GEN_SCRIPT,
99                                              '-i',
100                                              get_option('FRU_YAML')
101                                     ],
102                                     depend_files :['writefru.mako.hpp',
103                                                    'writefru.py',
104                                                    get_option('FRU_YAML')
105                                     ],
106                                     output:'writefru.hpp'
107        )
108
109        extra_properties_gen_hpp = custom_target(
110                                        'extra-properties-gen.hpp',
111                                        command:[
112                                                python,
113                                                PROP_GEN_SCRIPT,
114                                                '-e',
115                                                get_option('PROP_YAML')
116                                        ],
117                                        depend_files : ['extra-properties.mako.hpp',
118                                                        'extra-properties.py',
119                                                        get_option('PROP_YAML')
120                                        ],
121                                        output:'extra-properties-gen.hpp'
122        )
123
124        openpower_read_vpd_SOURCES = ['app.cpp',
125                                      'args.cpp',
126                                      'impl.cpp',
127                                      'vpd-parser/ipz_parser.cpp',
128                                      'write.cpp',
129                                      'utils.cpp',
130                                      writefru_hpp,
131                                      extra_properties_gen_hpp
132        ]
133
134        openpower_read_vpd_exe= executable(
135                'openpower-read-vpd',
136                openpower_read_vpd_SOURCES,
137                dependencies: [
138                        sdbusplus,
139                        phosphor_logging,
140                ],
141                include_directories : 'vpd-parser/',
142                install: true,
143        )
144endif
145subdir('test')
146