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
|
import logging
import os
import sys
import threading
import time
import fsboot
from fsbc.paths import Paths
from fsbc.settings import Settings
from fsbc.system import windows, macosx
from fsbc.util import memoize
logger = logging.getLogger("APP")
class Application(object):
app_name = ""
app_version = ""
_instance = None
@classmethod
def instance(cls):
"""
:rtype : Application
"""
return cls._instance
@classmethod
def get_instance(cls):
"""
:deprecated
"""
return cls._instance
@classmethod
def get(cls):
"""
:deprecated
"""
return cls._instance
@classmethod
def set_instance(cls, instance):
"""
:type instance: Application
"""
if cls._instance:
raise RuntimeError("An application instance already exists")
# logger.warning("An application instance already exists")
# noinspection PyAttributeOutsideInit
cls._instance = instance
# Settings.instance().set_path(instance.get_settings_path())
def __init__(self, name="", version=""):
# if Application.instance is not None:
# raise Exception("An application instance already exists")
# Application.instance = self
self.stop_flag = False
self.name = name or Application.app_name
self.version = version or Application.app_version
self.__settings = None
self._data_dirs = None
Application.set_instance(self)
def __del__(self):
self.destroy()
def destroy(self):
self.stop()
if self == Application._instance:
Application._instance = None
def set_stop_flag(self):
self.stop_flag = True
def stop(self):
self.set_stop_flag()
def wait(self):
self.wait_for_threads()
@classmethod
def wait_for_threads(cls):
logger.debug("Application.wait_for_threads")
def get_threads():
result = []
for thread in threading.enumerate():
if thread.daemon:
continue
if not thread.is_alive():
continue
result.append(repr(thread))
return result
t_list = get_threads()
logger.debug(repr(t_list))
while len(t_list) > 1:
t_list_2 = get_threads()
if t_list_2 != t_list:
t_list = t_list_2
logger.debug(repr(t_list))
time.sleep(0.1)
def stopping(self):
return self.stop_flag
def run_in_main(self, function, *args, **kwargs):
raise NotImplementedError("Application.run_in_main")
# def timer(self, timeout, function, *args, **kwargs):
# raise NotImplementedError("Application.call_later")
@staticmethod
@memoize
def executable_dir():
return fsboot.executable_dir()
def cache_dir(self):
# FIXME:
return os.path.join(Paths.get_base_dir(), "Cache")
@memoize
def data_dirs(self):
if self._data_dirs is not None:
return self._data_dirs
data_dirs = []
base_dirs = []
if len(sys.argv) > 0:
script_dir = os.path.dirname(sys.argv[0])
base_dirs.append(os.path.join(script_dir, "share"))
data_dirs.append(self.executable_dir())
if windows:
base_dirs.append(os.path.join(self.executable_dir(), "share"))
elif macosx:
base_dirs.append(
os.path.join(self.executable_dir(), "..", "Resources", "share")
)
else:
# FIXME: $XDG_DATA_DIRS, $XDG_DATA_HOME
base_dirs.append(
os.path.normpath(
os.path.join(self.executable_dir(), "..", "share")
)
)
for dir_name in base_dirs:
data_dir = os.path.join(dir_name, self.name)
logger.debug("* checking for data dir %s", data_dir)
if os.path.exists(data_dir):
data_dirs.append(data_dir)
if macosx:
data_dir = os.path.join(self.executable_dir(), "..", "Resources", "Data")
if os.path.exists(data_dir):
data_dirs.append(data_dir)
self._data_dirs = data_dirs
logger.debug("data dirs: %s", repr(data_dirs))
return data_dirs
@memoize
def data_file(self, name):
"""Looks up an application data file in several places depending on
platform.
"""
for data_dir in self.data_dirs():
path = os.path.join(data_dir, name)
# print("- checking", path)
if os.path.exists(path):
return path
raise LookupError(name)
def get_settings_path(self):
logger.warning("Application.get_settings_path not implemented")
@property
def settings(self):
return Settings.instance()
def call_after(func, *args, **kwargs):
return Application.instance().run_in_main(func, *args, **kwargs)
class ApplicationInstanceProxy(object):
def __getattr__(self, name):
return getattr(Application.instance(), name)
def __setattr__(self, name, value):
raise Exception("not currently allowed to set attributes on app")
# return setattr(Application.instance(), name, value)
app = ApplicationInstanceProxy()
|