The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Class::Tag - programmatically label (mark) classes, methods, roles and modules with meta-data tags (key/value pairs) and query those tags

Warning

Any specific interface that Class::Tag exposes may change (as it already did) untill version 1.0 is reached.

SYNOPSIS

Directly using Class::Tag as tagger class:

        package Foo;
        use Class::Tag 'tagged'; 
        tag Class::Tag 'tagged'; # same, but at run-time

        require Foo; # required before next check
        Class::Tag->tagged('Foo'); # true
        Class::Tag->tagged('Bar'); # false

        #no   Class::Tag 'tagged'; # at compile-time, so will not work - instead...
        untag Class::Tag 'tagged'; # at run-time
        Class::Tag->tagged('Foo'); # false

If no tags are given, the 'is' tag is assumed:

        package Foo;
        use Class::Tag;      # equivalent to...
        use Class::Tag 'is'; # same
        use Class::Tag ();   # no tagging

New tagger class can be created by simply tagging package with special 'tagger_class' tag using Class::Tag or any other tagger class, and then declaring specific tags or any tag to be used with that new tagger class. Tags declaration is done by tagger class tagging itself with those specific tags or special 'AUTOLOAD' tag:

        package Awesome;                # new tagger class
        use  Class::Tag 'tagger_class'; # must be before following declarations
        use     Awesome 'specific_tag'; # declare 'specific_tag' for use
        use     Awesome 'AUTOLOAD';     # declares that any tag can be used

        Class::Tag->tagger_class('Awesome'); # true

The Class::Tag itself is somewhat similar to the following implicit declaration:

        package Class::Tag; 
        use     Class::Tag 'tagger_class';
        use     Class::Tag 'AUTOLOAD';

Attempt to use tag that has not been declared (assuming 'AUTOLOAD' declares any tag) raises exception. Values of declaration tags can be used to modify behavior of tags - see "Declaration of tags" section for details.

Any tagger class can be used as follows (in all following examples the original Class::Tag and Awesome tagger classes are interchangeable), assuming tags have been declared:

Using default 'is' tag:

        package Foo;
        use Awesome;
        use Awesome  'is';       # same
        use Awesome { is => 1 }; # same

        require Foo; # required before next checks...
        require Bar; 

        is Awesome  'Foo';  # true
        is Awesome  'Bar';  # false

        Awesome->is('Foo'); # true
        Awesome->is('Bar'); # false

        $obj = bless {}, 'Foo';

        is Awesome  $obj;  # true
        Awesome->is($obj); # true

        $obj = bless {}, 'Bar';

        is Awesome  $obj;  # false
        Awesome->is($obj); # false

Using tags 'class' and 'pureperl':

        package Foo; 
        # tagging class Foo with tags 'class' and 'pureperl' of Awesome tagger class...
        use Awesome  'class';
        use Awesome              'pureperl';
        use Awesome  'class',    'pureperl';       # same
        use Awesome { class => 1, pureperl => 1 }; # same

        require Foo; # required before next checks...
        require Bar; 

        Awesome->class(   'Foo'); # true
        Awesome->pureperl('Foo'); # true
        Awesome->class(   'Bar'); # false
        Awesome->pureperl('Bar'); # false

Using key/value pairs as tags (tag values):

        package Foo;
        use Awesome { class => 'is cool', author => 'metadoo' }; 

        Awesome->class( 'Foo') eq 'is cool'; # true
        Awesome->author('Foo') eq 'metadoo'; # true

Tag values can be modified with samename accessors. Object instances from the class inherit tags from the class, so that modifying tag value on instance modifies that of a class and vice versa, except blessed-hash objects get their own, instance-specific values when modifying tag value on instance - copy-on-write approach:

        $foo = bless {}, 'Foo';

        Awesome->class( $foo) eq 'is cool'; # true
        Awesome->author($foo) eq 'metadoo'; # true (inheriting)

        Awesome->class( 'Foo', 'pupe-perl')     eq 'pupe-perl';     # true
        Awesome->class( 'Foo')                  eq 'pupe-perl';     # true
        Awesome->class( $foo)                   eq 'pupe-perl';     # true (inheriting)
        Awesome->class( $foo,  'pupe-perl too') eq 'pupe-perl too'; # true (copy-on-write)
        Awesome->class( $foo)                   eq 'pupe-perl too'; # true (copy-on-write)
        Awesome->class( 'Foo')                  eq 'pupe-perl';     # true (unmodified) 

Inheriting tags, using for example the default 'is' tag:

        package Foo;
        use Awesome;
        use Awesome 'is'; # same

        @Bar::ISA = 'Foo';

        Awesome->is('Foo'); # true
        Awesome->is('Bar'); # true ('is' tag inherited)
        Awesome::is('Foo'); # true
        Awesome::is('Bar'); # false (no tag inheritance)

DESCRIPTION

Sometimes it is necessary to programmatically tag modules and classes with some meta-tags (arbitrary labels or key/value pairs) to be able to assert that you deal with proper classes (module), methods and roles. Such need typically arises for plug-in modules, application component modules, complex class inheritance hierarchies, etc.

Class::Tag allows programmatically label (mark) classes and modules with arbitrary inheritable tags (key/value pairs) without collision with methods/attributes/functions of the class/module and query those tags on arbitrary classes and modules.

By design, Class::Tag is a generalized framework for meta information (tags) about inheritable behaviors. Inheritable behaviors that can have meta-data tags attached include methods, classes, roles, etc. Since tags are meta information about inheritable behaviors, tags themselves are inheritable (i.e. remain always "attached" to those behaviors). One example of the meta-tag is the class name itself with tag's (boolean) value returned by isa(). Another simple meta-tag example is method name with its value returned by can(). Yet another meta-tag example is the role name, with tag's value supposed to be returned by DOES(). But classes, methods and roles may also have other meta-tags apart from their names. In particular, Class::Tag can easily be used to implement method attributes, and even multi-layer method attributes, for example:

        package   Zoo;
        use Meta2 foo => { author => 'metadoo', doc => 'is dead-simple' };
        use Meta  foo => { is => 'ro', returns => 'boolean' };
        sub       foo { 1 }

Such use opens possibilities for meta-programming and introspection. For example, method may access its own meta-data as follows:

        sub foo { Meta->foo( ref($_[0])||$_[0] ) }

Technically, Class::Tag is the constructor of special variety of class/object attributes that are orthogonal to (isolated from) conventional attributes/methods of the class. Being the same and being orthogonal at the same time is what required to be good carrier of meta information about inheritable behavior. And use of tagger classes is a way to extend and partition class's namespace into meaningful orthogonal domains, as well as to extend the notion of the meta-tag in the domain-specific way.

Isolated (orthogonal) meta-domains

Class::Tag itself serves as tagger class, and each tagger class is a "constructor" for other tagger classes, either loadable or inlined. Each tagger class brings separate meta-tags namespace that is orthogonal (isolated) to that of other tagger classes. The use of specific meta-tags namespace usually involves specific semantics. Together specific isolated meta-tags namespace and associated semantics are referred to as "meta-domain".

The use() of tagger class looks as if it exports chosen named tags into packages, but in fact it doesn't - tagger class itself provides samename accessor methods for those tags. As a result, tag names can be arbitrary without risk of collision, so that together with name of tagger class they can be selected to read somewhat meaningful (see examples in "SYNOPSIS") in the problem area domain that uses that specific tagger.

Tagger class construction

See "SYNOPSIS" for description of new tagger class creation. Tagger class can be created "inline", without using separate .pm file for it.

The value of 'tagger_class' tag is reserved for special use in the future, so it should not be used for anything to avoid collision with future versions.

Tagger class benefits

There are a few reasons to use multiple tagger classes in addition to or instead of Class::Tag itself:

Name

Name of the tagger class can be chosen to read naturally and meaningful, in either direct or indirect method call notations i.e. reversing order of tagger and tag names (doubling readability options), with semantically meaningful tags used in the context of given application or problem area domain.

Collision with Class::Tag guts

The original Class::Tag tagger class is not empty, so that not every tag can be used. In contrast, any empty package can be used as tagger classes (but tag(), untag() and Perl's specials, like import(), can(), etc. are still reserved).

Orthogonality of tags

Each tagger class has its own orthogonal tags namespace, so that same tags of different tagger classes do not collide:

        package Awesome;
        use  Class::Tag 'tagger_class';
        use     Awesome 'AUTOLOAD';

        package     Bad; 
        use  Class::Tag 'tagger_class';
        use         Bad 'AUTOLOAD';

        package Foo;
        use     Awesome 'really';
        use     Awesome { orthogonal => 'awesome' }; 
        use         Bad { orthogonal => 'bad' };

        really  Awesome 'Foo';                           # true
        really      Bad 'Foo';                           # false
                    Bad->orthogonal('Foo') eq 'bad';     # true
                Awesome->orthogonal('Foo') eq 'awesome'; # true

Without other tagger classes the tags namespace of Class::Tag would be exposed to higher risk of tags collision, since due to global nature of Perl classes there is always a possibility of collision when same tag is used for unrelated purposes (e.g. in the same inheritance chain, etc.).

Since tagger class tags upon use() and classes usually do not export anything, it is often useful and possible to make some existing class a tagger to tag classes that use() it. Moreover, it can be done from a distance, without cognizance of the existing class. The same also applies to modules that are not classes.

However, making existing (non-empty) class/module a tagger class requires care to not collide with methods of that class - Class::Tag will raise an exception when such collision happens. It is better not to declare 'AUTOLOAD' for such tagger class.

Separate namespace and semantics domain

Tagger class is a class intended for defining, managing and documenting specific meta-tags and domain-specific meta-tags namespace. In particular, tagger class is an ideal place where to document tags from that namespace.

Declaration of tags

Attempt to use tag that has not been declared (assuming 'AUTOLOAD' declares any tag) raises exception.

In addition, values of declaration tags can be used to modify behavior of tags and, thus, redefine/evolve the whole notion of the tag. If tag is declared with subroutine reference value, that subroutine is called when tag is accessed:

        package Awesome;                             # new tagger class
        use  Class::Tag 'tagger_class';              # must be before following declarations
        use     Awesome  specific_tag => \&accessor; # declare 'specific_tag' for use with \&accessor
        use     Awesome  AUTOLOAD     => \&ACCESSOR; # declares that any tag can be used and uses \&accessor for all of them

        Awesome->specific_tag( $class_or_obj, @args); # is equivalent to...
        &accessor('Awesome',   $class_or_obj, @args); 

        Awesome::specific_tag( $class_or_obj, @args); # is equivalent to...
        &accessor( undef,      $class_or_obj, @args); 

        Awesome->any_other_tag($class_or_obj, @args); # is equivalent to...
        &ACCESSOR('Awesome',   $class_or_obj, @args); 

        Awesome::any_other_tag($class_or_obj, @args); # is equivalent to...
        &ACCESSOR( undef,      $class_or_obj, @args); 

The Awesome class in above code may also be replaced with object of Awesome class. With custom accessors as above the entire tag syntax can be used for something different.

Traditional alternatives

There are two natural alternative solutions: classes-as-tags and methods-as-tags. The classes-as-tags solution is using universal isa() method to see if class has specific parent and effectively using specific parent classes as tags. However, using parent classes just as tags is a limited solution since @ISA is used for different things and better be used for those things exclusively to avoid interferences.

Using methods-as-tags approach is about defining and using specific methods as tags. It is way better then classes-as-tags, but but if specific method-tag need to be queried on unknown class/module, the following problems may arise:

Name collision

It may be that class/module have defined samename method/attribute by coincidence. Possibility of collision is considerable for short readable names (like 'is'), especially for undocumented tags that are used internally and in case of subclassing. To avoid collision method-tags usually have some unique prefix and may be in upper-case and/or starting with '_', etc. The typical solution is prefixing name of some module as unique identifier, and this is exactly what Class::Tag does in its own way.

        Foo->Awesome_is;

        Awesome->is('Foo');

Class::Tag allows to either dedicate specific tagger class, either loadable or inlined, just to serve as effective "prefix" with arbitrary risk-free tag names, or use some existing class/module as tagger.

AUTOLOAD()ing of methods and non-tagged classes/modules

If one tries to check tag on non-tagged class/module, there will be no tag method, so call of tag method will raise an exception. This suggests can() or eval{} wrap to be always used as a precaution.

Moreover, potential use of AUTOLOAD defeats unique prefixes in tag method names and requires always calling tag method conditional on result of prior can() (eval{} will not help in this case) checking if tag is defined:

        $tag_value = $class->is 
        if      $class->can('is');

        Awesome->is($class);

Class::Tag solve this problem.

Tagging

Tagging using tag methods is essentially defining an attribute. For tagging classes only it is simple enough, but for tagging blesses-hash objects ends up in writing accessor, so it requires use of some attributes construction module, of which Class::Tag is essentially the one:

        package Foo;
        bless $obj = {}, 'Foo';

        sub Foo::Awesome_is    { 'old_value' }; # compile-time tagging
        *Foo::Awesome_is = sub { 'old_value' };
        *Foo::Awesome_is = sub { 'new_value' };
        # tagging object instance of the class...
        sub  Foo::Awesome_is { @_ > 1 ? $_[0]->{Awesome_is} = $_[1] : $_[0]->{Awesome_is} }
        $obj->Awesome_is('new_value');

        use Awesome    is => 'old_value'; # compile-time tagging
        is  Awesome 'Foo' => 'old_value';
        is  Awesome 'Foo' => 'new_value';
        is  Awesome $obj  => 'new_value';

except Class::Tag's default accessor implement copy-on-write tags on blessed-hash object instances (and simple tag inheritance by instances otherwise), rather than simplistic accessor in above alternative.

Class::Tag solves these problems by moving tag creation and tag accessors to "tagger classes".

SUPPORT

Send bug reports, patches, ideas, suggestions, feature requests or any module-related information to mailto:parsels@mail.ru. They are welcome and each carefully considered.

In particular, if you find certain portions of this documentation either unclear, complicated or incomplete, please let me know, so that I can try to make it better.

If you have examples of a neat usage of Class::Tag, drop a line too.

AUTHOR

Alexandr Kononoff (mailto:parsels@mail.ru)

COPYRIGHT AND LICENSE

Copyright (c) 2010 Alexandr Kononoff (mailto:parsels@mail.ru). All rights reserved.

This program is free software; you can use, redistribute and/or modify it either under the same terms as Perl itself or, at your discretion, under following Simplified (2-clause) BSD License terms:

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.