view Lib/DOM/Providers/Form.pm @ 59:0f3e369553bd

Rewritten property implementation (probably become slower but more flexible) Configuration infrastructure in progress (in the aspect of the lazy activation) Initial concept for the code generator
author wizard
date Tue, 09 Mar 2010 02:50:45 +0300
parents 16ada169ca75
children
line wrap: on
line source

package Configuration;
our $DataDir;
package DOM::Providers::Form;
use strict;
use Form;
use Schema::Form;
use Common;
our @ISA = qw(Object);

our $Encoding ;
our $CacheDir ||= "${DataDir}Cache/";
warn "The encoding for the DOM::Provider::Form isn't specified" if not $Encoding;
$Encoding ||= 'utf-8';

sub GetProviderInfo {
    return {
        Name => 'Form',
        Host => 'DOM::Site',
        Methods => {
            LoadForm => \&SiteLoadForm
        }
    }
}

BEGIN {
    DeclareProperty FormsEncoding => ACCESS_READ;
    DeclareProperty DataCacheDir => ACCESS_READ;
}

sub SiteLoadForm {
    my ($this,$site,$file,$form) = @_;
    return $site->RegisterObject('Form',$this->LoadForm($file,$form));
}

sub LoadForm {
    my ($this,$file, $formName) = @_;
    
    my $formSchema = Schema::Form->LoadForms($file,$this->{$DataCacheDir},$this->{$FormsEncoding})->{$formName} or die new Exception('The form isn\'t found',$formName,$file);
    return Form->new($formSchema);
}

sub construct {
    my ($class) = @_;
    
    return $class->new(FormsEncoding => $Encoding, DataCacheDir => $CacheDir);
}


1;