demo.dtu/settings.py

143 lines
4.2 KiB
Python
Raw Normal View History

# Copyright (c) Quectel Wireless Solution, Co., Ltd.All Rights Reserved.
#
# 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 ure
import uos
import ql_fs
import ujson
import modem
import _thread
from usr.modules.common import Singleton
from usr.modules.common import option_lock
from usr.settings_user import UserConfig
from usr.modules.logging import getLogger
log = getLogger(__name__)
PROJECT_NAME = "QuecPython-Dtu"
PROJECT_VERSION = "2.0.0"
DEVICE_FIRMWARE_NAME = uos.uname()[0].split("=")[1]
DEVICE_FIRMWARE_VERSION = modem.getDevFwVersion()
_settings_lock = _thread.allocate_lock()
class Settings(Singleton):
def __init__(self, settings_file="/usr/dtu_config.json"):
self.settings_file = settings_file
self.current_settings = {}
self.init()
def __init_config(self):
try:
self.current_settings = {k: v for k, v in UserConfig.__dict__.items() if not k.startswith("_")}
# The initial password is the last six digits of the IMEI
self.current_settings["password"] = modem.getDevImei()[-6:]
return True
except:
return False
def __read_config(self):
if ql_fs.path_exists(self.settings_file):
with open(self.settings_file, "r") as f:
self.current_settings = ujson.load(f)
return True
return False
def __set_config(self, opt, val):
if opt in ["conf", "message", "uconf", "direction_pin", "modbus"]:
if not isinstance(val, dict):
return False
self.current_settings[opt] = val
return True
elif opt in ["reg", "convert", "version", "nolog", "fota", "ota", "service_acquire", "auto_connect", "offline_storage"]:
if not isinstance(val, int):
return False
self.current_settings[opt] = val
return True
elif opt in ["password", "work_mode"]:
if not isinstance(val, str):
return False
self.current_settings[opt] = val
return True
elif opt in ["pins", "apn"]:
if not isinstance(val, list):
return False
self.current_settings[opt] = val
return True
return False
def __save_config(self):
try:
with open(self.settings_file, "w") as f:
ujson.dump(self.current_settings, f)
return True
except:
return False
def __remove_config(self):
try:
uos.remove(self.settings_file)
return True
except:
return False
def __get_config(self):
return self.current_settings
@option_lock(_settings_lock)
def init(self):
if self.__read_config() is False:
if self.__init_config():
return self.__save_config()
return False
@option_lock(_settings_lock)
def get(self):
return self.__get_config()
@option_lock(_settings_lock)
def set(self, opt, val):
return self.__set_config(opt, val)
@option_lock(_settings_lock)
def save(self):
return self.__save_config()
@option_lock(_settings_lock)
def remove(self):
return self.__remove_config()
@option_lock(_settings_lock)
def reset(self):
if self.__remove_config():
if self.__init_config():
return self.__save_config()
return False
def set_multi(self, **kwargs):
for k in self.current_settings.keys():
if k in kwargs:
try:
if not self.__set_config(k, kwargs[k]):
raise Exception("Set parameter error")
except:
return False
return True
settings = Settings()