Skip to main content

A system functional flow simulation framework using Queuing Theory

Project description

PySysQ

PySysQ is a python package helping to implement discrete event simulations based on queueing theory. The package provides the following elements to create a simulation

Installation

pip install pysysq

Simulation Elements

1. SQSimulator

SQSimulator composes all the simulation elements and creates relationship between them. SQSimulator runs the simulation event loop.Each loop is counted as a single simulation time tick.

Properties

  • max_sim_time: Maximum number of loops the simulator will run.
  • time_step: the delay in seconds between two simulation loops.

2. SQClock

SQClock is a simulation object that ticks at specific interval on the simulation loops. Other Simulation Objects can make use of the SQClock object to generate self clock timing. The Simulation objects using the same clock object as their clock source will be operating in a synchronous manner.

Properties

  • clk_divider: the delay in seconds between two clock ticks with respect to the simulation loops.

3. SQPacketGenerator

SQPacketGenerator is a simulation object that generates packets at specific interval on the simulation loops.

Properties

  • clk: clock for timing packet generation.
  • output_q: the queue to which the generated packets will be pushed.
  • helper: the helper class is an object of SQPktGenHelper class.

4. SQFilter

SQFilter is a simulation object that filters packets based on the filter condition.

Properties

  • input_q: the queue from which the packets will be filtered.
  • output_q: the queue to which the filtered packets will be pushed.
  • helper: the helper is an object of SQFilterHelper class to configure the filter condition.
  • clk: the clock for timing the filter operation.

5. SQMerger

SQMerger is a simulation object that merges packets from multiple input queues to a single output queue.

Properties

  • input_qs: the list of input queues from which the packets will be merged.
  • output_q: the queue to which the merged packets will be pushed.
  • clk: The clock for timing the merge operation.

6. SQMux

SQMux is a simulation object that multiplexes packets from a single input queue to multiple output queues.

Properties

  • input_q: the queue from which the packets will be multiplexed.
  • output_qs: the list of output queues to which the multiplexed packets will be pushed.
  • clk: The clock for timing the multiplex operation.
  • helper: the helper is an object of SQMuxDemuxHelper class to configure the multiplexing operation.

7. SQDemux

SQDemux is a simulation object that demultiplexes packets from multiple input queues to a single output queue.

Properties

  • input_qs: the list of input queues from which the packets will be demultiplexed.
  • output_q: the queue to which the demultiplexed packets will be pushed.
  • clk: The clock for timing the demultiplex operation.
  • helper: the helper is an object of SQMuxDemuxHelper class to configure the demultiplexing operation.

8. SQPktProcessor

SQPktProcessor is a simulation object that processes packets with specific processing ticks.

Properties

  • input_q: the queue from which the packets will be processed.
  • output_q: the queue to which the processed packets will be pushed.
  • clk: The clock for timing the processing operation.
  • helper: the helper is an object of SQPktProcessorHelper class to configure the processing operation.

9. SQPktSink

SQPktSink is a simulation object that consumes and mark the termination of packets.

Properties

  • input_q: the queue from which the packets will be consumed.
  • clk: The clock for timing the consumption operation.

10. SQQueue

SQQueue is a simulation object that holds packets. Every simulation objects except SQClock and SQSimulator are connected to each other via Queues.

Properties

  • capacity: the maximum number of packets the queue can hold.

Helper Classes

1. SQPktGenHelper

SQPktGenHelper is a helper class for SQPacketGenerator to configure the packet generation operation. Inorder to configure the custom packet generation method , user can implement the abstract class and implement the methods The custom class object can be injected to the SQPacketGenerator to generate packets.

Methods

  • generate_pkts: A Python Generator method to generate packets.
  • set_params: The method is called by the packet generator to set the parametersneeded to generate packets The SQPacketGenerator class accepts variable parameters in its constructor which can be passed to the helper class set_params method.
  • set_owner: The method is called by the packet generator to inform the helper who owns the helper.

2. SQFilterHelper

SQFilterHelper is a helper class for SQFilter to configure the filter operation. Inorder to configure the custom filter method , user can implement the abstract class and implement the methods The custom class object can be injected to the SQFilter to filter packets.

Methods

  • filter(pkt): This method accepts a packet object and return a value indicating if the packet is allowed to proceed further in simulation or not.
  • set_owner: The method is called by the filter to inform the helper who owns the helper.

3. SQMuxDemuxHelper

SQMuxDemuxHelper is a helper class for SQMux and SQDemux to configure the multiplexing and demultiplexing operation. Inorder to configure the custom multiplexing and demultiplexing method , user can implement the abstract class and implement the methods The custom class object can be injected to the SQMux and SQDemux to multiplex and demultiplex packets.

Methods

  • get_rx_q: This method helps to identify the SQMux object which is the input queue to be selected next for multiplexing.
  • set_owner: The method is called by the mux/demux to inform the helper who owns the helper.
  • get_tx_q(pkt): This method helps to identify the SQDemux object which is the output queue to be selected next for demultiplexing the incoming packet.

4. SQPktProcessorHelper

The SQPktProcessorHelper is a helper class for SQPktProcessor to configure the packet processing operation. Inorder to configure the custom packet processing method , user can implement the abstract class and implement the methods The custom class object can be injected to the SQPktProcessor to process packets.

Methods

  • get_processing_ticks(pkt): This method accepts a packet object and return the number of ticks required to process the packet.
  • set_owner: The method is called by the packet processor to inform the helper who owns the helper.
  • process_packet(pkt): This method accepts a packet object and process the packet. The method can also return metadata produced during the packet processing'

Configuring the Simulation

The Simulation can be configured via a Json File. An Example Json File can be found in the sq_sim_setup_generator/config folder. The below code can be used to generate the simulation setup class from the json metadata.

from pysysq import *
if __name__ == "__main__":
    sim_setup = SQSimSetupGen(json_file='path/to/json_file')
    sim_setup.generate(output_folder='output')

Configuring the Data Flow

Some times it is necessary to pass metadata generated by some simulation objects to another simulation object. In order to configure the data flow between simulation objects , the json file can specify the data flow elements. An example of data flow specification is shown below

 {
          "name": "Processor1",
          "type": "SQPktProcessor",
          "description": "Processor",
          "default_factory": true,
          "factory_method": "create_packet_processor",
          "plot": true,
          "data_flow": [
            {
              "data":[ "progress"],
              "destination": "Processor2"
            }
          ],
          "clk":"Clock",
          "input_q": "Pkt_q",
          "output_q": "Proc_q"
      }

In the above example the Processor1 object is configured to pass the progress metadata to the Processor2 object. The Processor2 can access the progress metadata by accessing the list member self.data_flow_map. The data_flow_map constains a list of SQMetadata objects which are updated based on the generated new values of the metadata.

SQMetadata

The SQMetadata class is a simple class that holds the metadata information. The class has the following properties

  • name: The name of the metadata
  • value: The value of the metadata
  • owner: The owner of the metadata In order to access the metadata in the destination object , the destination object can access the metadata by the following code
metadata = self.get_metadata_received(owner='Processor1',data_name='progress')
value = metadata.value

Running the Simulation

Once the Simulation setup is generated the simulation can be run by executing the simulation setup file generated.

python  simulator.py # The simulator.py is the file generated by the SQSimSetupGen class

Analysing Simulation Results

The PysysQ package provides a way to register properties from each of the Simulation Objects. The Package comes with some preconfigured properties for the above simulation objects. For example The SQPktProcessor comes inbuilt with the property load indicating the load on the PacketProcessor. The SQQueue comes inbuilt with the property pending_pkts indicating the number of packets pending in the queue.

The pysysq simulator samples the registered properties from the simulation objects at each simulation ticks. The information is stored in a statistics object. Later at the end of the simulation the statisitcs can be plotted in a graph using SQPlotter class. In order to enable plotting for an object set the plot property to true in the json file for the simulation object.

Adding new properties from helper classes.

In order to register a new property from the helper class , the helper class can first add a member attribute in the class then call the register_property method in the owner class to register the property.

from pysysq import *
class FilterHelper(SQFilterHelper):
    def __init__(self):
        self.filter_result = False
    def set_owner(self,owner):
        self.owner = owner
        self.owner.register_property(owner=self,name='filter_result')
    def filter(self,pkt):
        self.filter_result =! self.filter_result
        return self.filteer_result

Now if the plot property of the Filter object is set to true in the json at the end of simulation a plot of the Property value filter_result will be plotted against each simulation tick.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pysysq-0.0.5-py3-none-any.whl (48.6 kB view details)

Uploaded Python 3

File details

Details for the file pysysq-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: pysysq-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 48.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.12

File hashes

Hashes for pysysq-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ffc7d0384924dcb622874daaf4f1ff2ce8b586f29df6be3d52383a1f0b961672
MD5 8b35a7e3792c8b7c9bc0742cdb8c67db
BLAKE2b-256 06513e61c19accc6dcd3c26b8862f85d5d23eab2c2512aafc2fb7a1339cd06f5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page