Skip to main content

Provides a thread safe resource pool

Project description

pyresourcepool

Github: https://github.com/bensonrodney/pyresourcepool

Simple thread-safe resource pool to wait and/or use a limited set of resources, where a resource is a python object.

An example use case, and the reason this module was created, is when there exists a queue of actions to be performed but on a limited number of resources. Workers take actions from the queue and pull resources from the resource pool, perform the action and return the resource to the pool. The worker then pulls the next action from the queue and another resource and this continues until there are no more actions in the queue.

Basically, you create a resource pool with a list of objects and then processes in multiple threads can use those resources and return them to the pool when finished.

Example usage:

from pyresourcepool.pyresourcepool import ResourcePool

# create a list of instances of "SomeObjectClass" class
objects = [SomeObjectClass() for o in range(10)]

# create the resrouce pool
rp = ResourcePool(objects)

# using an object would normally be done in some worker thread
# but for this example we'll just do it here
# Using the with block will wait for a resource to be available, return that
# resource and once the with block is exited, the resource will be returned
# to the pool.
with rp.get_resource() as obj:
    do_stuff_with_object(obj)

# at this point, outside the 'with' block, the object will have been
# returned to the object pool.

If a resource/object becomes invalid and should not be used again it can be removed from the pool with the pool's remove_resource(obj) method. An exception will be raised when the last resource is removed from the pool or when an attempt is made to get a resource from an empty pool.

Return-to-Pool Callbacks

You can also run a function or method on an object as it's being returned to the pool but do so in a way that doesn't hold up the consumer of the resource. You can set a callback when creating the pool or you can assign a callback onto the object before you return the resource. Callbacks attached to objects take precendence over the one set for the whole pool. The idea here is that if a resource needs to have some time consuming process run on it before it should be available in the pool again you can do so without having to make the process that is returning the resource wait for that return callback to complete. An example is shown below but the unit tests show in detail how this functionality can be used.

This example sets up all objects in the pool to run the callback each time they're returned to the pool. The second object obtained from the pool obj2 overrides the callback with the one specified, reset2. You have the option to specify a callback for the whole pool or a specific one for the object, or both keeping in mind that the object specific callback will take precendence over the pool callback.

def reset1(obj):
   some_time_consuming_process(obj)

def reset2(obj):
   some_different_time_consuming_process(obj)

rp = ResourcePool(objects, return_callback=reset1)

with rp.get_resource() as obj1:
    do_stuff_with_object(obj1)

with rp.get_resource() as obj2:
    obj2.resource_pool_return_callback = reset2()
    do_stuff_with_object(obj2)

NOTE: the resource_pool_return_callback attribute is removed from the object once it has been returned to the pool. If you need to run the object specific callback on the object again next time then you need to set that callback attribute again.

Project details


Download files

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

Source Distribution

PyResourcePool-0.1.12.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

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

PyResourcePool-0.1.12-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file PyResourcePool-0.1.12.tar.gz.

File metadata

  • Download URL: PyResourcePool-0.1.12.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.6.7

File hashes

Hashes for PyResourcePool-0.1.12.tar.gz
Algorithm Hash digest
SHA256 d17d517f8685d91989f9709fc2084c07da5c885cda68f72c4e27a62df55cc060
MD5 d8a63724f85faee90684858e008963b2
BLAKE2b-256 986cedf8b39764fe448b3b1c066a5857ae9fb8b863a894a9e69eb3394bc12ce4

See more details on using hashes here.

File details

Details for the file PyResourcePool-0.1.12-py3-none-any.whl.

File metadata

  • Download URL: PyResourcePool-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.6.7

File hashes

Hashes for PyResourcePool-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 858a4ba5e2aa190f0bc19136e2c67511373eb9c3512e9f3e5110fec1959d294b
MD5 caa8170f1966c49d3ac7465a2a613af6
BLAKE2b-256 df6aa7765eecc400afb3bfec3a823a11c85f4f6278d84b4a7cd34d3186a67c7b

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