2022-01-13 03:50:51 -05:00
|
|
|
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2018-07-30 12:10:10 -04:00
|
|
|
#
|
|
|
|
|
2022-01-28 00:06:10 -05:00
|
|
|
import importlib.util
|
2018-07-30 12:10:10 -04:00
|
|
|
import os
|
2022-01-28 00:06:10 -05:00
|
|
|
import sys
|
|
|
|
from importlib.abc import Loader
|
|
|
|
from typing import Any
|
2018-07-30 12:10:10 -04:00
|
|
|
|
2018-12-14 11:37:43 -05:00
|
|
|
|
2022-05-31 01:19:23 -04:00
|
|
|
def _load_source(name: str, path: str) -> Any:
|
2022-01-28 00:06:10 -05:00
|
|
|
spec = importlib.util.spec_from_file_location(name, path)
|
2022-05-31 01:19:23 -04:00
|
|
|
if not spec:
|
|
|
|
return None
|
|
|
|
|
2022-01-28 00:06:10 -05:00
|
|
|
module = importlib.util.module_from_spec(spec)
|
|
|
|
sys.modules[spec.name] = module
|
|
|
|
assert isinstance(spec.loader, Loader)
|
|
|
|
spec.loader.exec_module(module)
|
|
|
|
return module
|
2018-12-14 11:37:43 -05:00
|
|
|
|
|
|
|
|
2018-07-30 12:10:10 -04:00
|
|
|
idf_path = os.environ['IDF_PATH']
|
|
|
|
|
|
|
|
# protocomm component related python files generated from .proto files
|
2021-01-25 21:49:01 -05:00
|
|
|
constants_pb2 = _load_source('constants_pb2', idf_path + '/components/protocomm/python/constants_pb2.py')
|
|
|
|
sec0_pb2 = _load_source('sec0_pb2', idf_path + '/components/protocomm/python/sec0_pb2.py')
|
|
|
|
sec1_pb2 = _load_source('sec1_pb2', idf_path + '/components/protocomm/python/sec1_pb2.py')
|
2022-05-31 01:19:23 -04:00
|
|
|
sec2_pb2 = _load_source('sec2_pb2', idf_path + '/components/protocomm/python/sec2_pb2.py')
|
2021-01-25 21:49:01 -05:00
|
|
|
session_pb2 = _load_source('session_pb2', idf_path + '/components/protocomm/python/session_pb2.py')
|
2018-07-30 12:10:10 -04:00
|
|
|
|
|
|
|
# wifi_provisioning component related python files generated from .proto files
|
2021-01-25 21:49:01 -05:00
|
|
|
wifi_constants_pb2 = _load_source('wifi_constants_pb2', idf_path + '/components/wifi_provisioning/python/wifi_constants_pb2.py')
|
|
|
|
wifi_config_pb2 = _load_source('wifi_config_pb2', idf_path + '/components/wifi_provisioning/python/wifi_config_pb2.py')
|
|
|
|
wifi_scan_pb2 = _load_source('wifi_scan_pb2', idf_path + '/components/wifi_provisioning/python/wifi_scan_pb2.py')
|
2022-10-17 14:32:06 -04:00
|
|
|
wifi_ctrl_pb2 = _load_source('wifi_ctrl_pb2', idf_path + '/components/wifi_provisioning/python/wifi_ctrl_pb2.py')
|