2018-07-30 16:10:10 +00:00
|
|
|
# Copyright 2018 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2018-12-14 16:37:43 +00:00
|
|
|
|
|
|
|
def _load_source(name, path):
|
|
|
|
try:
|
|
|
|
from importlib.machinery import SourceFileLoader
|
|
|
|
return SourceFileLoader(name, path).load_module()
|
|
|
|
except ImportError:
|
|
|
|
# importlib.machinery doesn't exists in Python 2 so we will use imp (deprecated in Python 3)
|
|
|
|
import imp
|
|
|
|
return imp.load_source(name, path)
|
|
|
|
|
|
|
|
|
2018-07-30 16:10:10 +00:00
|
|
|
idf_path = os.environ['IDF_PATH']
|
|
|
|
|
|
|
|
# protocomm component related python files generated from .proto files
|
2018-12-14 16:37:43 +00: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")
|
|
|
|
session_pb2 = _load_source("session_pb2", idf_path + "/components/protocomm/python/session_pb2.py")
|
2018-07-30 16:10:10 +00:00
|
|
|
|
|
|
|
# wifi_provisioning component related python files generated from .proto files
|
2018-12-14 16:37:43 +00: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")
|
2018-07-30 16:10:10 +00:00
|
|
|
|
|
|
|
# custom_provisioning component related python files generated from .proto files
|
2018-12-14 16:37:43 +00:00
|
|
|
custom_config_pb2 = _load_source("custom_config_pb2", idf_path +
|
|
|
|
"/examples/provisioning/custom_config/components/custom_provisioning/python/custom_config_pb2.py")
|