/usr/lib/python2.7/dist-packages/Wammu/WammuSettings.py is in wammu 0.44-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | # -*- coding: UTF-8 -*-
#
# Copyright © 2003 - 2018 Michal Čihař <michal@cihar.com>
#
# This file is part of Wammu <https://wammu.eu/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
'''
Wammu - Phone manager
Config handler wrapper with various defaults, which might be platform
dependant.
@var DEFAULT_CONFIG: Dictionary of default values.
@var EXPANDABLE_CONFIGS: List of variables where path expansion should happen.
'''
from __future__ import unicode_literals
import os
import wx
import Wammu.GammuSettings
import Wammu.OSUtils
DEFAULT_CONFIG = {
'/Main/X': 0,
'/Main/Y': 0,
'/Main/Split': 160,
'/Main/SplitRight': -200,
'/Main/Width': 640,
'/Main/Height': 480,
'/Defaults/SearchType': 0,
'/Defaults/Type-contact-MemoryType': 'SM',
'/Defaults/Type-calendar-Type': 'MEETING',
'/Defaults/Type-todo-Priority': 'Medium',
'/Defaults/Entry-contact-0': 'Text_Name',
'/Defaults/Entry-contact-1': 'Number_General',
'/Defaults/Entry-todo-0': 'TEXT',
'/Defaults/Entry-calendar-0': 'TEXT',
'/Defaults/Entry-calendar-1': 'START_DATETIME',
'/Defaults/Entry-calendar-2': 'END_DATETIME',
'/Wammu/AutoConnect': 'no',
'/Gammu/LockDevice': False,
'/Debug/Show': 'no',
'/Wammu/PhonePrefix': 'Auto',
'/Wammu/LastPhonePrefix': '',
'/Wammu/RefreshState': 30000,
'/Debug/X': 0,
'/Debug/Y': 0,
'/Debug/Width': 400,
'/Debug/Height': 200,
'/Message/ScaleImage': 1,
'/Message/Format': 'yes',
'/Message/Concatenated': 'yes',
'/Message/Unicode': 'no',
'/Message/DeliveryReport': 'no',
'/Message/16bitId': 'yes',
'/Gammu/SyncTime': True,
'/Gammu/StartInfo': True,
'/Wammu/ConfirmDelete': 'yes',
'/Wammu/DefaultTime': '09:00:00',
'/Wammu/DefaultDateOffset': 1,
'/Wammu/DefaultEntries': 3,
'/Wammu/FirstRun': -1,
'/Wammu/RunCounter': 0,
'/Wammu/TalkbackDone': 'no',
'/Wammu/NameFormat': 'auto',
'/Wammu/NameFormatString': '%(FirstName)s %(LastName)s (%(Company)s)',
'/IMAP/Server': '',
'/IMAP/Port': '',
'/IMAP/Login': '',
'/IMAP/Password': '',
'/IMAP/RememberPassword': 'no',
'/IMAP/UseSSL': 'yes',
'/IMAP/OnlyNewMessages': 'yes',
'/IMAP/BackupStateRead': 'yes',
'/IMAP/BackupStateSent': 'yes',
'/IMAP/BackupStateUnread': 'yes',
'/IMAP/BackupStateUnsent': 'yes',
'/MessageExport/From': 'Wammu <wammu@wammu.sms>',
'/Gammu/Section': 0,
'/User/Name': Wammu.OSUtils.GetUserFullName(),
'/Gammu/Gammurc': os.path.join('~', '.gammurc'),
'/Hacks/MaxEmptyGuess': 50,
'/Hacks/MaxEmptyKnown': 100,
}
EXPANDABLE_CONFIGS = [
'/Gammu/Gammurc',
]
class WammuConfig:
'''
Wrapper class for wx.Config, which handles automatically defaults
and allows some automatic conversion of read values (like expanding
~ in path).
'''
def __init__(self):
# We don't want to subclass from wx.Config to hide it's API
self.cfg = wx.Config(
appName='Wammu',
style=wx.CONFIG_USE_LOCAL_FILE
)
self.gammu = None
self.InitGammu()
def Flush(self):
self.cfg.Flush()
def InitGammu(self, path=None):
'''
Initializes gammu configuration as sub part of this class.
'''
self.gammu = Wammu.GammuSettings.GammuSettings(self, path)
def Read(self, path, expand=True):
'''
Reads string option from configuration.
'''
try:
result = self.cfg.Read(path, DEFAULT_CONFIG[path])
except KeyError:
# Following line is for debugging purposes only
# print 'Warning: no default value for %s' % path
result = self.cfg.Read(path, '')
if expand and path in EXPANDABLE_CONFIGS:
result = Wammu.OSUtils.ExpandPath(result)
return result
def ReadInt(self, path):
'''
Reads integer option from configuration.
'''
try:
result = self.cfg.ReadInt(path, DEFAULT_CONFIG[path])
except KeyError:
# Following line is for debugging purposes only
# print 'Warning: no default value for %s' % path
result = self.cfg.ReadInt(path, 0)
return result
def ReadFloat(self, path):
'''
Reads float option from configuration.
'''
try:
result = self.cfg.ReadFloat(path, DEFAULT_CONFIG[path])
except KeyError:
# Following line is for debugging purposes only
# print 'Warning: no default value for %s' % path
result = self.cfg.ReadFloat(path, 0)
return result
def ReadBool(self, path):
'''
Reads boolean option from configuration.
'''
try:
result = self.cfg.ReadBool(path, DEFAULT_CONFIG[path])
except KeyError:
# Following line is for debugging purposes only
# print 'Warning: no default value for %s' % path
result = self.cfg.ReadBool(path, 0)
return result
def Write(self, path, value):
'''
Writes string option to configuration.
'''
self.cfg.Write(path, value)
def WriteInt(self, path, value):
'''
Writes integer option to configuration.
'''
self.cfg.WriteInt(path, value)
def WriteFloat(self, path, value):
'''
Writes float option to configuration.
'''
self.cfg.WriteFloat(path, value)
def WriteBool(self, path, value):
'''
Writes boolean option to configuration.
'''
self.cfg.WriteBool(path, value)
def HasEntry(self, path):
'''
Checks whether configuration has some entry.
'''
return self.cfg.HasEntry(path)
|