openubmc-bingo 0.5.257__py3-none-any.whl → 0.5.262__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openubmc-bingo might be problematic. Click here for more details.
- bmcgo/__init__.py +1 -1
- bmcgo/codegen/lua/codegen.py +23 -0
- bmcgo/codegen/lua/script/model_consistency_check.py +242 -0
- bmcgo/codegen/lua/script/render_utils/__init__.py +7 -4
- bmcgo/codegen/lua/script/render_utils/client_lua.py +1 -2
- bmcgo/codegen/lua/script/render_utils/message_lua.py +2 -1
- bmcgo/codegen/lua/script/render_utils/service_lua.py +1 -1
- bmcgo/codegen/lua/script/utils.py +12 -3
- bmcgo/codegen/lua/templates/apps/Makefile +59 -2
- bmcgo/codegen/lua/v1/script/render_utils/client_lua.py +108 -0
- bmcgo/codegen/lua/v1/script/render_utils/db_lua.py +223 -0
- bmcgo/codegen/lua/v1/templates/apps/client.lua.mako +25 -10
- bmcgo/codegen/lua/v1/templates/apps/db.lua.mako +62 -0
- bmcgo/codegen/lua/v1/templates/apps/local_db.lua.mako +184 -0
- bmcgo/codegen/lua/v1/templates/apps/message.lua.mako +35 -0
- bmcgo/codegen/lua/v1/templates/apps/service.lua.mako +5 -6
- bmcgo/codegen/lua/v1/templates/apps/utils/mdb_intf.lua.mako +27 -0
- bmcgo/codegen/lua/v1/templates/apps/utils/mdb_obj.lua.mako +14 -0
- {openubmc_bingo-0.5.257.dist-info → openubmc_bingo-0.5.262.dist-info}/METADATA +1 -1
- {openubmc_bingo-0.5.257.dist-info → openubmc_bingo-0.5.262.dist-info}/RECORD +24 -16
- /bmcgo/codegen/lua/script/{render_utils/mdb_register.py → mdb_register.py} +0 -0
- {openubmc_bingo-0.5.257.dist-info → openubmc_bingo-0.5.262.dist-info}/WHEEL +0 -0
- {openubmc_bingo-0.5.257.dist-info → openubmc_bingo-0.5.262.dist-info}/entry_points.txt +0 -0
- {openubmc_bingo-0.5.257.dist-info → openubmc_bingo-0.5.262.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bmcgo/__init__.py,sha256=
|
|
1
|
+
bmcgo/__init__.py,sha256=bX6etFRC0CG_Rds6PDPayRkmy6bWHtSfN4n-bi2tKno,563
|
|
2
2
|
bmcgo/bmcgo.py,sha256=uD4TsfjrFB5aQPIS6WRUVc9ShXX-dSImY9ezkB13g1w,685
|
|
3
3
|
bmcgo/bmcgo_config.py,sha256=zPghH-W8vNK1bAc5PjfwnWzkHYT499PlGbhUWhPKT5U,10888
|
|
4
4
|
bmcgo/errors.py,sha256=QW1ndrJcJ2Ws7riOznPKVvZsNlrYk73eZol7w8gJTPU,3076
|
|
@@ -34,7 +34,7 @@ bmcgo/codegen/c/template/server.h.mako,sha256=hZg1U64YKtlUm4wuKRobhjGW8e7rzFu9xg
|
|
|
34
34
|
bmcgo/codegen/lua/.lua-format,sha256=h6RLqe84SjDqKO1mqoCW7XVtrAwDMTRM1Rj8nwzPGwQ,188
|
|
35
35
|
bmcgo/codegen/lua/Makefile,sha256=wliuAhxhChrpsTnWuOlje3gtW2KRqayIhGRYBkvFi-c,3304
|
|
36
36
|
bmcgo/codegen/lua/__init__.py,sha256=2yU9vzUVQmMJ0qBtNJ-AfKpnOzYZo4wAxlRnpFwgE7M,521
|
|
37
|
-
bmcgo/codegen/lua/codegen.py,sha256=
|
|
37
|
+
bmcgo/codegen/lua/codegen.py,sha256=RTcigRI-_H3E2r7Dz8Afw0VOr1EPL3zFqDzPFKWw7KU,8978
|
|
38
38
|
bmcgo/codegen/lua/proto/Makefile,sha256=rS4nEBwWJEDYAb5XN9S7SfII7RMFb071jh0eh_KJePo,3098
|
|
39
39
|
bmcgo/codegen/lua/proto/ipmi_types.proto,sha256=BX09mymhhPkWqZE1UCVJACpLBeQh1vQN31oBRVVieFY,377
|
|
40
40
|
bmcgo/codegen/lua/proto/types.proto,sha256=_X8JCKZCvO6PfWh6tuWcEqKHROrh46rCZab-OCkfirA,1162
|
|
@@ -54,16 +54,18 @@ bmcgo/codegen/lua/script/gen_rpc_msg_json.py,sha256=6fVtZTHL-v6pdCjkgxFmqCjf511c
|
|
|
54
54
|
bmcgo/codegen/lua/script/gen_schema.py,sha256=9sfqv7fHYoCiokotesBER2HglqHwrj08ftQDbrDjrlI,10600
|
|
55
55
|
bmcgo/codegen/lua/script/ipmi_types_pb2.py,sha256=CaCartJKCRgx5WLBg4mbzS8VXwSKy380o6BPYgouAJQ,6665
|
|
56
56
|
bmcgo/codegen/lua/script/lua_format.py,sha256=W3UO-II34qY0_st6QiHwSOrQZnqdz4mLWOIB3pfGe58,2003
|
|
57
|
+
bmcgo/codegen/lua/script/mdb_register.py,sha256=m4St_oPFnaHZG0PTg_D47_zcrqGexy70otVVuu99VM8,7578
|
|
57
58
|
bmcgo/codegen/lua/script/mds_util.py,sha256=CXcmVHimHMEhV7nds-Jxq29sSHJtuKjnoujgzF151JQ,11914
|
|
58
59
|
bmcgo/codegen/lua/script/merge_model.py,sha256=VDe1b1zgbNEVeqpuzAyL7S8EAb1Hwy0N3Ayv4dT2_Hg,12923
|
|
59
60
|
bmcgo/codegen/lua/script/merge_proto_algo.py,sha256=IK7mjBYQWzwr5RtyeHp8CQFU_jIpuHkOxe6XSI_PcXU,3007
|
|
61
|
+
bmcgo/codegen/lua/script/model_consistency_check.py,sha256=RzHW1heLgcPEAg9sKav-r4_XgI5JClrIPsWh7MkHHro,10670
|
|
60
62
|
bmcgo/codegen/lua/script/proto_loader.py,sha256=w6TTyLvXrdXZKTKOGf87kSuSsbBviVeQJAhtjRc2K2Y,1913
|
|
61
63
|
bmcgo/codegen/lua/script/proto_plugin.py,sha256=hfFr7QXndA1dbFYmpUkemFxkdSchK8i8xml_3cMdBA4,5002
|
|
62
64
|
bmcgo/codegen/lua/script/redfish_source_tree.py,sha256=HzTGY4PViZXLQLOt_U7-YMqE5Ctf-Mxa1p5voOFJU4A,3905
|
|
63
65
|
bmcgo/codegen/lua/script/sep_ipmi_message_cmds.py,sha256=dQZog5e7Eo8Z7xSrp9sUri8vg-VtEj_Sll_E_OhnBw4,8209
|
|
64
66
|
bmcgo/codegen/lua/script/template.py,sha256=kJ5vQcHKY5OKUkYrSObFjx6WLVopveasjbr0HWgrMZM,6711
|
|
65
67
|
bmcgo/codegen/lua/script/types_pb2.py,sha256=uiRP_JPK9EF57RUZuomx1K1M9_jZFZgsHXcatFrhzow,23074
|
|
66
|
-
bmcgo/codegen/lua/script/utils.py,sha256=
|
|
68
|
+
bmcgo/codegen/lua/script/utils.py,sha256=QrBlrntS9uTb95iAKpZLPYbSeCUNXNzSoxEm5d21zjY,24886
|
|
67
69
|
bmcgo/codegen/lua/script/validate.py,sha256=_RHZBSDZklmcjETD8zRmnhz4DABzKoL-fNl1I9L4Ofs,2096
|
|
68
70
|
bmcgo/codegen/lua/script/yaml_to_json.py,sha256=31J1qJPIAJrx9Cq6bNZks3QCZ754spI5mjZNlshkcJ4,2291
|
|
69
71
|
bmcgo/codegen/lua/script/dto/__init__.py,sha256=nSBpsAbZ7UGd0a25ys_LLEpi3juPtUhVMy_tgGuZsNY,560
|
|
@@ -78,29 +80,28 @@ bmcgo/codegen/lua/script/loader/file_utils.py,sha256=wBWkW9o0-ij2vG1Vv7OA-EtmBm8
|
|
|
78
80
|
bmcgo/codegen/lua/script/loader/kepler_abstract_collect.py,sha256=5NIR71Bt5EPcUEubZfcoYf_o4YKg2yuvawOm-fWGbVA,3031
|
|
79
81
|
bmcgo/codegen/lua/script/loader/kepler_abstract_loader.py,sha256=wQBYQyKhBOeoUn0d1YnYFtOzWPLNZVf7QmUvjLwTMT4,1977
|
|
80
82
|
bmcgo/codegen/lua/script/loader/redfish_loader.py,sha256=k7SUKN0I4Fc6uTugeOsPP0ceRM_tVEBTbQdNl_kDav4,5944
|
|
81
|
-
bmcgo/codegen/lua/script/render_utils/__init__.py,sha256=
|
|
82
|
-
bmcgo/codegen/lua/script/render_utils/client_lua.py,sha256=
|
|
83
|
+
bmcgo/codegen/lua/script/render_utils/__init__.py,sha256=elQAJchs3xUIE2sb3mQj_MFfHZJ_u89C-D77us90PHM,2256
|
|
84
|
+
bmcgo/codegen/lua/script/render_utils/client_lua.py,sha256=SSbE4kLLyRWPKxUMiMfWP-nZASEnAsnlzR4u1AuZIuc,3519
|
|
83
85
|
bmcgo/codegen/lua/script/render_utils/controller_lua.py,sha256=bgMXd6beOiL0Xm4rK3x09_GjaJJcDBMkt8ya0gHIqz0,2352
|
|
84
86
|
bmcgo/codegen/lua/script/render_utils/db_lua.py,sha256=SHhuoIMvN0dPplUODfvu3qCDBtgP9QmnUvjLPQEjoTk,7865
|
|
85
87
|
bmcgo/codegen/lua/script/render_utils/error_lua.py,sha256=CW9g-HPADf42zfzLSA6PW-0O_IchDKMyjztANGiIHC8,5928
|
|
86
88
|
bmcgo/codegen/lua/script/render_utils/ipmi_lua.py,sha256=jZ98qP_gJi6dAU40OmDr_J2c49MzTPCC68Bh1sg7OFo,4997
|
|
87
89
|
bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py,sha256=Y-5pXMfAPDZqqoA9spkk80UHr63S6Z35gDeyAcu1tnc,1021
|
|
88
90
|
bmcgo/codegen/lua/script/render_utils/mdb_lua.py,sha256=gKX_GUkIbYbbviBw9cEO3pfTwoLWurczYFmoOoWA1Us,6141
|
|
89
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
90
|
-
bmcgo/codegen/lua/script/render_utils/message_lua.py,sha256=yeXui-QbIDrS4SyptW59WlI0e3KQ8Wgvxt8WUPFJbjU,1072
|
|
91
|
+
bmcgo/codegen/lua/script/render_utils/message_lua.py,sha256=ZHJy35iJir1O149dafZnl-oEdU89-eP6VIeQmKjh9D8,1155
|
|
91
92
|
bmcgo/codegen/lua/script/render_utils/messages_lua.py,sha256=eAe46JU1AJxfpifQCnioD1jxfDhfc-DLGRy8CmwCfBg,4948
|
|
92
93
|
bmcgo/codegen/lua/script/render_utils/model_lua.py,sha256=DIBwEt7cQMxkePUjqBk0oks6HBy_jqB4K32J6K3UAZM,18040
|
|
93
94
|
bmcgo/codegen/lua/script/render_utils/old_model_lua.py,sha256=OFUPJOaiXDjXpknbh6Pw0TNC1dUVtjPbuIs-3fSN7p4,15611
|
|
94
95
|
bmcgo/codegen/lua/script/render_utils/plugin_lua.py,sha256=-_r-MqjDNnoYel6zdsNSkqYI3w1DKJPwJy5Vsevl33s,1481
|
|
95
96
|
bmcgo/codegen/lua/script/render_utils/redfish_proto.py,sha256=lAVo9pPxkc7Iv22enuqCOJVTFy8_63C57iADjzYWz5g,3130
|
|
96
97
|
bmcgo/codegen/lua/script/render_utils/request_lua.py,sha256=rXBk3h1uY9vlKgUs4SdGRmqNu3GyCQQMGfySqgF-lv8,3209
|
|
97
|
-
bmcgo/codegen/lua/script/render_utils/service_lua.py,sha256=
|
|
98
|
+
bmcgo/codegen/lua/script/render_utils/service_lua.py,sha256=8n8-P7vR5PXPhBXVdlgxL9cvvdWuj5H8DnKqatxPWtQ,4402
|
|
98
99
|
bmcgo/codegen/lua/script/render_utils/utils_message_lua.py,sha256=MPAwH4lZUF1JqZMXmJV8sjBQFqcFKqBter_lpX38h-E,4940
|
|
99
100
|
bmcgo/codegen/lua/script/render_utils/validate_lua.py,sha256=NVjMWZwMxwUj9kdTaCRpyVZJkUQuR9kdzI7Y-MZDPaE,7079
|
|
100
101
|
bmcgo/codegen/lua/templates/Makefile,sha256=-br3qnXM_73_nJhYVgF7TsNtVxt_p_h4l5TYPjWqQIs,4044
|
|
101
102
|
bmcgo/codegen/lua/templates/errors.lua.mako,sha256=T93tESJl0K3r5izufq6NsqqCptQbVslpsTEjkQdDq0U,1536
|
|
102
103
|
bmcgo/codegen/lua/templates/messages.lua.mako,sha256=GfWjgRy0is3d-U8-Wq-i_oWguFi5d1VHQKv0pJhV9cE,1074
|
|
103
|
-
bmcgo/codegen/lua/templates/apps/Makefile,sha256=
|
|
104
|
+
bmcgo/codegen/lua/templates/apps/Makefile,sha256=IPU-LW3i9xTQUrb9XCWYTWlATCTu2JE3aayL43juEeM,19484
|
|
104
105
|
bmcgo/codegen/lua/templates/apps/Makefile.mdb.mk,sha256=Qmd-n_YsQbfnpED_6PIp_6pL13w6UCCGgBoBA4h6r_0,3296
|
|
105
106
|
bmcgo/codegen/lua/templates/apps/app.lua.mako,sha256=Y_aZCPyNgeqfa39_RWxV-_m3out1p4vTTWnzqXtPV7E,276
|
|
106
107
|
bmcgo/codegen/lua/templates/apps/class.lua.mako,sha256=FZsGAZeiytVwihxyyjhw6Hvv4V01Lhtz8Q9FPZYieZw,1208
|
|
@@ -154,10 +155,17 @@ bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako,sha256=3UleW8XN8VEF7
|
|
|
154
155
|
bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako,sha256=b6wu4leCGtNlXJ_kmEjtJkQqIBSkYz6EfWViZGneCqY,400
|
|
155
156
|
bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants/${project_name}.service.link,sha256=NJ6AGF9O0FGEM5dwb62LS2_KO7T3A2_lcHYFlY-KR0k,26
|
|
156
157
|
bmcgo/codegen/lua/v1/script/gen_schema.py,sha256=LtSswrIqjgk3PuGSlzKSB5Cw5OeSafYkm7PdLQ7Mrao,11717
|
|
158
|
+
bmcgo/codegen/lua/v1/script/render_utils/client_lua.py,sha256=Ake2bt96nowwGKncxJj-t7ImEl2dXnjGCuHQeU6VMds,3914
|
|
159
|
+
bmcgo/codegen/lua/v1/script/render_utils/db_lua.py,sha256=59XfkKtUz8Rv73zcyIcQR25JN_2atS4hQq_4BcXRrqo,7948
|
|
157
160
|
bmcgo/codegen/lua/v1/script/render_utils/model_lua.py,sha256=NTB1RYxjqBypm5KeRKpJSige6HtaZl_EI9mHJ5HZ9Ss,19024
|
|
158
|
-
bmcgo/codegen/lua/v1/templates/apps/client.lua.mako,sha256=
|
|
161
|
+
bmcgo/codegen/lua/v1/templates/apps/client.lua.mako,sha256=xFqBanl4k-qmVw3T3loWQK-jAVL7NmVR3lv-mxSn1Gg,11236
|
|
162
|
+
bmcgo/codegen/lua/v1/templates/apps/db.lua.mako,sha256=zrlqjVN9k6G1i3OeW2OROxzsYyhNAY-wpDt_nva5jL4,2094
|
|
163
|
+
bmcgo/codegen/lua/v1/templates/apps/local_db.lua.mako,sha256=6Tp99mTF9tLTMz2K6kviaxG9Lwtt0d6cMYY7ZGgMFCE,6460
|
|
164
|
+
bmcgo/codegen/lua/v1/templates/apps/message.lua.mako,sha256=-AUAwlgVIaNN7fiReXqDXX5Icq88i0SAar5XHlCrXQU,1039
|
|
159
165
|
bmcgo/codegen/lua/v1/templates/apps/model.lua.mako,sha256=EmHD62fk0QetQUO0DPz2BEc2NZmbq39pozqm4-ngYEY,2056
|
|
160
|
-
bmcgo/codegen/lua/v1/templates/apps/service.lua.mako,sha256=
|
|
166
|
+
bmcgo/codegen/lua/v1/templates/apps/service.lua.mako,sha256=wd_NJtiSSMbR-lxEqv-rluHOdUCpeV9ZlrZDA7DDaZY,5564
|
|
167
|
+
bmcgo/codegen/lua/v1/templates/apps/utils/mdb_intf.lua.mako,sha256=msdj2SygZvV3RIEHLeVDfZvOzZ99Yy27SwPVrFVVcpc,1242
|
|
168
|
+
bmcgo/codegen/lua/v1/templates/apps/utils/mdb_obj.lua.mako,sha256=oCzx2u3bjvCdNKX5oC8j6Q-Zb21q6SFCqd14_VzrWvo,349
|
|
161
169
|
bmcgo/component/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
162
170
|
bmcgo/component/build.py,sha256=S0borHjBQfb0EWQ6uqKWUJGImkzHpb2x5qqz-qnzsHI,8959
|
|
163
171
|
bmcgo/component/component_dt_version_parse.py,sha256=KyrfyjbrszU-hhG1Hr6TzKuSabmGIK51b_3KuVBv5-g,14139
|
|
@@ -246,8 +254,8 @@ bmcgo/utils/installations/version_util.py,sha256=dOwvLZ7iOmnzSeyD6_pRm7NS7I13Um5
|
|
|
246
254
|
bmcgo/utils/installations/install_plans/bingo.yml,sha256=Zw1HnAyNJdEwkE3fnd-_GCe9bwv1m6bmMlaQTJXaFa8,210
|
|
247
255
|
bmcgo/utils/installations/installers/apt_installer.py,sha256=nPaCb4cobSi9InN_aHsEPtQ0k4FgsCUWE5_VgBPvcRE,3769
|
|
248
256
|
bmcgo/utils/installations/installers/pip_installer.py,sha256=dDdios1EQ7fzt90r02pZeoM3jCmjslLzkSvzd2hgRVM,3241
|
|
249
|
-
openubmc_bingo-0.5.
|
|
250
|
-
openubmc_bingo-0.5.
|
|
251
|
-
openubmc_bingo-0.5.
|
|
252
|
-
openubmc_bingo-0.5.
|
|
253
|
-
openubmc_bingo-0.5.
|
|
257
|
+
openubmc_bingo-0.5.262.dist-info/METADATA,sha256=JIDGVK5MNynzbFpmALbKhpB52QUg5eRfsZ4T4f2xa2g,925
|
|
258
|
+
openubmc_bingo-0.5.262.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
259
|
+
openubmc_bingo-0.5.262.dist-info/entry_points.txt,sha256=UUoUP-vAWTgg9vEYbRwYqOBHgpRtkngdzMPb-ocz90g,42
|
|
260
|
+
openubmc_bingo-0.5.262.dist-info/top_level.txt,sha256=9AcvCAt1nZcOgMsGt6T07mg2Bgtdet-3mHTwg91axgI,6
|
|
261
|
+
openubmc_bingo-0.5.262.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|