mirror of
https://gitee.com/qpy-solutions/dtu.git
synced 2025-05-20 03:28:25 +08:00
146 lines
4.2 KiB
Python
146 lines
4.2 KiB
Python
# 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.1.0"
|
|
|
|
DEVICE_FIRMWARE_NAME = uos.uname()[0].split("=")[1]
|
|
DEVICE_FIRMWARE_VERSION = modem.getDevFwVersion()
|
|
|
|
_settings_lock = _thread.allocate_lock()
|
|
|
|
CONFIG = {
|
|
"config_dir": "/usr",
|
|
"config_path": "/usr/dtu_config.json",
|
|
}
|
|
|
|
|
|
class Settings(Singleton):
|
|
|
|
def __init__(self, settings_file=CONFIG["config_path"]):
|
|
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("_")}
|
|
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 == ["conf", "message", "uconf", "direction_pin", "modbus"]:
|
|
if not isinstance(val, dict):
|
|
return False
|
|
self.current_settings[opt] = val
|
|
return True
|
|
elif opt == ["plate", "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 == ["password", "work_mode"]:
|
|
if not isinstance(val, str):
|
|
return False
|
|
self.current_settings[opt] = val
|
|
return True
|
|
elif opt == ["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() |