Exemplo n.º 1
0
 def shower():                                                           
    with cls(*args) as form:
       Monitor.Enter(cls)
       try:
          cls.newform = form
          Monitor.Pulse(cls)
       finally:
          Monitor.Exit(cls)
       def exception_handler(sender, event):
          log.handle_error(event.Exception)  
       Application.ThreadException +=\
          ThreadExceptionEventHandler(exception_handler)
       Application.Run(form) # start form on new App thread; blocks
Exemplo n.º 2
0
    def show_threadsafe(cls, *args):
        '''
      A threadsafe method for instantiating a new ComicForm on a NEW 
      Application thread, and then displaying it to the user.  The Application
      thread will shutdown and dispose automatically when the ComicForm is
      closed.  
      
      All given arguments will be passed to the new ComicForm's constructor.
      '''

        cls.newform = None

        def shower():
            with cls(*args) as form:
                Monitor.Enter(cls)
                try:
                    cls.newform = form
                    Monitor.Pulse(cls)
                finally:
                    Monitor.Exit(cls)

                def exception_handler(sender, event):
                    log.handle_error(event.Exception)
                Application.ThreadException +=\
                   ThreadExceptionEventHandler(exception_handler)
                Application.Run(form)  # start form on new App thread; blocks

        Monitor.Enter(cls)
        try:
            # starts a new thread, which will become the Application thread/ event
            # pump for the newly created ComicForm,
            Thread(ThreadStart(shower)).Start()
            Monitor.Wait(cls)
        finally:
            Monitor.Exit(cls)
        newform = cls.newform
        del cls.newform

        # make sure this method does not return until the newly created ComicForm
        # has actually been made visible and active.  see bug 139.
        def activate_form():
            # this call is probably not needed; the real trick here is that
            # invoking this method synchronously delays us until the form has
            # a nice, visible handle on-screen
            newform.Activate()

        utils.invoke(newform, activate_form, True)

        return newform
Exemplo n.º 3
0
 def submit(self, task):
    '''
    Submits the given task (a method handle) to this Scheduler, to be run on 
    the background thread. if the Scheduler is idle, the given task will be 
    run almost immediately.  If the Scheduler is busy, the given task will be 
    run as soon as the Scheduler finishes its current task, UNLESS a new task 
    is added before the given task has a chance to start.  In that case, the 
    new task will take the given task's place in line, and the given task will
    never be executed. 
    
    If this Scheduler has been shutdown, the given task will never be run.
    '''
     
    if task:
       Monitor.Enter(self)
       try:
          if self.task != self:
             # notice this replace any task that is waiting to be run
             self.task = task
          Monitor.Pulse(self)
       finally:
          Monitor.Exit(self)
Exemplo n.º 4
0
 def threadloop():
    task = None
    while task != self:
       try:
          Monitor.Enter(self)
          try:
             task = self.task
             if task != self:
                self.task = None
             if task is None:
                Monitor.Wait(self)
          finally:
             Monitor.Exit(self)
             
          if task != self and task is not None:
             task()
                   
       except Exception as ex:
          # slightly odd error handling, cause this thread should NEVER
          # die as the result of an exception!
          try: log.handle_error(ex) 
          except: pass
          task = None
Exemplo n.º 5
0
 def __enter__(self):
     Monitor.Enter(self.obj)
Exemplo n.º 6
0
 def __exit__(self, exc_type, exc_value, exc_tb):
     Monitor.Exit(self.obj)
 def __exit__(self, *args):
     Monitor.Exit(self.obj)