source: ruby/trunk/lib/models/rm/data_types/quantity.rb@ 144

Last change on this file since 144 was 144, checked in by KOBAYASHI, Shinji, 15 years ago

ref #50
DV_Quantified finished

File size: 6.6 KB
RevLine 
[88]1# This modules are implemented from the UML shown bellow
2# http://www.openehr.org/uml/release-1.0.1/Browsable/_9_0_76d0249_1109599337877_94556_1510Report.html
3# Ticket refs #50
[141]4require 'assumed_library_types'
[4]5module OpenEHR
6 module RM
7 module Data_Types
8 module Quantity
[137]9
10 autoload :Date_Time, "rm/data_types/quantity/date_time.rb"
11
[104]12 class DV_Ordered < OpenEHR::RM::Data_Types::Basic::Data_Value
[4]13 include Comparable
[138]14 attr_accessor :normal_range, :other_refference_ranges, :normal_status
[122]15
[124]16 def initialize(normal_range=nil, normal_status = nil,
17 other_reference_ranges=nil)
[123]18 self.normal_range = normal_range
[124]19 self.normal_status = normal_status
[123]20 self.other_reference_ranges = other_reference_ranges
[4]21 end
[122]22
[4]23 def is_normal?
[124]24 if @normal_range.nil? and @normal_status.nil?
25 return false
26 elsif !@normal_range.nil?
27 return @normal_range.has(@value)
28 elsif !@normal_status.nil?
29 return @normal_status.code_string == 'N'
30 end
[4]31 end
[122]32
[4]33 def is_simple?
[88]34 normal_status.nil? and other_refference_ranges.nil?
[4]35 end
[122]36
37 def <=>(other)
[124]38 raise NotImplementedError, 'This method should be implemented'
[122]39 end
40
41 def other_reference_ranges=(other_reference_ranges)
[123]42 unless other_reference_ranges.nil? or !other_reference_ranges.is_empty?
[4]43 raise ArgumentError, "Other reference ranges validity error"
44 end
[123]45 @other_reference_ranges = other_reference_ranges
[4]46 end
[123]47
[142]48 def is_strictly_comparable_to?(other)
[137]49 raise NotImplementedError, 'this method should be implemented'
50 end
[4]51 end
[88]52
[141]53 class DV_Interval < OpenEHR::Assumed_Library_Types::Interval
54
55 end
[142]56
[104]57 class DV_Quantified < DV_Ordered
[144]58 attr_reader :magnitude, :accuracy, :magnitude_status
[137]59
[144]60 def initialize(magnitude, magnitude_status=nil,
61 normal_range=nil, normal_status = nil,
[138]62 other_reference_ranges=nil)
[139]63 super(normal_range, normal_status, other_reference_ranges)
[144]64 self.magnitude = magnitude
65 self.magnitude_status = magnitude_status
[137]66 end
67
68 def <=>(others)
[140]69 @value <=> others.value
[137]70 end
71
[144]72 def magnitude=(magnitude)
73 raise ArgumentError, 'magnitude should not be nil' if magnitude.nil?
74 @magnitude = magnitude
75 end
[140]76
[144]77 def magnitude_status=(magnitude_status)
78 if magnitude_status.nil?
79 @magnitude_status = '='
80 elsif DV_Quantified.valid_magnitude_status?(magnitude_status)
81 @magnitude_status = magnitude_status
82 else
83 raise ArgumentError, 'magnitude_status invalid'
84 end
[4]85 end
[144]86
87 def accuracy=(accuracy)
88 raise NotImplementedError, 'subclasses need to implemented'
89 end
90
91 def accuracy_unknown?
92 return accuracy.nil?
93 end
94
95 def self.valid_magnitude_status?(s)
96 if s == '=' || s == '>' || s == '<' || s == '<=' ||
97 s == '>=' || s == '~'
98 return true
99 else
100 return false
101 end
102 end
[4]103 end
[88]104
[104]105 class DV_Ordinal < DV_Ordered
[142]106 attr_reader :value, :symbol, :limits
107
108 def initialize(value, symbol, limits=nil, normal_range=nil,
109 normal_status = nil, other_reference_ranges=nil)
110 self.value = value
111 self.symbol = symbol
112 self.limits = limits
113 super(normal_range, normal_status, other_reference_ranges)
[140]114 end
[137]115
[142]116 def value=(value)
117 raise ArgumentError, 'value should not be nil' if value.nil?
118 @value = value
119 end
[140]120
[142]121 def symbol=(symbol)
122 raise ArgumentError,'symbol should not be nil' if symbol.nil?
123 @symbol = symbol
[88]124 end
[137]125
[142]126 def is_strictly_comparable_to?(others)
127 unless others.instance_of? OpenEHR::RM::Data_Types::Quantity::DV_Ordinal
128 return false
129 end
130 unless others.symbol.defining_code.terminology_id.value ==
131 @symbol.defining_code.terminology_id.value
132 return false
133 end
134 return true
135 end
136
[139]137 def <=>(other)
[142]138 @value <=> other.value
[139]139 end
[140]140
[142]141 def limits=(limits)
142 unless limits.nil? or limits.meaning.value == 'limits'
143 raise ArgumentError, 'invalid limits'
144 else
145 @limits = limits
146 end
[88]147 end
148 end
149
[104]150 class DV_Absolute_Quantity < DV_Quantified
[88]151 attr_reader :accuracy
152
153 def add(a_diff)
[122]154 raise NotImplementError, 'add must be implemented'
[88]155 end
156
157 def diff(other)
[122]158 raise NotImplementError, 'diff must be implemented'
[88]159 end
160
161 def subtract(a_diff)
[122]162 raise NotImplementError, 'subtract must be implemented'
[88]163 end
164 end
[120]165
[122]166 class DV_Amount < DV_Quantified
167 attr_reader :accuracy, :accuracy_is_percent
[140]168
[122]169 def infix(dv_amount, op)
170 raise NotImplementError, 'infix must be implemented'
171 end
[140]172
[122]173 def accuracy=(accuracy)
174 raise ArgumentError, 'accuracy invalid'
175 end
176 end
177
[140]178 class DV_Quantity < DV_Amount
179
180 end
181
[124]182 class Reference_Range
[144]183 attr_reader :meaning, :range
[141]184
[144]185 def initialize(meaning, range)
[141]186 self.meaning = meaning
[144]187 self.range = range
[141]188 end
189
190 def meaning=(meaning)
191 if meaning.nil?
192 raise ArgumentError, 'meaning should not be nil'
193 end
194 @meaning = meaning
195 end
[144]196
197 def range=(range)
198 if range.nil?
199 raise ArgumentError, 'range should not be nil'
200 end
201 @range = range
202 end
203
204 def is_in_range?(val)
205 return @range.has?(val)
206 end
[124]207 end
[139]208
209 module Proportion_Kind
210 PK_RATIO = 0
211 PK_UNITARY = 1
212 PK_PERCENT = 2
213 PK_FRACTION = 3
214 PK_INTEGER_FRACTION = 4
215
216 def Proportion_Kind.valid_proportion_kind?(kind)
217 return true if kind >= 0 && kind <= 4
218 return false
219 end
[140]220 end # end of Proportion_Kind
[4]221 end # of Quantity
222 end # of Data_Types
223 end # of RM
224end # of OpenEHR
Note: See TracBrowser for help on using the repository browser.