pipehat 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rubocop.yml +18 -0
- data/.travis.yml +10 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +21 -0
- data/README.md +184 -0
- data/Rakefile +10 -0
- data/bin/console +10 -0
- data/bin/setup +8 -0
- data/lib/pipehat.rb +22 -0
- data/lib/pipehat/component/base.rb +30 -0
- data/lib/pipehat/define_type.rb +68 -0
- data/lib/pipehat/field/base.rb +59 -0
- data/lib/pipehat/message.rb +32 -0
- data/lib/pipehat/node.rb +53 -0
- data/lib/pipehat/parser.rb +149 -0
- data/lib/pipehat/repeat/base.rb +31 -0
- data/lib/pipehat/segment/aip.rb +21 -0
- data/lib/pipehat/segment/ais.rb +21 -0
- data/lib/pipehat/segment/al1.rb +15 -0
- data/lib/pipehat/segment/base.rb +124 -0
- data/lib/pipehat/segment/dg1.rb +30 -0
- data/lib/pipehat/segment/err.rb +21 -0
- data/lib/pipehat/segment/evn.rb +16 -0
- data/lib/pipehat/segment/in1.rb +64 -0
- data/lib/pipehat/segment/msa.rb +17 -0
- data/lib/pipehat/segment/msh.rb +52 -0
- data/lib/pipehat/segment/obr.rb +63 -0
- data/lib/pipehat/segment/obx.rb +37 -0
- data/lib/pipehat/segment/orc.rb +43 -0
- data/lib/pipehat/segment/pid.rb +49 -0
- data/lib/pipehat/segment/prd.rb +23 -0
- data/lib/pipehat/segment/pv1.rb +63 -0
- data/lib/pipehat/segment/rf1.rb +34 -0
- data/lib/pipehat/segment/rgs.rb +12 -0
- data/lib/pipehat/segment/sch.rb +36 -0
- data/lib/pipehat/subcomponent/base.rb +27 -0
- data/lib/pipehat/types/aui.rb +8 -0
- data/lib/pipehat/types/ce.rb +11 -0
- data/lib/pipehat/types/cne.rb +27 -0
- data/lib/pipehat/types/cnn.rb +16 -0
- data/lib/pipehat/types/cp.rb +11 -0
- data/lib/pipehat/types/cq.rb +7 -0
- data/lib/pipehat/types/cwe.rb +27 -0
- data/lib/pipehat/types/cx.rb +17 -0
- data/lib/pipehat/types/dld.rb +7 -0
- data/lib/pipehat/types/dt.rb +4 -0
- data/lib/pipehat/types/dtm.rb +4 -0
- data/lib/pipehat/types/ei.rb +9 -0
- data/lib/pipehat/types/eip.rb +7 -0
- data/lib/pipehat/types/erl.rb +11 -0
- data/lib/pipehat/types/fn.rb +10 -0
- data/lib/pipehat/types/hd.rb +8 -0
- data/lib/pipehat/types/id.rb +4 -0
- data/lib/pipehat/types/is.rb +4 -0
- data/lib/pipehat/types/mo.rb +7 -0
- data/lib/pipehat/types/moc.rb +7 -0
- data/lib/pipehat/types/msg.rb +8 -0
- data/lib/pipehat/types/ndl.rb +16 -0
- data/lib/pipehat/types/nm.rb +4 -0
- data/lib/pipehat/types/pl.rb +16 -0
- data/lib/pipehat/types/pln.rb +9 -0
- data/lib/pipehat/types/prl.rb +8 -0
- data/lib/pipehat/types/pt.rb +7 -0
- data/lib/pipehat/types/rc.rb +7 -0
- data/lib/pipehat/types/sad.rb +8 -0
- data/lib/pipehat/types/si.rb +4 -0
- data/lib/pipehat/types/snm.rb +4 -0
- data/lib/pipehat/types/st.rb +4 -0
- data/lib/pipehat/types/ts.rb +7 -0
- data/lib/pipehat/types/tx.rb +4 -0
- data/lib/pipehat/types/varies.rb +28 -0
- data/lib/pipehat/types/vid.rb +8 -0
- data/lib/pipehat/types/xad.rb +28 -0
- data/lib/pipehat/types/xcn.rb +30 -0
- data/lib/pipehat/types/xon.rb +15 -0
- data/lib/pipehat/types/xpn.rb +20 -0
- data/lib/pipehat/types/xtn.rb +22 -0
- data/lib/pipehat/version.rb +3 -0
- data/pipehat.gemspec +27 -0
- metadata +127 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 321edea28b62f76b4ea8686bacea94d759caee4f0d9f43a581c01e373c0aacdb
|
4
|
+
data.tar.gz: 29ce16e9504f7f649eb78917842372157c21a8bff777597b4f3169194a5e966d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c51d419897f44c88f32d773a8f1536a6e026ebcb29acd56cb428b12c407e915980f52bdd1a6a886bfdaf92a712c76074438831ee844818eb020e544826581720
|
7
|
+
data.tar.gz: 69a196afd98264821be5906909e10972453ff64aab3f202c88ddfdbb3cd1e51240e7aba6041ca020fc95e46db21d569cd797d2e9d3c25e0990cfb99f807cb935
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
---
|
2
|
+
AllCops:
|
3
|
+
TargetRubyVersion: 2.4
|
4
|
+
|
5
|
+
Style/StringLiterals:
|
6
|
+
EnforcedStyle: double_quotes
|
7
|
+
Style/StringLiteralsInInterpolation:
|
8
|
+
EnforcedStyle: double_quotes
|
9
|
+
|
10
|
+
Metrics/LineLength:
|
11
|
+
Max: 120
|
12
|
+
|
13
|
+
Metrics/AbcSize:
|
14
|
+
Exclude:
|
15
|
+
- "**/test/*_test.rb"
|
16
|
+
Metrics/MethodLength:
|
17
|
+
Exclude:
|
18
|
+
- "**/test/*_test.rb"
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at tim@catminion.net. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Tim Peters
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,184 @@
|
|
1
|
+
# Pipehat [](https://travis-ci.org/timocp/pipehat)
|
2
|
+
|
3
|
+
Pipehat is a Ruby gem for reading and writing HL7 v.2.x messages.
|
4
|
+
|
5
|
+
This library is experimental - the API is incomplete and may change, and it does
|
6
|
+
not support a lot of segment and data types yet.
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
gem 'pipehat'
|
14
|
+
```
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle install
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install pipehat
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
Pipehat is aware of the type of each HL7v2 field. This allows each field,
|
27
|
+
component and sub-component to be accessed by name.
|
28
|
+
|
29
|
+
### Parsing HL7
|
30
|
+
|
31
|
+
Suppose the following simple example of an (incomplete) admission message
|
32
|
+
and a PID message with 2 patient IDs (showing a repeating field and
|
33
|
+
subcomponents).
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
# Parse a message from a string
|
37
|
+
hl7 = "MSH|^~\&|||||20200927212805+0930||ADT^A01^ADT_A01|1234567890|D|2.5\r" \
|
38
|
+
"PID||XXX|1234^^^System1&&L~ABC^^^System2&&L||Family^Given"
|
39
|
+
msg = Pipehat::Message.new(hl7)
|
40
|
+
```
|
41
|
+
|
42
|
+
Messages are essentially an array of segments. Individual segments can be
|
43
|
+
accessed using `#segments`. The optional parameter will filter by segment
|
44
|
+
type. This method returns an Enumerator.
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
# Example, pick the first PID segment
|
48
|
+
pid = msg.segments(:PID).first
|
49
|
+
```
|
50
|
+
|
51
|
+
Once a segment is accessed, fields, repeats, components and sub-components
|
52
|
+
can be accessed by name. Note that these methods return a subclass of
|
53
|
+
Pipehat::Node, which is an index into the segment. To retreive the string
|
54
|
+
value at (or under) that position, call `@to_s` on the node.
|
55
|
+
|
56
|
+
```ruby
|
57
|
+
# Access the value of PID-2 (deprecated patient ID)
|
58
|
+
pid.patient_id.to_s #=> "XXX"
|
59
|
+
|
60
|
+
# Access the first repeat in PID-3 (patient ID list)
|
61
|
+
pid.patient_identifier_list.first.to_s #=> "1234"
|
62
|
+
|
63
|
+
# Which is equivalent to accessing the first component of the field, which
|
64
|
+
# can also be accessed by name as it is known to be a CX type:
|
65
|
+
pid.patient_identifier_list.first.id_number.to_s #=> "1234"
|
66
|
+
|
67
|
+
# The 4th component of PID-3 is a composite type (HD), so its parts can
|
68
|
+
# also be accessed individually:
|
69
|
+
pid.patient_identifier_list.first.assigning_authority.namespace_id.to_s #=> "System1"
|
70
|
+
pid.patient_identifier_list.first.assigning_authority.universal_id_type.to_s #=> "L"
|
71
|
+
|
72
|
+
# Field repetitions can be ignored - in this case, Pipehat will assume you
|
73
|
+
# are referring to the first repeat.
|
74
|
+
pid.patient_identifier_list.assigning_authority.namespace_id.to_s #=> "System1"
|
75
|
+
|
76
|
+
# Access the second repeat in PID-3. Indexes into repeats are 1-based, for
|
77
|
+
# consistency with other HL7 positional indexing.
|
78
|
+
pid.patient_identifier_list[2].to_s #=> "ABC"
|
79
|
+
pid.patient_identifier_list[2].id_number.to_s #=> "ABC"
|
80
|
+
pid.patient_identifier_list[2].assigning_authority.namespace_id.to_s #=> "System2"
|
81
|
+
```
|
82
|
+
|
83
|
+
Values can also be accessed positionally by index instead of name. This could
|
84
|
+
be useful to access values:
|
85
|
+
|
86
|
+
* from a segment type this library doesn't understand
|
87
|
+
* that have additional components in newer versions of HL7 which this library doesn't understand
|
88
|
+
* that are invalid (eg, extra components or subcomponents)
|
89
|
+
|
90
|
+
```ruby
|
91
|
+
# Equivalent to the last example in the previous section
|
92
|
+
pid.field(3).repeat(2).component(1).subcomponent(1) #=> "System2"
|
93
|
+
|
94
|
+
# Again, repetitions can be ignored if you just want to read from the first
|
95
|
+
pid.field(3).component(1).subcomponent(1) #=> "System1"
|
96
|
+
```
|
97
|
+
|
98
|
+
The method names way of accessing segments can be more verbose but is also
|
99
|
+
more readable and self-documenting.
|
100
|
+
|
101
|
+
### Generating HL7
|
102
|
+
|
103
|
+
Example to generate a message the same as the above example. Note that the
|
104
|
+
field separator and encoding characters do not have to be provided, they are
|
105
|
+
initialized automatically.
|
106
|
+
|
107
|
+
```ruby
|
108
|
+
msg = Pipehat::Message.new
|
109
|
+
msg << Pipehat::Segment::MSH.new.tap do |msh|
|
110
|
+
msh.date_time_of_message = Time.now.strftime("%Y%m%d%H%M%S%z")
|
111
|
+
msh.message_type.message_code = "ADT"
|
112
|
+
msh.message_type.trigger_event = "A01"
|
113
|
+
msh.message_type.message_structure = "ADT_A01"
|
114
|
+
msh.message_control_id = "1234567890"
|
115
|
+
msh.processing_id = "D"
|
116
|
+
msh.version_id = "2.5"
|
117
|
+
end
|
118
|
+
msg << Pipehat::Segment::PID.new.tap do |pid|
|
119
|
+
pid.patient_id = "XXX"
|
120
|
+
pid.patient_name.family_name = "Family"
|
121
|
+
pid.patient_name.given_name = "Given"
|
122
|
+
|
123
|
+
# PID-3 first repeat (since no repeat is mentioned)
|
124
|
+
pid.patient_identifier_list.id_number = "1234"
|
125
|
+
pid.patient_identifier_list.assigning_authority.namespace_id = "System1"
|
126
|
+
pid.patient_identifier_list.assigning_authority.universal_id_type = "L"
|
127
|
+
# PID-3 second repeat
|
128
|
+
pid.patient_identifier_list[2].id_number = "ABC"
|
129
|
+
pid.patient_identifier_list[2].assigning_authority.namespace_id = "System2"
|
130
|
+
pid.patient_identifier_list[2].assigning_authority.universal_id_type = "L"
|
131
|
+
end
|
132
|
+
msg.to_hl7 #=> "MSH|^~\\&|||||20200927212805+0930||ADT^A01^ADT_A01|1234567890|D|2.5\r..."
|
133
|
+
```
|
134
|
+
|
135
|
+
The indexed based access looks slightly different due to ruby syntax; the `set`
|
136
|
+
method must be called on the node object. `set` can be called at any level
|
137
|
+
from field to subcomponent and it will replace all current values.
|
138
|
+
|
139
|
+
```ruby
|
140
|
+
pid = Pipehat::Segment::PID.new
|
141
|
+
pid.field(3).repeat(2).component(4).set("System2")
|
142
|
+
pid.field(3).repeat(2).component(4).subcomponent(3).set("L")
|
143
|
+
# is equivalent to:
|
144
|
+
# pid.patient_identifier_list[2].assigning_authority = "System2"
|
145
|
+
# pid.patient_identifier_list[2].assigning_authority.universal_id_type = "L"
|
146
|
+
|
147
|
+
pid.to_hl7 #=> "PID|||~^^^System2&&L"
|
148
|
+
```
|
149
|
+
|
150
|
+
### HL7 Escaping
|
151
|
+
|
152
|
+
Values returned by the `to_s` methods have HL7 escape codes automatically
|
153
|
+
unescaped. Assigning a value will automatically be escaped. The unescaped
|
154
|
+
version can be read with `unescaped`.
|
155
|
+
|
156
|
+
```ruby
|
157
|
+
pid = Pipehat::Segment::PID.new("PID||123\\R\\456")
|
158
|
+
pid.patient_id.to_s #=> "123~456"
|
159
|
+
pid.patient_id.unescaped #=> "123\\R\\456"
|
160
|
+
pid.patient_identifier_list = "A & B"
|
161
|
+
pid.to_hl7 #=> "PID||123\\R\\456|A \\T\\ B"
|
162
|
+
```
|
163
|
+
|
164
|
+
Note there is currently no way to set a string without the escaping (this will
|
165
|
+
be needed when writing, for example, HL7 Formatted Text).
|
166
|
+
|
167
|
+
## Development
|
168
|
+
|
169
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
170
|
+
|
171
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
172
|
+
|
173
|
+
## Contributing
|
174
|
+
|
175
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/timocp/pipehat. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/timocp/pipehat/blob/master/CODE_OF_CONDUCT.md).
|
176
|
+
|
177
|
+
|
178
|
+
## License
|
179
|
+
|
180
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
181
|
+
|
182
|
+
## Code of Conduct
|
183
|
+
|
184
|
+
Everyone interacting in the Pipehat project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/timocp/pipehat/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
data/bin/setup
ADDED
data/lib/pipehat.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require "pipehat/version"
|
2
|
+
|
3
|
+
module Pipehat
|
4
|
+
class Error < StandardError; end
|
5
|
+
end
|
6
|
+
|
7
|
+
require "pipehat/parser"
|
8
|
+
require "pipehat/segment/base"
|
9
|
+
require "pipehat/node"
|
10
|
+
require "pipehat/field/base"
|
11
|
+
require "pipehat/repeat/base"
|
12
|
+
require "pipehat/component/base"
|
13
|
+
require "pipehat/subcomponent/base"
|
14
|
+
require "pipehat/define_type"
|
15
|
+
require "pipehat/message"
|
16
|
+
|
17
|
+
Dir[File.join(__dir__, "pipehat", "types", "*.rb")].sort.each { |file| require file }
|
18
|
+
Dir[File.join(__dir__, "pipehat", "segment", "*.rb")].sort.each { |file| require file }
|
19
|
+
|
20
|
+
ObjectSpace.each_object(Pipehat::Segment::Base.singleton_class).each do |segment_class|
|
21
|
+
segment_class.field_names.freeze
|
22
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Pipehat
|
2
|
+
module Component
|
3
|
+
class Base < Pipehat::Node
|
4
|
+
def initialize(segment, fnum, rnum, cnum)
|
5
|
+
@segment = segment
|
6
|
+
@fnum = fnum
|
7
|
+
@rnum = rnum
|
8
|
+
@cnum = cnum
|
9
|
+
end
|
10
|
+
|
11
|
+
attr_reader :segment, :fnum, :rnum, :cnum
|
12
|
+
|
13
|
+
def subcomponent(snum, type = Pipehat::Subcomponent::Base)
|
14
|
+
type.new(segment, fnum, rnum, cnum, snum)
|
15
|
+
end
|
16
|
+
|
17
|
+
def set(value)
|
18
|
+
segment.set_component(fnum, rnum, cnum, value)
|
19
|
+
end
|
20
|
+
|
21
|
+
def to_hl7
|
22
|
+
(segment.tree(fnum, rnum, cnum) || []).join(parser.subcomponent_sep)
|
23
|
+
end
|
24
|
+
|
25
|
+
def inspect
|
26
|
+
inspect_node(fnum, rnum, cnum)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Pipehat
|
4
|
+
class TypeDefinitionProxy
|
5
|
+
def initialize(fclass, rclass, cclass)
|
6
|
+
@fclass = fclass
|
7
|
+
@rclass = rclass
|
8
|
+
@cclass = cclass
|
9
|
+
@count = 0
|
10
|
+
end
|
11
|
+
|
12
|
+
def add_component(name, type)
|
13
|
+
setter = "#{name}=".to_sym
|
14
|
+
count = @count += 1
|
15
|
+
|
16
|
+
@fclass.component_names << name
|
17
|
+
@rclass.component_names << name
|
18
|
+
@cclass.component_names << name
|
19
|
+
|
20
|
+
# component for a field class is delegated to the first repeat and
|
21
|
+
# returns a Component
|
22
|
+
@fclass.send(:define_method, name) do
|
23
|
+
first.send(name)
|
24
|
+
end
|
25
|
+
|
26
|
+
@fclass.send(:define_method, setter) do |value|
|
27
|
+
first.send(setter, value)
|
28
|
+
end
|
29
|
+
|
30
|
+
# component in a repeat class returns a Component
|
31
|
+
@rclass.send(:define_method, name) do
|
32
|
+
component(count, Object.const_get("Pipehat::Component::#{type}"))
|
33
|
+
end
|
34
|
+
|
35
|
+
@rclass.send(:define_method, setter) do |value|
|
36
|
+
send(name).set(value)
|
37
|
+
end
|
38
|
+
|
39
|
+
# component in a component class returns a Subcomponent
|
40
|
+
@cclass.send(:define_method, name) do
|
41
|
+
subcomponent(count, Object.const_get("Pipehat::Subcomponent::#{type}"))
|
42
|
+
end
|
43
|
+
|
44
|
+
@cclass.send(:define_method, setter) do |value|
|
45
|
+
send(name).set(value)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def self.define_type(type, &block)
|
51
|
+
# define classes at each level
|
52
|
+
fclass = Pipehat::Field.const_set(type, Class.new(Pipehat::Field::Base))
|
53
|
+
rclass = Pipehat::Repeat.const_set(type, Class.new(Pipehat::Repeat::Base))
|
54
|
+
cclass = Pipehat::Component.const_set(type, Class.new(Pipehat::Component::Base))
|
55
|
+
|
56
|
+
if block_given?
|
57
|
+
# composite type
|
58
|
+
TypeDefinitionProxy.new(fclass, rclass, cclass).instance_eval(&block)
|
59
|
+
fclass.component_names.freeze
|
60
|
+
rclass.component_names.freeze
|
61
|
+
cclass.component_names.freeze
|
62
|
+
else
|
63
|
+
# primitive type
|
64
|
+
sclass = Pipehat::Subcomponent.const_set(type, Class.new(Pipehat::Subcomponent::Base))
|
65
|
+
sclass.component_names.freeze
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|