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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
#!/usr/bin/env python
#----------------------------------------------------------------
"""
This is a no-frills document display handler for the
GNUmed medical document database.
It knows nothing about the documents itself. All it does
is to let the user select a page to display and tries to
hand it over to an appropriate viewer.
For that it relies on proper mime type handling at the OS level.
"""
# $Source: /sources/gnumed/gnumed/gnumed/client/wxpython/gui/gmShowMedDocs.py,v $
__version__ = "$Revision: 1.71 $"
__author__ = "Karsten Hilbert <Karsten.Hilbert@gmx.net>"
#================================================================
import os.path, sys
import wx
from Gnumed.pycommon import gmLog, gmI18N
from Gnumed.wxpython import gmMedDocWidgets
_log = gmLog.gmDefLog
_log.Log(gmLog.lInfo, __version__)
#== classes for standalone use ==================================
if __name__ == '__main__':
_log.SetAllLogLevels(gmLog.lData)
from Gnumed.pycommon import gmLoginInfo, gmExceptions, gmCfg, gmGuiBroker
from Gnumed.business import gmXdtObjects, gmXdtMappings, gmDemographicRecord, gmPerson
from Gnumed.wxpython import gmGuiHelpers
wxID_btn_quit = wx.NewId()
_cfg = gmCfg.gmDefCfgFile
class cStandalonePanel(wx.Panel):
def __init__(self, parent, id):
# get patient from file
if self.__get_pat_data() is None:
raise gmExceptions.ConstructorError, "Cannot load patient data."
# set up database connectivity
auth_data = gmLoginInfo.LoginInfo(
user = _cfg.get('database', 'user'),
password = _cfg.get('database', 'password'),
host = _cfg.get('database', 'host'),
port = _cfg.get('database', 'port'),
database = _cfg.get('database', 'database')
)
backend = gmPG.ConnectionPool(login = auth_data)
# mangle date of birth into ISO8601 (yyyymmdd) for Postgres
cooked_search_terms = {
'dob': '%s%s%s' % (self.__xdt_pat['dob year'], self.__xdt_pat['dob month'], self.__xdt_pat['dob day']),
'lastnames': self.__xdt_pat['last name'],
'gender': self.__xdt_pat['gender'],
'firstnames': self.__xdt_pat['first name']
}
# find matching patient IDs
searcher = gmPerson.cPatientSearcher_SQL()
patient_ids = searcher.get_patient_ids(search_dict = cooked_search_terms)
if patient_ids is None or len(patient_ids) == 0:
gmGuiHelpers.gm_show_error(
aMessage = _('This patient does not exist in the document database.\n"%s %s"') % (self.__xdt_pat['first name'], self.__xdt_pat['last name']),
aTitle = _('searching patient')
)
_log.Log(gmLog.lPanic, self.__xdt_pat['all'])
raise gmExceptions.ConstructorError, "Patient from XDT file does not exist in database."
# ambigous ?
if len(patient_ids) != 1:
gmGuiHelpers.gm_show_error(
aMessage = _('Data in xDT file matches more than one patient in database !'),
aTitle = _('searching patient')
)
_log.Log(gmLog.lPanic, self.__xdt_pat['all'])
raise gmExceptions.ConstructorError, "Problem getting patient ID from database. Aborting."
try:
gm_pat = gmPerson.gmCurrentPatient(aPKey = patient_ids[0])
except:
# this is an emergency
gmGuiHelpers.gm_show_error(
aMessage = _('Cannot load patient from database !\nAborting.'),
aTitle = _('searching patient')
)
_log.Log(gmLog.lPanic, 'Cannot access patient [%s] in database.' % patient_ids[0])
_log.Log(gmLog.lPanic, self.__xdt_pat['all'])
raise
wx.Panel.__init__(self, parent, id, wx.DefaultPosition, wx.DefaultSize)
self.SetTitle(_("stored medical documents"))
self.__do_layout()
self.tree.refresh()
self.tree.SelectItem(self.tree.root)
self.Layout()
#--------------------------------------------------------
def __do_layout(self):
# make patient panel
gender = gmDemographicRecord.map_gender_gm2long[gmXdtMappings.map_gender_xdt2gm[self.__xdt_pat['gender']]]
self.pat_panel = wx.StaticText(
id = -1,
parent = self,
label = "%s %s (%s), %s.%s.%s" % (self.__xdt_pat['first name'], self.__xdt_pat['last name'], gender, self.__xdt_pat['dob day'], self.__xdt_pat['dob month'], self.__xdt_pat['dob year']),
style = wx.ALIGN_CENTER
)
self.pat_panel.SetFont(wx.Font(25, wx.SWISS, wx.NORMAL, wx.NORMAL, 0, ""))
# make document tree
self.tree = gmMedDocWidgets.cDocTree(self, -1)
# buttons
btn_quit = wx.Button(
parent = self,
id = wxID_btn_quit,
label = _('Quit')
)
wx.EVT_BUTTON (btn_quit, wxID_btn_quit, self.__on_quit)
szr_buttons = wx.BoxSizer(wx.HORIZONTAL)
szr_buttons.Add(btn_quit, 0, wx.ALIGN_CENTER_VERTICAL, 1)
szr_main = wx.BoxSizer(wx.VERTICAL)
szr_main.Add(self.pat_panel, 0, wx.EXPAND, 1)
szr_main.Add(self.tree, 1, wx.EXPAND, 9)
szr_main.Add(szr_buttons, 0, wx.EXPAND, 1)
self.SetAutoLayout(1)
self.SetSizer(szr_main)
szr_main.Fit(self)
#--------------------------------------------------------
def __get_pat_data(self):
"""Get data of patient for which to retrieve documents.
"""
# FIXME: error checking
pat_file = os.path.abspath(os.path.expanduser(_cfg.get("viewer", "patient file")))
# FIXME: actually handle pat_format, too
pat_format = _cfg.get("viewer", "patient file format")
# get patient data from BDT file
try:
self.__xdt_pat = gmXdtObjects.xdtPatient(anXdtFile = pat_file)
except:
_log.LogException('Cannot read patient from xDT file [%s].' % pat_file, sys.exc_info())
gmGuiHelpers.gm_show_error(
aMessage = _('Cannot load patient from xDT file\n[%s].') % pat_file,
aTitle = _('loading patient from xDT file')
)
return None
return 1
#--------------------------------------------------------
def __on_quit(self, evt):
app = wx.GetApp()
app.ExitMainLoop()
#== classes for plugin use ======================================
else:
from Gnumed.wxpython import gmPlugin, images_Archive_plugin, images_Archive_plugin1
wxID_TB_BTN_show_page = wx.NewId()
class gmShowMedDocs(gmPlugin.cNotebookPlugin):
"""Plugin to encapsulate document tree."""
tab_name = _("Documents")
def name (self):
return gmShowMedDocs.tab_name
#--------------------------------------------------------
def GetWidget (self, parent):
self._widget = gmMedDocWidgets.cSelectablySortedDocTreePnl(parent, -1)
return self._widget
#--------------------------------------------------------
def MenuInfo (self):
return ('tools', _('Show &archived documents'))
#--------------------------------------------------------
def can_receive_focus(self):
# need patient
if not self._verify_patient_avail():
return None
return 1
#--------------------------------------------------------
def _on_raise_by_signal(self, **kwds):
if not gmPlugin.cNotebookPlugin._on_raise_by_signal(self, **kwds):
return False
if kwds['sort_mode'] == 'review':
self._widget._on_sort_by_review_selected(None)
return True
#--------------------------------------------------------
def populate_toolbar (self, tb, widget):
tool1 = tb.AddTool(
wxID_TB_BTN_show_page,
images_Archive_plugin.getreportsBitmap(),
shortHelpString=_("show document"),
isToggle=False
)
# wx.EVT_TOOL(tb, wxID_TB_BTN_show_page, gmMedDocWidgets.cDocTree._on_activate)
wx.EVT_TOOL(tb, wxID_TB_BTN_show_page, self._widget._doc_tree.display_selected_part)
tb.AddControl(wx.StaticBitmap(
tb,
-1,
images_Archive_plugin.getvertical_separator_thinBitmap(),
wx.DefaultPosition,
wx.DefaultSize
))
#================================================================
# MAIN
#----------------------------------------------------------------
if __name__ == '__main__':
_log.Log (gmLog.lInfo, "starting display handler")
if _cfg is None:
_log.Log(gmLog.lErr, "Cannot run without config file.")
sys.exit("Cannot run without config file.")
# catch all remaining exceptions
try:
application = wx.PyWidgetTester(size=(640,480))
application.SetWidget(cStandalonePanel,-1)
application.MainLoop()
except StandardError:
_log.LogException("unhandled exception caught !", sys.exc_info(), 1)
# but re-raise them
raise
_log.Log (gmLog.lInfo, "closing display handler")
#================================================================
# $Log: gmShowMedDocs.py,v $
# Revision 1.71 2007/06/10 10:16:05 ncq
# - properly display doc from toolbar tool
#
# Revision 1.70 2007/03/08 11:54:44 ncq
# - cleanup
#
# Revision 1.69 2006/11/07 00:35:28 ncq
# - cleanup
#
# Revision 1.68 2006/10/25 07:23:30 ncq
# - no gmPG no more
#
# Revision 1.67 2006/05/28 16:17:58 ncq
# - cleanup
# - populate now handled by plugin base class already
#
# Revision 1.66 2006/05/20 18:56:03 ncq
# - use receive_focus() interface
#
# Revision 1.65 2006/05/12 22:02:25 ncq
# - override _on_raise_by_signal()
#
# Revision 1.64 2006/05/07 15:39:18 ncq
# - move plugin tree panel to wxpython/gmMedDocWidgets.py where it belongs
#
# Revision 1.63 2005/10/30 22:09:03 shilbert
# - more wx2.6-ification
#
# Revision 1.62 2005/09/28 21:27:30 ncq
# - a lot of wx2.6-ification
#
# Revision 1.61 2005/09/26 18:01:52 ncq
# - use proper way to import wx26 vs wx2.4
# - note: THIS WILL BREAK RUNNING THE CLIENT IN SOME PLACES
# - time for fixup
#
# Revision 1.60 2005/09/24 09:17:29 ncq
# - some wx2.6 compatibility fixes
#
# Revision 1.59 2005/01/31 10:37:26 ncq
# - gmPatient.py -> gmPerson.py
#
# Revision 1.58 2004/10/17 15:53:55 ncq
# - cleanup
#
# Revision 1.57 2004/10/17 00:05:36 sjtan
#
# fixup for paint event re-entry when notification dialog occurs over medDocTree graphics
# area, and triggers another paint event, and another notification dialog , in a loop.
# Fixup is set flag to stop _repopulate_tree, and to only unset this flag when
# patient activating signal gmMedShowDocs to schedule_reget, which is overridden
# to include resetting of flag, before calling mixin schedule_reget.
#
# Revision 1.56 2004/10/14 12:15:21 ncq
# - cleanup
#
# Revision 1.55 2004/09/19 15:12:26 ncq
# - cleanup
#
# Revision 1.54 2004/09/13 21:12:36 ncq
# - convert to use cRegetMixin so it plays really nice with xdt connector
#
# Revision 1.53 2004/08/04 17:16:02 ncq
# - wx.NotebookPlugin -> cNotebookPlugin
# - derive cNotebookPluginOld from cNotebookPlugin
# - make cNotebookPluginOld warn on use and implement old
# explicit "main.notebook.raised_plugin"/ReceiveFocus behaviour
# - ReceiveFocus() -> receive_focus()
#
# Revision 1.52 2004/07/18 20:30:54 ncq
# - wxPython.true/false -> Python.True/False as Python tells us to do
#
# Revision 1.51 2004/07/15 20:42:18 ncq
# - support if-needed updates again
#
# Revision 1.50 2004/07/15 07:57:21 ihaywood
# This adds function-key bindings to select notebook tabs
# (Okay, it's a bit more than that, I've changed the interaction
# between gmGuiMain and gmPlugin to be event-based.)
#
# Oh, and SOAPTextCtrl allows Ctrl-Enter
#
# Revision 1.49 2004/06/29 22:58:43 ncq
# - add missing gmMedDocWidgets. qualifiers
#
# Revision 1.48 2004/06/26 23:39:34 ncq
# - factored out widgets for re-use
#
# Revision 1.47 2004/06/20 16:50:51 ncq
# - carefully fool epydoc
#
# Revision 1.46 2004/06/20 06:49:21 ihaywood
# changes required due to Epydoc's OCD
#
# Revision 1.45 2004/06/17 11:43:18 ihaywood
# Some minor bugfixes.
# My first experiments with wxGlade
# changed gmPhraseWheel so the match provider can be added after instantiation
# (as wxGlade can't do this itself)
#
# Revision 1.44 2004/06/13 22:31:49 ncq
# - gb['main.toolbar'] -> gb['main.top_panel']
# - self.internal_name() -> self.__class__.__name__
# - remove set_widget_reference()
# - cleanup
# - fix lazy load in _on_patient_selected()
# - fix lazy load in ReceiveFocus()
# - use self._widget in self.GetWidget()
# - override populate_with_data()
# - use gb['main.notebook.raised_plugin']
#
# Revision 1.43 2004/06/01 07:55:46 ncq
# - use cDocumentFolder
#
# Revision 1.42 2004/04/16 00:36:23 ncq
# - cleanup, constraints
#
# Revision 1.41 2004/03/25 11:03:23 ncq
# - getActiveName -> get_names
#
# Revision 1.40 2004/03/20 19:48:07 ncq
# - adapt to flat id list from get_patient_ids
#
# Revision 1.39 2004/03/20 18:30:54 shilbert
# - runs standalone again
#
# Revision 1.38 2004/03/19 21:26:15 shilbert
# - more module import fixes
#
# Revision 1.37 2004/03/19 08:29:21 ncq
# - fix spurious whitespace
#
# Revision 1.36 2004/03/19 08:08:41 ncq
# - fix import of gmLoginInfo
# - remove dead code
#
# Revision 1.35 2004/03/07 22:19:26 ncq
# - proper import
# - re-fix gmTmpPatient -> gmPatient (fallout from "Syan's commit")
#
# Revision 1.34 2004/03/06 21:52:02 shilbert
# - adapted code to new API since __set/getitem is gone
#
# Revision 1.33 2004/02/25 09:46:23 ncq
# - import from pycommon now, not python-common
#
# Revision 1.32 2004/01/06 23:19:52 ncq
# - use whoami
#
# Revision 1.31 2003/11/17 10:56:40 sjtan
#
# synced and commiting.
#
# Revision 1.30 2003/11/16 11:53:32 shilbert
# - fixed stanalone mode
# - makes use of toolbar
#
# Revision 1.29 2003/10/26 01:36:14 ncq
# - gmTmpPatient -> gmPatient
#
# Revision 1.28 2003/08/27 12:31:41 ncq
# - some cleanup
#
# Revision 1.27 2003/08/24 12:50:20 shilbert
# - converted from __show_error() to gmGUIHelpers.gm_show_error()
#
# Revision 1.26 2003/06/29 15:21:22 ncq
# - add can_receive_focus() on patient not selected
#
# Revision 1.25 2003/06/26 21:41:51 ncq
# - fatal->verbose
#
# Revision 1.24 2003/06/19 15:31:37 ncq
# - cleanup, page change vetoing
#
# Revision 1.23 2003/04/28 12:11:30 ncq
# - refactor name() to not directly return _(<name>)
#
# Revision 1.22 2003/04/20 15:39:36 ncq
# - call_viewer was moved to gmMimeLib
#
# Revision 1.21 2003/04/19 15:01:33 ncq
# - we need import re both standalone and plugin
#
# Revision 1.20 2003/04/18 22:34:44 ncq
# - document context menu, mainly for descriptions, currently
#
# Revision 1.19 2003/04/18 17:45:05 ncq
# - add quit button
#
# Revision 1.18 2003/04/18 16:40:04 ncq
# - works again as standalone
#
# Revision 1.17 2003/04/04 20:49:22 ncq
# - make plugin work with gmCurrentPatient
#
# Revision 1.16 2003/04/01 12:31:53 ncq
# - we can't use constant reference self.patient if we don't register interest
# in gmSignals.patient_changed, hence, acquire patient when needed
#
# Revision 1.15 2003/03/25 19:57:09 ncq
# - add helper __show_error()
#
# Revision 1.14 2003/03/23 02:38:46 ncq
# - updated Hilmar's fix
#
# Revision 1.13 2003/03/02 17:03:19 ncq
# - make sure metadata is retrieved
#
# Revision 1.12 2003/03/02 11:13:01 hinnef
# preliminary fix for crash on ReceiveFocus()
#
# Revision 1.11 2003/02/25 23:30:31 ncq
# - need sys.exc_info() in LogException
#
# Revision 1.10 2003/02/24 23:14:53 ncq
# - adapt to get_patient_ids actually returning a flat list of IDs now
#
# Revision 1.9 2003/02/21 13:54:17 ncq
# - added even more likely and unlikely user warnings
#
# Revision 1.8 2003/02/20 01:25:18 ncq
# - read login data from config file again
#
# Revision 1.7 2003/02/19 15:19:43 ncq
# - remove extra print()
#
# Revision 1.6 2003/02/18 02:45:21 ncq
# - almost fixed standalone mode again
#
# Revision 1.5 2003/02/17 16:10:50 ncq
# - plugin mode seems to be fully working, actually calls viewers on files
#
# Revision 1.4 2003/02/15 14:21:49 ncq
# - on demand loading of Manual
# - further pluginization of showmeddocs
#
# Revision 1.3 2003/02/11 18:26:16 ncq
# - fix exp_base buglet in OnActivate
#
# Revision 1.2 2003/02/09 23:41:09 ncq
# - reget doc list on receiving focus thus being able to react to selection of a different patient
#
# Revision 1.1 2003/02/09 20:07:31 ncq
# - works as a plugin, patient hardcoded, though
#
# Revision 1.8 2003/01/26 17:00:18 ncq
# - support chunked object retrieval
#
# Revision 1.7 2003/01/25 00:21:42 ncq
# - show nr of bytes on object in metadata :-)
#
|