~ubuntu-branches/ubuntu/oneiric/ctioga2/oneiric

« back to all changes in this revision

Viewing changes to lib/ctioga2/metabuilder/types/numbers.rb

  • Committer: Bazaar Package Importer
  • Author(s): Vincent Fourmond
  • Date: 2011-01-24 21:36:06 UTC
  • Revision ID: james.westby@ubuntu.com-20110124213606-9ettx0ugl83z0bzp
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# numbers.rb : Different Types to deal with numbers
 
2
# Copyright (C) 2006 Vincent Fourmond
 
3
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
 
 
18
 
 
19
require 'ctioga2/utils'
 
20
 
 
21
module CTioga2
 
22
 
 
23
  Version::register_svn_info('$Revision: 2 $', '$Date: 2009-04-25 14:03:30 +0200 (Sat, 25 Apr 2009) $')
 
24
 
 
25
  module MetaBuilder
 
26
 
 
27
    # The module Types should be used for all subclasses of
 
28
    # Type, to keep the place clean and tidy.
 
29
    module Types
 
30
 
 
31
      # An integer
 
32
      class IntegerParameter < Type
 
33
 
 
34
        type_name :integer, 'number', 0
 
35
 
 
36
        def string_to_type_internal(str)
 
37
          return Integer(str)
 
38
        end
 
39
 
 
40
      end
 
41
 
 
42
      # A float
 
43
      class FloatParameter < Type
 
44
 
 
45
        type_name :float, 'number', 0.0
 
46
 
 
47
        def string_to_type_internal(str)
 
48
          return Float(str)
 
49
        end
 
50
 
 
51
      end
 
52
 
 
53
      # A Float Range.
 
54
      class FloatRangeParameter < Type
 
55
 
 
56
        RANGE_RE = /([^:]+):([^:]+)/
 
57
 
 
58
        type_name :float_range, 'range'
 
59
        
 
60
        def string_to_type_internal(str)
 
61
          raise IncorrectInput, "#{str} is not a valid range" unless 
 
62
            str =~ RANGE_RE
 
63
          s,e = Float($1), Float($2)
 
64
          return Range.new(s,e)
 
65
        end
 
66
 
 
67
        def type_to_string_internal(value)
 
68
          return "#{value.first.to_s}:#{value.last.to_s}"
 
69
        end
 
70
        
 
71
      end
 
72
 
 
73
      # Returns a [ start, end ] array where elements are either Float
 
74
      # or _nil_.
 
75
      class PartialFloatRangeType < Type
 
76
 
 
77
        RANGE_RE = /([^:]+)?:([^:]+)?/
 
78
 
 
79
        type_name :partial_float_range, 'range'
 
80
        
 
81
        def string_to_type_internal(str)
 
82
          raise IncorrectInput, "#{str} is not a valid range" unless 
 
83
            str =~ RANGE_RE
 
84
          s,e = ($1 ? Float($1) : nil), ($2 ? Float($2) : nil)
 
85
          return [s, e]
 
86
        end
 
87
 
 
88
        def type_to_string_internal(value)
 
89
          return "#{value.first.to_s}:#{value.last.to_s}"
 
90
        end
 
91
        
 
92
      end
 
93
 
 
94
    end
 
95
 
 
96
  end
 
97
end