Skip to content

A Python script that demonstrates the dynamic injection of decorators into classes within a Python source file.

License

Notifications You must be signed in to change notification settings

Dor-sketch/MetaDecorator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MetaDecorator: Python Dynamic Decorator Injection 🧙‍♂️🔧

This Python script dynamically injects decorators into class methods of a given Python file, showcasing metaprogramming, regular expression parsing, and dynamic code execution. The initial version of this script was developed as part of a university course assignment for Defensive System-Programming (20937) at the Open University of Israel. The initial version of this script received a perfect score of 100 from the course. Since then, the code has been extensively modified and improved to enhance its functionality and applicability.


Table of Contents


Disclaimer

This script modifies source files and executes code dynamically. It should be used with caution and only with files in a safe and controlled environment. The script is provided as-is, and the author takes no responsibility for any damage or loss caused by its usage. Always back up your files before running the script. See the License section for more information.

Background

Metaprogramming is a powerful technique in Python that allows you to modify the behavior of classes and functions at runtime. One common use case of metaprogramming is to inject decorators into class methods dynamically. Decorators are a powerful feature in Python that allows you to add functionality to functions or methods without altering their original code. By injecting decorators into class methods dynamically, you can add cross-cutting concerns such as logging, caching, security checks, or performance profiling to your classes without cluttering the original codebase.

This script leverages Python's metaclass mechanism to extend class functionalities by adding a metaclass to each class in a given Python file. The metaclass then applies a user-provided code snippet as a decorator to all methods of these classes. The script uses regular expressions to identify and manipulate class definitions within a Python file and dynamically executes user-provided Python code within the context of the program.

Key Features

  • Dynamic Decorator Injection: Automatically injects decorators into class methods without altering the original method code.
  • Metaclass Utilization: Leverages Python's metaclass mechanism to extend class functionalities.
  • Regular Expression Parsing: Uses regular expressions to identify and manipulate class definitions within a Python file.
  • Dynamic Code Execution: Executes user-provided Python code dynamically within the context of the program.
  • User-Friendly Interface: Provides a simple and intuitive interface for the user to interact with the script, including predefined presets for easy testing.

Usage

The script prompts the user to input the name of a Python file and a snippet of Python code. It then modifies the specified file by adding a metaclass to each class, which in turn applies the provided code snippet as a decorator to all methods of these classes.

Steps

  1. Clone the repository.
  2. Run the script in a Python environment.
  3. Follow the on-screen prompts to specify the target Python file and the code snippet for injection.

Example Applications

Two examples are included in the repository: fruit.py and bank.py. The user can input the name of either file to see the script in action.

  1. Automated Debugging and Tracing: You can use this mechanism to automatically add debugging or tracing outputs to each method of your classes, which logs method calls, arguments, and return values. This would be incredibly useful in a development or testing environment where you want to trace the execution flow without cluttering the codebase with log statements. Example Usage:

    code_to_add = r'''
    import logging
    logging.basicConfig(level=logging.DEBUG)
    logger = logging.getLogger(__name__)
    logger.debug(f"Called {__name__}.{original_function.__name__} with args={args} kwargs={kwargs}")
    '''
    import_meta_class("my_module.py", code_to_add)
  2. Performance Profiling: You can use this mechanism to automatically add performance profiling to each method of your classes, which logs the time taken to execute each method. This would be incredibly useful in a performance optimization scenario where you want to identify bottlenecks in your codebase.

    Example Usage:

    code_to_add = r'''
    import time
    start_time = time.time()
    result = original_function(*args, **kwargs)
    end_time = time.time()
    print(f"Execution of {__name__}.{original_function.__name__} took {end_time - start_time} seconds")
    return result
    '''
  3. Security and Access Control: You can use this mechanism to automatically add security checks or access control to each method of your classes, which verifies the user's permissions before executing the method. This would be incredibly useful in a security-sensitive application where you want to restrict access to certain methods based on user roles or permissions.

    Example Usage:

    code_to_add = r'''
    if not user.has_permission(__name__, original_function.__name__):
        raise PermissionError(f"User {user} does not have permission to access {__name__}.{original_function.__name__}")
    '''
  4. Data Validation and Sanitization: You can use this mechanism to automatically add data validation or sanitization to each method of your classes, which ensures that the input data is valid and sanitized before executing the method. This would be incredibly useful in a data-sensitive application where you want to prevent SQL injection or other security vulnerabilities.

    Example Usage:

    code_to_add = r'''
    for arg in args:
        if not is_valid(arg):
            raise ValueError(f"Invalid argument {arg} for {__name__}.{original_function.__name__}")
    for key, value in kwargs.items():
        if not is_valid(value):
            raise ValueError(f"Invalid value {value} for key {key} in {__name__}.{original_function.__name__}")
    '''
  5. Dependency Injection: This technique could be used to modify objects at runtime to inject dependencies, for example in a test environment where you might want to inject mock objects instead of real services.

    Example Usage:

    code_to_add = r'''
    self.database = MockDatabase()  # Assuming original_function uses self.database
    '''
    import_meta_class("database_access_module.py", code_to_add)
  6. Caching and Memoization: You can use this mechanism to automatically add caching or memoization to each method of your classes, which caches the results of the method to improve performance. This would be incredibly useful in a computationally expensive application where you want to avoid redundant calculations.

    Example Usage:

    code_to_add = r'''
    if args in cache:
        return cache[args]
    result = original_function(*args, **kwargs)
    cache[args] = result
    return result
    '''
    import_meta_class("my_module.py", code_to_add)
  7. Dynamic Feauture Toggling: This approach can facilitate the implementation of feature toggles, allowing you to enable or disable features dynamically without restarting the application or changing the actual business logic code.

    Example Usage:

    code_to_add = r'''
    if not feature_flags.is_enabled("new_feature"):
        return None
    '''
    import_meta_class("feature_module.py", code_to_add)

Output

🍎 fruit.py output befor and after MetaDecorator: print(self.apple_color)
Example1: A basket of 4 red apples.
Example2: A basket of 50 blue apples.



red
blue
Example1: red
A basket of 4 red apples.
Example2: blue
A basket of 50 blue apples.
🏦 bank.py output befor and after MetaDecorator: print(self.amt)
Your account, Bob, has 100 dollars.

100
100
Your account, Bob, has 100 dollars.

About

A Python script that demonstrates the dynamic injection of decorators into classes within a Python source file.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages