/usr/share/pyshared/cviewer/app.py is in connectomeviewer 2.1.0-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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | """ The Connectome Viewer Envisage application with Plugins
"""
# Copyright (C) 2009-2010, Ecole Polytechnique Federale de Lausanne (EPFL) and
# University Hospital Center and University of Lausanne (UNIL-CHUV)
#
# Modified BSD License
# Modified version. Adapted from the MayaVi2 application
# Standard library imports
import sys
import os.path
import os
# Enthought library imports
from traits.api import (HasTraits, Instance, Int, on_trait_change)
from traits.etsconfig.api import ETSConfig
from apptools.logger.api import LogFileHandler, FORMATTER
# ConnectomeViewer imports
from cviewer.cviewer_workbench_application import CViewerWorkbenchApplication
from cviewer.plugins.ui.preference_manager import preference_manager
from cviewer.info import version as ver
# Logger imports
import logging, logging.handlers
logger = logging.getLogger('root')
logger_envisage = logging.getLogger('envisage.plugin')
logger_ipython = logging.getLogger('envisage.plugins.ipython_shell.view.ipython_shell_view')
logger_pyface = logging.getLogger('pyface.ui.wx.workbench.editor_set_structure_handler')
logger_pyfaceview = logging.getLogger('pyface.workbench.i_view')
def setup_logger(logger, fname, stream=True, mode=logging.ERROR):
"""Setup a log file and the logger.
Parameters
----------
fname : string
File name the logger should use.
stream : bool
Add a stream handler.
mode : logging type
The logging mode of the stream handler.
"""
if not os.path.isabs(fname):
path = os.path.join(ETSConfig.application_data, fname)
else:
path = fname
create_file_handler = True
# check if path exists
dirname = os.path.dirname(path)
if not(os.path.exists(dirname)):
try:
os.makedirs(dirname)
except OSError:
#logger.error('Can not create path to store the log file.')
create_file_handler = False
# check if path is writable
if not os.access(dirname, os.W_OK):
print "==========================================="
print "The application data path is not writable: ", dirname
print "Please remove it with:"
print "sudo rm -rf " + dirname
print "and re-run the Connectome Viewer with:"
print "connectomeviewer -v"
print "==========================================="
raise Exception("PermissionError")
# check if files exists, if not open it
if not(os.path.exists(path)):
# XXX add try catch
file = open(path, 'w')
file.close()
# setting the logging level
logger.setLevel(mode)
# create formatter
formatter = logging.Formatter("%(levelname)s - %(name)s - %(message)s")
# old: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
if stream:
# create console handler and set level to debug
ch = logging.StreamHandler()
ch.setLevel(mode)
# add formatter to ch
ch.setFormatter(formatter)
# add ch to logger
logger.addHandler(ch)
if create_file_handler:
filehandler = logging.handlers.RotatingFileHandler(path, maxBytes=1000000, backupCount=4)
filehandler.setLevel(mode)
filehandler.setFormatter(formatter)
logger.addHandler(filehandler)
logger_envisage.addHandler(filehandler)
# does this fix the
# no handlers could be found for logger "envisage.plugin"
logger_ipython.addHandler(filehandler)
logger_pyface.addHandler(filehandler)
logger_pyfaceview.addHandler(filehandler)
import datetime
import sys
import platform
dt = datetime.datetime.now()
outdate = dt.strftime("%A, %d. %B %Y %I:%M%p")
logger.info("*"*5)
if create_file_handler:
logger.info("logfile: %s" % os.path.abspath(path))
logger.info("cviewer version: %s " % ver)
# logger.info("cviewer executable: %s " % str(__main__))
logger.info("python executable: %s" % sys.executable)
logger.info("python version: %s" % sys.version.replace('\n', ''))
logger.info("uname: %s" % ' '.join(platform.uname()))
logger.info("distribution: %s" % ' '.join(platform.linux_distribution()))
logger.info("execution date and time: %s" % outdate)
logger.info("*"*5)
def get_non_gui_plugin_classes():
"""Get list of basic mayavi plugin classes that do not add any views or
actions."""
from envisage.core_plugin import CorePlugin
from envisage.ui.workbench.workbench_plugin import WorkbenchPlugin
from tvtk.plugins.scene.scene_plugin import ScenePlugin
from mayavi.plugins.mayavi_plugin import MayaviPlugin
plugins = [CorePlugin,
WorkbenchPlugin,
MayaviPlugin,
ScenePlugin,
]
return plugins
def get_non_gui_plugins():
"""Get list of basic mayavi plugins that do not add any views or
actions."""
return [cls() for cls in get_non_gui_plugin_classes()]
def get_plugin_classes():
"""Get list of default plugin classes to use for Connectome Viewer."""
# Force the selection of a toolkit:
from traitsui.api import toolkit
toolkit()
from traits.etsconfig.api import ETSConfig
try_use_ipython = preference_manager.cviewerui.useipython
use_ipython = False
if ETSConfig.toolkit == 'wx' and try_use_ipython:
try:
# If the right versions of IPython, EnvisagePlugins and
# Pyface are not installed, this import will fail.
from envisage.plugins.ipython_shell.view.ipython_shell_view \
import IPythonShellView
use_ipython = True
except: pass
if use_ipython:
from envisage.plugins.ipython_shell.ipython_shell_plugin import \
IPythonShellPlugin
PythonShellPlugin = IPythonShellPlugin
else:
from envisage.plugins.python_shell.python_shell_plugin import PythonShellPlugin
from tvtk.plugins.scene.ui.scene_ui_plugin import SceneUIPlugin
from cviewer.plugins.text_editor.text_editor_plugin import TextEditorPlugin
plugins = get_non_gui_plugin_classes()
plugins.extend([
SceneUIPlugin,
TextEditorPlugin,
PythonShellPlugin,
])
return plugins
def get_plugins():
"""Get list of default plugins to use for Mayavi."""
return [cls() for cls in get_plugin_classes()]
def get_cviewer_plugins():
""" Get list of Connectome Viewer plugins """
plugins = []
logger.info('Plugins')
logger.info('*******')
# from cviewer.plugins.cff.cff_plugin import ConnectomeFilePlugin
# # add ConnectomeFile plugin
# plugins.insert(0, ConnectomeFilePlugin())
# logger.info('Added ConnectomeFilePlugin')
from cviewer.plugins.cff2.cff_plugin import ConnectomeFile2Plugin
# add ConnectomeFile plugin
plugins.insert(0, ConnectomeFile2Plugin())
logger.info('Added ConnectomeFile2Plugin')
#from cviewer.plugins.analysis.analysis_ui_plugin import AnalysisUIPlugin
# add ConnectomeAnalysis UI plugin
#plugins.insert(0, AnalysisUIPlugin())
#logger.info('Added AnalysisUIPlugin')
from cviewer.plugins.ui.cviewer_ui_plugin import CViewerUIPlugin
# add ConnectomeViewerUserInterface plugin
plugins.insert(0, CViewerUIPlugin())
logger.info('Added CViewerUIPlugin')
# add Bindings plugin
from cviewer.plugins.bindings.bindings_plugin import BindingsPlugin
plugins.append(BindingsPlugin())
logger.info('Added BindingsPlugin')
# add sLORETA Converter plugin
from cviewer.plugins.codeoracle.oracle_plugin import OraclePlugin
plugins.append(OraclePlugin())
logger.info('Added Oracle Plugin')
# add NBS plugin
from cviewer.plugins.nbs.nbs_plugin import NBSPlugin
plugins.append(NBSPlugin())
logger.info('Added Network Based Statistics (NBS) Plugin')
# add cmp
#try:
# cmp_works = True
# from cviewer.plugins.cmp.cmp_plugin import CMPPlugin
# except ImportError:
# cmp_works = False
# if cmp_works:
# plugins.append(CMPPlugin())
# logger.info('Added Connectome Mapper Plugin')
return plugins
###########################################################################
# `CViewer` class.
###########################################################################
class CViewer(HasTraits):
"""The Connectome Viewer application class. """
# The main envisage application.
application = Instance('envisage.ui.workbench.api.WorkbenchApplication')
# The MayaVi Script instance.
script = Instance('mayavi.plugins.script.Script')
# The logging mode.
log_mode = Int(logging.ERROR, desc='the logging mode to use')
def main(self, argv=None):
"""The main application is created and launched here.
Parameters
----------
argv : list of strings
The list of command line arguments. The default is `None`
where no command line arguments are parsed. To support
command line arguments you can pass `sys.argv[1:]`.
log_mode :
The logging mode to use.
"""
# parse any cmd line args.
if argv is None:
argv = []
self.parse_command_line(argv)
# setup logging
self.setup_logger()
# add all default plugins
plugins = get_plugins()
# add ConnectomeViewer plugins
plugins = get_cviewer_plugins() + plugins
# create the application
prefs = preference_manager.preferences
# create the application object
self.application = CViewerWorkbenchApplication(plugins=plugins,
preferences=prefs)
# start the application.
self.application.run()
logger.info('We hope you enjoyed using the Connectome Viewer!')
def setup_logger(self):
""" Setting up the root logger """
from traits.etsconfig.api import ETSConfig
path = os.path.join(ETSConfig.application_data,
'ch.connectome.viewer', 'cviewer.log')
path = os.path.abspath(path)
setup_logger(logger, path, mode=self.log_mode)
def parse_command_line(self, argv):
"""Parse command line options.
Parameters
----------
- argv : `list` of `strings`
The list of command line arguments.
"""
from optparse import OptionParser
usage = "usage: %prog [options]"
parser = OptionParser(usage)
(options, args) = parser.parse_args(argv)
def run(self):
"""This function is called after the GUI has started.
"""
pass
def main(argv=None):
""" Helper to start up the Connectome Viewer application. """
m = CViewer()
m.main(argv)
return m
|