Skip to content Skip to sidebar Skip to footer

Does Pydispatcher Run The Handler Function In A Background Thread?

Upon looking up event handler modules, I came across pydispatcher, which seemed beginner friendly. My use case for the library is that I want to send a signal if my queue size is o

Solution 1:

I've recently released the Akuanduba module, that may help you with this task. There's a single example on the repository that may help you understand how it works and it seems similar to what you want.

Anyway, I'll try to explain here a way of implementing your code with Akuanduba:

  • First you could make a data frame that would hold your queue:
# Mandatory importsfrom Akuanduba.core.messenger.macros import *
from Akuanduba.core.constants import *
from Akuanduba.core import NotSet, AkuandubaDataframe
# Your imports go here:from queue import Queue

classMyQueue (AkuandubaDataframe):

  def__init__(self, name):

    # Mandatory stuff
    AkuandubaDataframe.__init__(self, name)

    self.__queue = Queue ()

  defgetQueue (self):
    return self.__queue

  defputQueue (self, val):
    self.__queue.put(val)

  defgetQueueSize (self):
    return self.__queue.qsize()

  ## "toRawObj" method is a mandatory method that delivers a dict with the desired data# for file saving#deftoRawObj(self):
    d = {
          "Queue" : self.getQueue(),
          }
    return d
  • Then you could make a TriggerCondition that would check the queue size:
from Akuanduba.core import StatusCode, NotSet, StatusTrigger
from Akuanduba.core.messenger.macros import *
from Akuanduba.core import TriggerCondition
import time

classCheckQueueSize (TriggerCondition):

  def__init__(self, name, maxSize):

    TriggerCondition.__init__(self, name)
    self._name = name
    self._maxSize = maxSize

  definitialize(self):

    return StatusCode.SUCCESS

  defexecute (self):

    size = self.getContext().getHandler("MyQueue").getQueueSize()
    if (size > SIZE_THRESHOLD):
      return StatusTrigger.TRIGGERED
    else:
      return StatusTrigger.NOT_TRIGGERED

  deffinalize(self):

    return StatusCode.SUCCESS
  • Make a tool that would be your handler function:
# Mandatory importsfrom Akuanduba.core import AkuandubaTool, StatusCode, NotSet, retrieve_kw
# Your imports go here:classSampleTool(AkuandubaTool):

  def__init__(self, name, **kw):

    # Mandatory stuff
    AkuandubaTool.__init__(self, name)


  definitialize(self):

    # Lock the initialization. After that, this tool can not be initialized once again
    self.init_lock()
    return StatusCode.SUCCESS


  defexecute(self,context):

    ## DO SOMETHING HERE## Always return SUCCESSreturn StatusCode.SUCCESS

  deffinalize(self):
    self.fina_lock()
    return StatusCode.SUCCESS
  • And finally, make a main script in order to make it all work together:
# Akuanduba importsfrom Akuanduba.core import Akuanduba, LoggingLevel, AkuandubaTrigger
from Akuanduba import ServiceManager, ToolManager, DataframeManager

# This sample's importsimport MyQueue, CheckQueueSize, SampleTool

# Creating your handler
your_handler = SampleTool ("Your Handler's name")

# Creating dataframes
queue = MyQueue ("MyQueue")

# Creating trigger
trigger  = AkuandubaTrigger("Sample Trigger Name", triggerType = 'or')

# Append conditions and tools to trigger just adding them# Tools appended to the trigger will only run when trigger is StatusTrigger.TRIGGERED,# and will run in the order they've been appended
trigger += CheckQueueSize( "CheckQueueSize condition", MAX_QUEUE_SIZE )
trigger += your_handler

# Creating Akuanduba
manager = Akuanduba("Akuanduba", level=LoggingLevel.INFO)

# Appending tools## ToolManager += TOOL_1# ToolManager += TOOL_2#
ToolManager += trigger

# Apprending dataframes
DataframeManager += sampleDataframe

# Initializing 
manager.initialize()
manager.execute()
manager.finalize()

That way, you'd have clean and separated code.

Post a Comment for "Does Pydispatcher Run The Handler Function In A Background Thread?"