Class: Stupidedi::Versions::FunctionalGroups::ThirtyTen::ElementTypes::StringVal::NonEmpty

Inherits:
Stupidedi::Versions::FunctionalGroups::ThirtyTen::ElementTypes::StringVal show all
Extended by:
Forwardable, Operators::Relational, Operators::Unary, Operators::Wrappers
Includes:
Comparable
Defined in:
lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb

Overview

Non-empty string value. Shouldn’t be directly instantiated – instead, use the value constructor.

Instance Attribute Summary collapse

Attributes inherited from Stupidedi::Values::SimpleElementVal

#position, #usage

Instance Method Summary collapse

Methods included from Operators::Wrappers

wrappers

Methods included from Operators::Unary

unary_operators

Methods included from Operators::Relational

relational_operators

Methods inherited from Stupidedi::Versions::FunctionalGroups::ThirtyTen::ElementTypes::StringVal

empty, #map, #string?, value

Methods inherited from Stupidedi::Values::SimpleElementVal

#allowed?, #component?, #date?, #id?, #leaf?, #numeric?, #simple?, #string?, #time?

Methods inherited from Stupidedi::Values::AbstractElementVal

#element?, #size

Methods inherited from Stupidedi::Values::AbstractVal

#blank?, #characters, #component?, #composite?, #definition, #element?, #empty?, #functional_group?, #interchange?, #invalid?, #loop?, #present?, #repeated?, #segment?, #separator?, #simple?, #size, #table?, #transaction_set?, #transmission?

Methods included from Color

ansi, #ansi

Constructor Details

#initialize(string, usage, position) ⇒ NonEmpty

Returns a new instance of NonEmpty.



220
221
222
223
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 220

def initialize(string, usage, position)
  @value = string
  super(usage, position)
end

Instance Attribute Details

#valueString (readonly)

Returns:



193
194
195
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 193

def value
  @value
end

Instance Method Details

#coerce(other) ⇒ Object



233
234
235
236
237
238
239
240
241
242
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 233

def coerce(other)
  # me, he = other.coerce(self)
  # me <OP> he
  if other.respond_to?(:to_str)
    return copy(:value => other.to_str), self
  else
    raise TypeError,
      "cannot coerce StringVal to #{other.class}"
  end
end

#copy(changes = {}) ⇒ StringVal

Returns:



226
227
228
229
230
231
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 226

def copy(changes = {})
  StringVal.value \
    changes.fetch(:value, @value),
    changes.fetch(:usage, usage),
    changes.fetch(:position, position)
end

#inspectString

Returns:



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 259

def inspect
  id = definition.bind do |d|
    "[#{'% 5s' % d.id}: #{d.name}]".bind do |s|
      if usage.forbidden?
        ansi.forbidden(s)
      elsif usage.required?
        ansi.required(s)
      else
        ansi.optional(s)
      end
    end
  end

  ansi.element("AN.value#{id}") << "(#{@value})"
end

#to_date(format) ⇒ Object



279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 279

def to_date(format)
  case format
  when "D8"  # CCYYMMDD
    Date.civil(@value.slice(0, 4).to_i, # year
               @value.slice(4, 2).to_i, # month
               @value.slice(6, 2).to_i) # day
  when "DB"  # MMDDCCYY
    Date.civil(@value.slice(4, 4).to_i,
               @value.slice(0, 2).to_i,
               @value.slice(2, 2).to_i)
  when "DDT" # CCYYMMDD-CCYYMMDDHHMM
    Time.utc(@value.slice(0, 4).to_i,     # year
             @value.slice(4, 2).to_i,     # month
             @value.slice(6, 2).to_i) ..  # day
    Time.utc(@value.slice(9, 4).to_i,
             @value.slice(13, 2).to_i,
             @value.slice(15, 2).to_i,
             @value.slice(17, 2).to_i,    # hour
             @value.slice(19, 2).to_i)    # minute
  when "DT"  # CCYYMMDDHHMM
    Time.utc(@value.slice(0, 4).to_i,
             @value.slice(4, 2).to_i,
             @value.slice(6, 2).to_i,
             @value.slice(8, 2).to_i,
             @value.slice(10, 2).to_i)
  when "DTD" # CCYYMMDDHHMM-CCYYMMDD
    Time.utc(@value.slice(0, 4).to_i,
             @value.slice(4, 2).to_i,
             @value.slice(6, 2).to_i,
             @value.slice(8, 2).to_i,
             @value.slice(10, 2).to_i) ..
    Time.utc(@value.slice(13, 4).to_i,
             @value.slice(15, 2).to_i,
             @value.slice(17, 2).to_i)
  when "DTS" # CCYYMMDDHHMMSS-CCYYMMDDHHMMSS
    Time.utc(@value.slice(0, 4).to_i,
             @value.slice(4, 2).to_i,
             @value.slice(6, 2).to_i,
             @value.slice(8, 2).to_i,
             @value.slice(10, 2).to_i,
             @value.slice(12, 2).to_i) ..
    Time.utc(@value.slice(15, 4).to_i,
             @value.slice(19, 2).to_i,
             @value.slice(21, 2).to_i,
             @value.slice(23, 2).to_i,
             @value.slice(25, 2).to_i,
             @value.slice(27, 2).to_i)
  when "RD"  # MMDDCCYY-MMDDCCYY
    Date.civil(@value.slice(4, 4).to_i,
               @value.slice(0, 2).to_i,
               @value.slice(2, 2).to_i) ..
    Date.civil(@value.slice(13, 4).to_i,
               @value.slice(9, 2).to_i,
               @value.slice(11, 2).to_i)
  when "RD8" # CCYYMMDD-CCYYMMDD
    Date.civil(@value.slice(0, 4).to_i,
               @value.slice(4, 2).to_i,
               @value.slice(6, 2).to_i) ..
    Date.civil(@value.slice(9, 4).to_i,
               @value.slice(13, 2).to_i,
               @value.slice(15, 2).to_i)
  when "RDT" # CCYYMMDDHHMM-CCYYMMDDHHMM
    Time.utc(@value.slice(0, 4).to_i,
             @value.slice(4, 2).to_i,
             @value.slice(6, 2).to_i,
             @value.slice(8, 2).to_i,
             @value.slice(10, 2).to_i) ..
    Time.utc(@value.slice(13, 4).to_i,
             @value.slice(15, 2).to_i,
             @value.slice(17, 2).to_i,
             @value.slice(19, 2).to_i,
             @value.slice(21, 2).to_i)
  when "RTS" # CCYYMMDDHHMMSS
    Time.utc(@value.slice(0, 4).to_i,
             @value.slice(4, 2).to_i,
             @value.slice(6, 2).to_i,
             @value.slice(8, 2).to_i,
             @value.slice(10, 2).to_i)
  else
    raise ArgumentError,
      "Format code #{format} is not recognized"
  end
end

#to_x12(truncate = true) ⇒ String

Returns:



253
254
255
256
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 253

def to_x12(truncate = true)
  x12 = @value.ljust(definition.min_length, " ")
  truncate ? x12.take(definition.max_length) : x12
end

#too_long?Boolean

Returns:

  • (Boolean)


244
245
246
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 244

def too_long?
  @value.lstrip.length > definition.max_length
end

#too_short?Boolean

Returns:

  • (Boolean)


248
249
250
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 248

def too_short?
  @value.lstrip.length < definition.min_length
end

#valid?Boolean

Returns:

  • (Boolean)


275
276
277
# File 'lib/stupidedi/versions/functional_groups/003010/element_types/string_val.rb', line 275

def valid?
  true
end