view Lib/Form/ItemId.pm @ 134:44977efed303

Significant performance optimizations Fixed recursion problems due converting objects to JSON Added cache support for the templates Added discovery feature for the web methods
author wizard
date Mon, 21 Jun 2010 02:39:53 +0400
parents 16ada169ca75
children
line wrap: on
line source

package Form::ItemId;
use strict;
use Common;
our @ISA = qw(Object);

BEGIN {
    DeclareProperty Name => ACCESS_READ;
    DeclareProperty Canonical => ACCESS_READ;
    DeclareProperty InstanceID => ACCESS_READ;
    DeclareProperty Parent => ACCESS_READ;
}

sub CTOR {
    my ($this,$name,$instance_id,$parent) = @_;
    
    $this->{$Name} = $name or die new Exception('A name is required for the item id');
    $this->{$InstanceID} = $instance_id;
    $this->{$Parent} = $parent;
    
    $this->{$Canonical} = ($parent && !$parent->isa('Form::ItemId::Root') ? $parent->Canonical.'/':'').$name.(defined $instance_id ? $instance_id : '');
}

sub ToNAVPath {
    my ($this) = @_;
    
    return ($this->{$Parent} ? ($this->{$Parent}->ToNAVPath,$this) : $this);
}

package Form::ItemId::Prev;
our @ISA = qw(Form::ItemId);

sub CTOR {
    my ($this,$parent) = @_;
    $this->SUPER::CTOR('(prev)',undef,$parent);
}

package Form::ItemId::Root;
our @ISA = qw(Form::ItemId);

sub CTOR {
    my ($this,$parent) = @_;
    $this->SUPER::CTOR('(root)',undef,$parent);
}


1;