Business::UPS::Tracking::Role::Serialize - Serialize objects


Business-UPS-Tracking documentation Contained in the Business-UPS-Tracking distribution.

Index


Code Index:

NAME

Top

Business::UPS::Tracking::Role::Serialize - Serialize objects

DESCRIPTION

Top

This role provides methods to serialize objects into a Text::SimpleTable object.

METHODS

Top

serialize

 $tale = $self->serialize($tale);
 say $tale->draw();

Serialize an object into a table.


Business-UPS-Tracking documentation Contained in the Business-UPS-Tracking distribution.

# ============================================================================
package Business::UPS::Tracking::Role::Serialize;
# ============================================================================
use utf8;
use 5.0100;

use Moose::Role;
use strict; # Make cpants happy

use Text::SimpleTable;

sub serialize {
    my ($self,$table) = @_;
    
    $table ||= Text::SimpleTable->new(27,44);
    
    foreach my $attribute ($self->meta->get_all_attributes) {
        next 
            unless $attribute->does('Serializable');
        
        my $value = $attribute->get_value($self);
        
        next 
            unless defined $value;
        
        my $name =  $attribute->has_documentation ? 
            $attribute->documentation() :
            $attribute->name;
        
        my $type_constraint = $attribute->type_constraint;
        
        if ($attribute->has_serialize) {
            $value = $attribute->serialize->($self);
        }
        
        $self->_serialize_value(
            table   => $table,
            value   => $value,
            name    => $name,
        );
    }
    return $table;
}

sub _serialize_value {
    my ($self,%params) = @_;
    
    
    my $table = $params{table};
    my $value = $params{value};
    my $name = $params{name};
    
    return unless $value;

    $name = $params{index}.'. '.$name
        if $params{index};
    
    given (ref $value) {
        when('') {
            $table->row($name,$value);
        }
        when('ARRAY') {
            my $index = 1;
            foreach my $element (@$value) {
                $self->_serialize_value(
                    table   => $table,
                    value   => $element,
                    name    => $name,
                    index   => $index,
                );
                $index ++;
            }
        }
        when('HASH') {
            # TODO
        }
        when(['CODE','IO','GLOB','FORMAT']) {
            warn('Cannot serialize $_');
        }
        when('DateTime') {
            if ($value->hour == 0 && $value->minute == 0) {
                $table->row($name,$value->ymd('.'));
            } else {
                $table->row($name,$value->ymd('.').' '.$value->hms(':'));
            }
        }
        # Some object 
        default {
            if ($value->can('meta')
                && $value->meta->does_role('Business::UPS::Tracking::Role::Serialize')
                && $value->can('serialize')) {
                $table->hr();
                $table->row($name,'');
                $table->hr();
                $value->serialize($table);
            } elsif ($value->can('serialize')) {
                my $output = $value->serialize;
                return
                    unless $output;
                $table->row($name,$output)
            } else {
                $table->row($name,$value);
            }
        }
    }   
}

no Moose::Role;
1;