15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# File 'lib/adiwg/mdtranslator/readers/mdJson/modules/module_duration.rb', line 15
def self.unpack(hDuration, responseObj, inContext = nil)
@MessagePath = ADIWG::Mdtranslator::Readers::MdJson::MdJson
if hDuration.empty?
@MessagePath.issueWarning(220, responseObj, inContext)
return nil
end
intMetadataClass = InternalMetadata.new
intDuration = intMetadataClass.newDuration
if hDuration.has_key?('years')
if hDuration['years'].nil?
intDuration[:years] = 0
else
intDuration[:years] = hDuration['years']
end
else
intDuration[:years] = 0
end
if hDuration.has_key?('months')
if hDuration['months'].nil?
intDuration[:months] = 0
else
intDuration[:months] = hDuration['months']
end
else
intDuration[:months] = 0
end
if hDuration.has_key?('days')
if hDuration['days'].nil?
intDuration[:days] = 0
else
intDuration[:days] = hDuration['days']
end
else
intDuration[:days] = 0
end
if hDuration.has_key?('hours')
if hDuration['hours'].nil?
intDuration[:hours] = 0
else
intDuration[:hours] = hDuration['hours']
end
else
intDuration[:hours] = 0
end
if hDuration.has_key?('minutes')
if hDuration['minutes'].nil?
intDuration[:minutes] = 0
else
intDuration[:minutes] = hDuration['minutes']
end
else
intDuration[:minutes] = 0
end
if hDuration.has_key?('seconds')
if hDuration['seconds'].nil?
intDuration[:seconds] = 0
else
intDuration[:seconds] = hDuration['seconds']
end
else
intDuration[:seconds] = 0
end
totalDuration = intDuration[:years] +
intDuration[:months] +
intDuration[:days] +
intDuration[:hours] +
intDuration[:minutes] +
intDuration[:seconds]
unless totalDuration > 0
@MessagePath.issueError(221, responseObj, inContext)
end
return intDuration
end
|