mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-21 11:27:38 +03:00
Remove code to enable VerboseLogging again
No longer required with Journal
This commit is contained in:
parent
73e36ba2c6
commit
0ec2a532a0
93
monitor.py
93
monitor.py
@ -73,50 +73,6 @@ class EDLogs(FileSystemEventHandler):
|
||||
self.callbacks = { 'Jump': None, 'Dock': None }
|
||||
self.last_event = None # for communicating the Jump event
|
||||
|
||||
def logging_enabled_in_file(self, appconf):
|
||||
if not isfile(appconf):
|
||||
return False
|
||||
|
||||
with open(appconf, 'rU') as f:
|
||||
content = f.read().lower()
|
||||
start = content.find('<network')
|
||||
end = content.find('</network>')
|
||||
if start >= 0 and end >= 0:
|
||||
return bool(re.search('verboselogging\s*=\s*\"1\"', content[start+8:end]))
|
||||
else:
|
||||
return False
|
||||
|
||||
def enable_logging_in_file(self, appconf):
|
||||
try:
|
||||
if not exists(appconf):
|
||||
with open(appconf, 'wt') as f:
|
||||
f.write('<AppConfig>\n\t<Network\n\t\tVerboseLogging="1"\n\t>\n\t</Network>\n</AppConfig>\n')
|
||||
return True
|
||||
|
||||
with open(appconf, 'rU') as f:
|
||||
content = f.read()
|
||||
f.close()
|
||||
backup = appconf[:-4] + '_backup.xml'
|
||||
if exists(backup):
|
||||
unlink(backup)
|
||||
rename(appconf, backup)
|
||||
|
||||
with open(appconf, 'wt') as f:
|
||||
start = content.lower().find('<network')
|
||||
if start >= 0:
|
||||
f.write(content[:start+8] + '\n\t\tVerboseLogging="1"' + content[start+8:])
|
||||
else:
|
||||
start = content.lower().find("</appconfig>")
|
||||
if start >= 0:
|
||||
f.write(content[:start] + '\t<Network\n\t\tVerboseLogging="1"\n\t>\n\t</Network>\n' + content[start:])
|
||||
else:
|
||||
f.write(content) # eh ?
|
||||
return False
|
||||
|
||||
return self.logging_enabled_in_file(appconf)
|
||||
except:
|
||||
if __debug__: print_exc()
|
||||
return False
|
||||
|
||||
def set_callback(self, name, callback):
|
||||
if name in self.callbacks:
|
||||
@ -133,10 +89,6 @@ class EDLogs(FileSystemEventHandler):
|
||||
self.stop()
|
||||
self.currentdir = logdir
|
||||
|
||||
if not self._logging_enabled(self.currentdir):
|
||||
# verbose logging reduces likelihood that Docked/Undocked messages will be delayed
|
||||
self._enable_logging(self.currentdir)
|
||||
|
||||
self.root.bind_all('<<MonitorJump>>', self.jump) # user-generated
|
||||
self.root.bind_all('<<MonitorDock>>', self.dock) # user-generated
|
||||
|
||||
@ -321,18 +273,6 @@ class EDLogs(FileSystemEventHandler):
|
||||
# Apple's SMB implementation is too flaky so assume target machine is OSX
|
||||
return path and isdir(path) and isfile(join(path, pardir, 'AppNetCfg.xml'))
|
||||
|
||||
def _logging_enabled(self, path):
|
||||
if not self._is_valid_logdir(path):
|
||||
return False
|
||||
else:
|
||||
return self.logging_enabled_in_file(join(path, pardir, 'AppConfigLocal.xml'))
|
||||
|
||||
def _enable_logging(self, path):
|
||||
if not self._is_valid_logdir(path):
|
||||
return False
|
||||
else:
|
||||
return self.enable_logging_in_file(join(path, pardir, 'AppConfigLocal.xml'))
|
||||
|
||||
|
||||
elif platform=='win32':
|
||||
|
||||
@ -413,47 +353,16 @@ class EDLogs(FileSystemEventHandler):
|
||||
# Assume target machine is Windows
|
||||
return path and isdir(path) and isfile(join(path, pardir, 'AppConfig.xml'))
|
||||
|
||||
def _logging_enabled(self, path):
|
||||
if not self._is_valid_logdir(path):
|
||||
return False
|
||||
else:
|
||||
return (self.logging_enabled_in_file(join(path, pardir, 'AppConfigLocal.xml')) or
|
||||
self.logging_enabled_in_file(join(path, pardir, 'AppConfig.xml')))
|
||||
|
||||
def _enable_logging(self, path):
|
||||
if not self._is_valid_logdir(path):
|
||||
return False
|
||||
else:
|
||||
return self.enable_logging_in_file(isfile(join(path, pardir, 'AppConfigLocal.xml')) and
|
||||
join(path, pardir, 'AppConfigLocal.xml') or
|
||||
join(path, pardir, 'AppConfig.xml'))
|
||||
|
||||
|
||||
elif platform=='linux2':
|
||||
|
||||
def _logdir(self):
|
||||
return None
|
||||
|
||||
# Assume target machine is Windows
|
||||
|
||||
def _is_valid_logdir(self, path):
|
||||
# Assume target machine is Windows
|
||||
return path and isdir(path) and isfile(join(path, pardir, 'AppConfig.xml'))
|
||||
|
||||
def _logging_enabled(self, path):
|
||||
if not self._is_valid_logdir(path):
|
||||
return False
|
||||
else:
|
||||
return (self.logging_enabled_in_file(join(path, pardir, 'AppConfigLocal.xml')) or
|
||||
self.logging_enabled_in_file(join(path, pardir, 'AppConfig.xml')))
|
||||
|
||||
def _enable_logging(self, path):
|
||||
if not self._is_valid_logdir(path):
|
||||
return False
|
||||
else:
|
||||
return self.enable_logging_in_file(isfile(join(path, pardir, 'AppConfigLocal.xml')) and
|
||||
join(path, pardir, 'AppConfigLocal.xml') or
|
||||
join(path, pardir, 'AppConfig.xml'))
|
||||
|
||||
|
||||
# singleton
|
||||
monitor = EDLogs()
|
||||
|
Loading…
x
Reference in New Issue
Block a user