DBIx::Class::Helper::Row::NumifyGet - Force numeric "context" on numeric columns


DBIx-Class-Helpers documentation Contained in the DBIx-Class-Helpers distribution.

Index


Code Index:

NAME

Top

DBIx::Class::Helper::Row::NumifyGet - Force numeric "context" on numeric columns

VERSION

Top

version 2.007000

SYNOPSIS

Top

 package MyApp::Schema::Result::Foo_Bar;

 __PACKAGE__->load_components(qw{Helper::Row::NumifyGet Core});

 __PACKAGE__->table('Foo');
 __PACKAGE__->add_columns(
    foo => {
       data_type         => 'integer',
       is_nullable       => 0,
       is_numeric        => 1,
    },
 );

 sub TO_JSON {
    return {
       foo => $self->foo,  # this becomes 0 instead of "0" due to context
    }
 }

METHODS

Top

get_column

This is the method that "converts" the values. It just checks for is_numeric and if that is true it will numify the value.

get_columns

This method also "converts" values, but this one is called a lot more rarely. Again, It just checks for is_numeric and if that is true it will numify the value.

AUTHOR

Top

Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

COPYRIGHT AND LICENSE

Top


DBIx-Class-Helpers documentation Contained in the DBIx-Class-Helpers distribution.

package DBIx::Class::Helper::Row::NumifyGet;
BEGIN {
  $DBIx::Class::Helper::Row::NumifyGet::VERSION = '2.007000';
}

use strict;
use warnings;

# ABSTRACT: Force numeric "context" on numeric columns

sub get_column {
   my ($self, $col) = @_;

   my $value = $self->next::method($col);

   $value += 0 if defined($value) and # for nullable and autoinc fields
                  $self->_is_column_numeric($col);

   return $value;
}

sub get_columns {
   my ($self, $col) = @_;

   my %columns = $self->next::method($col);

   for (keys %columns) {
      $columns{$_} += 0
         if defined($columns{$_}) and # for nullable and autoinc fields
            $self->_is_column_numeric($_);
   }

   return %columns;
}

1;


__END__