Simple interceptor related to concepts of AOP
Project description
It is a simple tool that can be used to intercept methods of classes to apply advices on them.
Installation
pip install SimpleInterceptor
Please note, pip search SimpleInterceptor doesn’t return anything. Alternatively, the package can be cloned or downloaded, extracted and following can be run
Install using python setup.py install
Run Tests using python setup.py test
Example
If we were to implement a bank transaction logic, it could be as simple as this.
class BankTransaction(object): def transfer(self, amt): print "Transferring Rs. %d" % amt
And transaction would be done this simply as well.
obj = BankTransaction() obj.transfer(1000)
Now, there could be various other concerns related to this requirement - logging, checking if balance is available, notifying user about the transaction status etc. We could had written all of this logic there. But in order to modularise it better or separate the cross-cutting concerns, we follow principles of AOP and apply the other concerns(advices) by intercepting the core method. This simple library is intended to do this.
Say the above concerns are implemented this trivially.
def start_transaction_log(*args, **kwargs): print "Starting transaction" def check_balance_available(*args, **kwargs): print "Balance check logic says Transaction allowed" def send_notification(*args, **kwargs): print "Transaction successful"
Now, in order to apply these logics to the transfer method, we would need to create an aspect and decorate the BankTransaction class with the intercept decorator, featured by the tool, as shown under. Instead of using transfer we could had used any regex pattern to match the method name. This allows to intercept multiple methods using the same pattern.
aspects = dict() aspects[r'transfer'] = dict( before=start_transaction_log, around_before=check_balance_available, after_success=send_notification) from interceptor import intercept BankTransaction = intercept(aspects)(BankTransaction) obj = BankTransaction() obj.transfer(1000)
Advices honoured
The tool accepts following self-explanatory advices. before logic is run before around_before and around_after is run before after_success. after_exc can be used to write exception logic. around_after doesn’t run in case of exception.
before
around_before
after_exc
around_after
after_success
after_finally
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file SimpleInterceptor-0.1.tar.gz
.
File metadata
- Download URL: SimpleInterceptor-0.1.tar.gz
- Upload date:
- Size: 7.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9a4736c53ad7b593c2811b7dfd17a87e38e9455f49b54cdb363569dd3dfcb59 |
|
MD5 | d4bde9d48b7c3903e8468c313d607f3a |
|
BLAKE2b-256 | 92e14835bd4296636614fbbd0f2a5b111f19aed1aed78cc238373e6efe715fd9 |