2022-01-13 14:20:51 +05:30
|
|
|
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2018-07-30 21:40:10 +05:30
|
|
|
#
|
|
|
|
|
2022-01-28 10:36:10 +05:30
|
|
|
import importlib.util
|
2018-07-30 21:40:10 +05:30
|
|
|
import os
|
2022-01-28 10:36:10 +05:30
|
|
|
import sys
|
|
|
|
from importlib.abc import Loader
|
|
|
|
from typing import Any
|
2018-07-30 21:40:10 +05:30
|
|
|
|
2018-12-14 17:37:43 +01:00
|
|
|
|
2022-05-31 10:49:23 +05:30
|
|
|
def _load_source(name: str, path: str) -> Any:
|
2022-01-28 10:36:10 +05:30
|
|
|
spec = importlib.util.spec_from_file_location(name, path)
|
2022-05-31 10:49:23 +05:30
|
|
|
if not spec:
|
|
|
|
return None
|
|
|
|
|
2022-01-28 10:36:10 +05:30
|
|
|
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 17:37:43 +01:00
|
|
|
|
|
|
|
|
2018-07-30 21:40:10 +05:30
|
|
|
idf_path = os.environ['IDF_PATH']
|
|
|
|
|
|
|
|
# protocomm component related python files generated from .proto files
|
2021-01-26 10:49:01 +08: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 10:49:23 +05:30
|
|
|
sec2_pb2 = _load_source('sec2_pb2', idf_path + '/components/protocomm/python/sec2_pb2.py')
|
2021-01-26 10:49:01 +08:00
|
|
|
session_pb2 = _load_source('session_pb2', idf_path + '/components/protocomm/python/session_pb2.py')
|
2018-07-30 21:40:10 +05:30
|
|
|
|
|
|
|
# wifi_provisioning component related python files generated from .proto files
|
2021-01-26 10:49:01 +08: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')
|