-
-
Save ChillarAnand/f3ace0dcaa2a8ee7da07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding:utf-8 | |
import gc | |
from sys import modules | |
import inspect | |
from optparse import make_option | |
import weakref | |
from django.core.management.base import BaseCommand | |
from django.dispatch import Signal, saferef | |
REF_TYPES = (weakref.ReferenceType, saferef.BoundMethodWeakref, saferef.BoundMethodWeakref) | |
FORMATS = { | |
'vim': '{path}:{line}:{name}', | |
'human': '{name} in line {line} of {path}', | |
} | |
class Command(BaseCommand): | |
help = 'Show all signals receivers' | |
option_list = BaseCommand.option_list + ( | |
make_option('--format', | |
dest='line_format', | |
default='human', | |
choices=FORMATS.keys(), | |
help='Line format (available choices: {0})'.format(', '.join(FORMATS)), | |
), | |
) | |
def handle(self, *args, **options): | |
line_format = options['line_format'] | |
if line_format not in FORMATS: | |
raise CommandError('format must be on of {0}, not {1}'.format(line_format, FORMATS.keys())) | |
msg = FORMATS[line_format] | |
signals = [obj for obj in gc.get_objects() if isinstance(obj, Signal)] | |
for signal in signals: | |
for receiver in signal.receivers: | |
_, receiver = receiver | |
# django.contrib.contenttypes.generic.GenericForeignKey.instance_pre_init is not weakref | |
if isinstance(receiver, REF_TYPES): | |
receiver = receiver() | |
print msg.format(name=receiver.func_name, line=inspect.getsourcelines(receiver)[1], path=inspect.getsourcefile(receiver)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment