Skip to main content

Inner Method Dispatch for Python

Project description

Pyta = Python + Beta

Inspired by: http://www.cs.utah.edu/plt/publications/oopsla04-gff.pdf

Usage

Inner dispatch is used to guarantee pre- and post-conditions without using auxiliary methods. An external dispatch results in the lowest method that calls inner being called. An inner(cls, self) call calls the next highest method that has an inner call, or the highest method if there is no higher inner method. super works the same as before, but take care not to cause an infinite loop.

Full example:

from pyta import inner, BetaMetaclass

class A(object):
    def foo(self):
        print "world!"

class B(A): # Can inherit from regular classes
    # The lowest class in the hierarchy that uses `inner` needs the metaclass
    __metaclass__ = BetaMetaclass

    def foo(self):
        inner(B, self).foo() # Calls C.foo
        super(B, self).foo() # Calls A.foo

class C(B):
    def foo(self):
        print "Hello, "

obj = C()
obj.foo() # External dispatch; calls B.foo

Caveats

Because using inner in a superclass completely changes which method an external dispatch resolves to (it’s no longer the most-overriding method) the metaclass is required to inspect the source of the methods and sprinkle some magic to make it all work.

In order for everything to work properly, you must call inner(cls, self) lexically. In other words, it won’t work if you do this:

bar = inner
bar(cls, self).foo()

Or this:

from pyta import inner as bar
bar(cls, self).foo()

Currently, the implementation doesn’t distinguish between strings vs. actual method calls, so if your method contains a string like "text inner( moretext", it’ll break everything.

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

pyta-0.1.1.zip (4.7 kB view details)

Uploaded Source

File details

Details for the file pyta-0.1.1.zip.

File metadata

  • Download URL: pyta-0.1.1.zip
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyta-0.1.1.zip
Algorithm Hash digest
SHA256 cf9d22b2ae1d5593e661f1ca106b7716127de07b12e2411ed8a6f953a1d36716
MD5 9e23e5210881c0a48ebb75404a9783fd
BLAKE2b-256 c60a3344369bb8f96f13a3448896f70cdf8705b4b75f21c6201b89d3a0feb122

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