Parent Directory
|
Revision Log
ERDB 2.0 support
#!/usr/bin/perl -w # # Copyright (c) 2003-2006 University of Chicago and Fellowship # for Interpretations of Genomes. All Rights Reserved. # # This file is part of the SEED Toolkit. # # The SEED Toolkit is free software. You can redistribute # it and/or modify it under the terms of the SEED Toolkit # Public License. # # You should have received a copy of the SEED Toolkit Public License # along with this program; if not write to the University of Chicago # at info@ci.uchicago.edu or the Fellowship for Interpretation of # Genomes at veronika@thefig.info or download a copy from # http://www.theseed.org/LICENSE.TXT. # package ERDBTypeCounter; use strict; use Tracer; use ERDB; use base qw(ERDBType); =head1 ERDB Counter Type Definition =head2 Introduction This object represents the primitive data type for large unsigned integers. The values range from 0 to 9223372036854775807. Although it is possible to store larger numbers, the MySQL arithmetic is always performed using signed 64-bit integers, so it's not really safe. =head3 new my $et = ERDBTypeCounter->new(); Construct a new ERDBTypeCounter descriptor. =cut sub new { # Get the parameters. my ($class) = @_; # Create the ERDBTypeCounter object. my $retVal = { }; # Bless and return it. bless $retVal, $class; return $retVal; } =head2 Virtual Methods =head3 numeric my $flag = $et->numeric(); Return TRUE if this is a numeric type and FALSE otherwise. The default is FALSE. =cut sub numeric { # Get the parameters. my ($self) = @_; # Return the result. return 1; } =head3 averageLength my $value = $et->averageLength(); Return the average length of a data item of this field type when it is stored in the database. This value is used to compute the expected size of a database table. =cut sub averageLength { return 8; } =head3 prettySortValue my $value = $et->prettySortValue(); Number indicating where fields of this type should go in relation to other fields. The value should be somewhere between C<1> and C<5>. A value outside that range will make terrible things happen. =cut sub prettySortValue() { return 1; } =head3 validate my $okFlag = $et->validate($value); Return an error message if the specified value is invalid for this field type. The parameters are as follows. =over 4 =item value Value of this type, for validation. =item RETURN Returns an empty string if the specified field is valid, and an error message otherwise. =back =cut sub validate { # Get the parameters. my ($self, $value) = @_; # Assume it's valid until we prove otherwise. my $retVal = ""; if ($value =~ /\./) { $retVal = "Counter values cannot have decimal points."; } elsif ($value =~ /^-/) { $retVal = "Counter values cannot be negative."; } elsif (not $value =~ /^[+]?\d+$/) { $retVal = "Counter value is not numeric."; } elsif ($value > 9223372036854775807 || $value < 0) { $retVal = "Counter value is out of range."; } # Return the determination. return $retVal; } =head3 encode my $string = $et->encode($value, $mode); Encode a value of this field type for storage in the database (or in a database load file.) The parameters are as follows. =over 4 =item value Value of this type, for encoding. =item mode TRUE if the value is being encoding for placement in a load file, FALSE if it is being encoded for use as an SQL statement parameter. In most cases, the encoding is the same for both modes. =back =cut sub encode { # Get the parameters. my ($self, $value, $mode) = @_; # Declare the return variable. my $retVal = $value; # Return the result. return $retVal; } =head3 decode my $value = $et->decode($string); Decode a string from the database into a value of this field type. The parameters are as follows. =over 4 =item string String from the database to be decoded. =item RETURN Returns a value of the desired type. =back =cut sub decode { # Get the parameters. my ($self, $string) = @_; # Declare the return variable. my $retVal = $string; # Return the result. return $retVal; } =head3 sqlType my $typeString = $et->sqlType(); Return the SQL data type for this field type. =cut sub sqlType { return "BIGINT UNSIGNED"; } =head3 indexMod my $length = $et->indexMod(); Return the index modifier for this field type. The index modifier is the number of characters to be indexed. If it is undefined, the field cannot be indexed. If it is an empty string, the entire field is indexed. The default is an empty string. =cut sub indexMod { return ''; } =head3 sortType my $letter = $et->sortType(); Return the sorting type for this field type. The sorting type is C<n> for integers, C<g> for floating-point numbers, and the empty string for character fields. The default is the empty string. =cut sub sortType { return "n"; } =head3 documentation my $docText = $et->documentation(); Return the documentation text for this field type. This should be in TWiki markup format, though HTML will also work. =cut sub documentation() { return 'Large, unsigned integer, ranging from 0 to 9 quintillion.'; } =head3 name my $name = $et->name(); Return the name of this type, as it will appear in the XML database definition. =cut sub name() { return "counter"; } =head3 default my $defaultValue = $et->default(); Return the default value to be used for fields of this type if no default value is specified in the database definition or in an [[ERDBLoadGroup#Put]] call during a loader operation. The default is undefined, which means an error will be thrown during the load. =cut sub default { return 0; } =head3 align my $alignment = $et->align(); Return the display alignment for fields of this type: either C<left>, C<right>, or C<center>. The default is C<left>. =cut sub align { return 'right'; } =head3 html my $html = $et->html($value); Return the HTML for displaying the content of a field of this type in an output table. The default is the raw value, html-escaped. =cut sub html { my ($self, $value) = @_; return $value; } 1;
MCS Webmaster | ViewVC Help |
Powered by ViewVC 1.0.3 |