OpenMatriX 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fc3f7e6de64058308d71b2015682a0fed843fd2b
4
+ data.tar.gz: 9b256a2449c2db20946adef364c35eee8e3903e2
5
+ SHA512:
6
+ metadata.gz: 414f14244269e1cedd5b379bf55c3b07190e9f9f67a8a7b012305ec5002f635221acd64628aefc0f25cbe717df3ec43bb6475f3b256ce06774ef91df46bd829b
7
+ data.tar.gz: 7bb270b4dbe944287ef7767a7c0a8df0f47b1da0efbb26f83fc32f1d3555dd5a22b28227173e21d83c8df866cf49ad17c5741c2d3c05459f77e52fb692b8ad69
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.7
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in OpenMatriX.gemspec
4
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'OpenMatriX/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "OpenMatriX"
8
+ spec.version = OpenMatriX::VERSION
9
+ spec.authors = ["Andrew Rohne"]
10
+ spec.email = ["arohne@oki.org"]
11
+ spec.licenses = ["Apache-2.0"]
12
+ spec.summary = %q{Open Matrix support for Ruby}
13
+ spec.description = %q{Open Matrix Ruby API}
14
+ spec.homepage = "https://github.com/okiandrew/OpenMatriX"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.10"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rspec", "~> 3.3"
24
+
25
+ spec.add_dependency "ffi", "~> 1.9"
26
+ spec.add_dependency "narray", "~> 0.6"
27
+ end
data/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # OpenMatriX
2
+
3
+ OpenMatriX is a Ruby Gem to read (Open Matrix files)[https://sites.google.com/site/openmodeldata/]. This was built for use on the web and to eventually have APIs that can return values from a matrix.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'OpenMatriX'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install OpenMatriX
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ # Open file
25
+ # OMX::OMXFile.new(filename)
26
+ file = OMX::OMXFile.new('filename.omx')
27
+
28
+ # Get the attributes from the file
29
+ at = OMX::OMXAttr.new(file)
30
+ puts "Version: #{at.getVersion()}"
31
+ puts "Zones: #{at.getZones()}"
32
+
33
+ # Get the tables from the file
34
+ t = OMX::OMXTables.new(file)
35
+ puts "Tables: #{t.getNTables()}"
36
+ puts "Table Names: #{t.getTableNames()}"
37
+
38
+ # Get data from the file
39
+ # OMX::OMXData.new(file,"Tablename", nZones)
40
+ tt = OMX::OMXData.new(file,"DIST",at.getZones())
41
+ puts tt.getJ(5)
42
+
43
+ # Close the file
44
+ file.close()
45
+ ```
46
+
47
+ ## Important Concepts for Non-Travel-Modelers
48
+
49
+ Note that our use of matrices may be a little different from others', and we
50
+ have some of our own nomenclature.
51
+
52
+ The use of the term "zone" refers to a geographic location called a Traffic
53
+ Analysis Zone, or TAZ. These TAZs are created by the model "owner", which
54
+ differs by state and jurisdiction.
55
+
56
+ Zones are generally sequentially numbered starting with 1. OMX files, depending
57
+ on how they are viewed and/or accessed likely start at 0, so increments/decrements
58
+ are fairly common in code.
59
+
60
+ In travel modeling, there is a nomenclature that I is a production or origin
61
+ zone and J is an attraction or destination zone. "Production" and "Attraction"
62
+ are not the same as "Origin" and "Destination". We treat I as the matrix ROW and
63
+ J as the matrix COLUMN. So I=10, J=20 would be row 10 (1-based, row 9 if 0-based)
64
+ and column 20 (1-based, column 19 of 0-based).
65
+
66
+ ## Contributing
67
+
68
+ This is still under some development. Bug reports and pull requests are welcome on GitHub at https://github.com/okiandrew/OpenMatriX.
69
+
70
+ ## Contact
71
+
72
+ Old School Email: arohne (at) oki (dot) org
73
+
74
+ Twitter: @okiAndrew
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "OpenMatriX"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module OpenMatriX
2
+ VERSION = "0.1.0"
3
+ end
data/lib/OpenMatriX.rb ADDED
@@ -0,0 +1,343 @@
1
+ require "OpenMatriX/version"
2
+
3
+ module OMX
4
+
5
+ # Lots of this was built upon the work at https://github.com/edmundhighcock/hdf5
6
+ require 'ffi'
7
+ require 'narray'
8
+ class NArray
9
+ # Returns an FFI::Pointer which points to the location
10
+ # of the actual data array in memory.
11
+ def ffi_pointer
12
+ FFI::Pointer.new(Hdf5.narray_data_address(self))
13
+ end
14
+ end
15
+
16
+ class Array
17
+ # Allocate an integer64 chunk of memory, copy the contents of
18
+ # the array into it and return an FFI::MemoryPointer to the memory.
19
+ # The memory will be garbage collected when the pointer goes out of
20
+ # scope. Obviously the array should contain only integers. This method
21
+ # is not fast and shouldn't be used for giant arrays.
22
+ def ffi_mem_pointer_int64
23
+ raise TypeError.new("Array must contain only integers.") if self.find{|el| not el.kind_of? Integer}
24
+ ptr = FFI::MemoryPointer.new(:int64, size)
25
+ ptr.write_array_of_int64(self)
26
+ ptr
27
+ end
28
+
29
+ # This method currently assumes that hsize_t is an int64... this needs
30
+ # to be generalised ASAP.
31
+ def ffi_mem_pointer_hsize_t
32
+ ffi_mem_pointer_int64
33
+ end
34
+ end
35
+
36
+ # This is a module for reading and manipulating HDF5 (Hierarchical Data Format)
37
+ # files. At the current time (July 2014) it is capable of basic reading operations.
38
+ # However, its use of the FFI library means that extending its capabilities is easy
39
+ # and quick. For a basic example see the test file.
40
+ # Basic usage:
41
+ # file = OMX::OMXile.new('filename.omx')
42
+ # file.close
43
+ #module OpenMatriX
44
+
45
+ # A module containing functions for relating HDF5 types to the appropriate
46
+ # FFI symbol. At the moment these are set by hand, but at some point in the
47
+ # future they should be set dynamically by interrogation of the the library.
48
+ module H5Types
49
+ extend FFI::Library
50
+ class << self
51
+ def herr_t
52
+ :int
53
+ end
54
+ def hid_t
55
+ :int
56
+ end
57
+ def hbool_t
58
+ :uint
59
+ end
60
+ def htri_t
61
+ :int
62
+ end
63
+ def hsize_t
64
+ :size_t
65
+ end
66
+ def h5t_class_t
67
+ enum [
68
+ :h5t_no_class , -1, #*error */
69
+ :h5t_integer , 0, #*integer types */
70
+ :h5t_float , 1, #*floating-point types */
71
+ :h5t_time , 2, #*date and time types */
72
+ :h5t_string , 3, #*character string types */
73
+ :h5t_bitfield , 4, #*bit field types */
74
+ :h5t_opaque , 5, #*opaque types */
75
+ :h5t_compound , 6, #*compound types */
76
+ :h5t_reference , 7, #*reference types */
77
+ :h5t_enum , 8, #*enumeration types */
78
+ :h5t_vlen , 9, #*variable-length types */
79
+ :h5t_array , 10, #*array types */
80
+
81
+ :h5t_nclasses #*this must be last */
82
+ ]
83
+ end
84
+ def H5T_C_S1
85
+ :string
86
+ end
87
+ def H5G_obj_t
88
+ enum [:H5G_UNKNOWN, :H5G_GROUP, :H5G_DATASET, :H5G_TYPE, :H5G_LINK,
89
+ :H5G_UDLINK, :H5G_RESERVED_5, :H5G_RESERVED_6, :H5G_RESERVED_7]
90
+ end
91
+ def time_t
92
+ :int
93
+ end
94
+ def size_t
95
+ :int
96
+ end
97
+ end
98
+ end
99
+
100
+ # A module for dynamically interrogating the environment and the library
101
+ # and providing the correct library path etc. Currently very dumb!
102
+ module H5Library
103
+ class << self
104
+ # The location of the hdf5 library. Currently it is assumed to be in
105
+ # the default linker path.
106
+ def library_path
107
+ 'hdf5'
108
+ end
109
+ end
110
+ end
111
+
112
+ extend FFI::Library
113
+ ffi_lib H5Library.library_path
114
+ attach_function :group_open, :H5Fopen, [H5Types.hid_t, :string, H5Types.hid_t], H5Types.hid_t
115
+ attach_function :get_type, :H5Iget_type, [H5Types.hid_t], H5Types.hid_t
116
+ #
117
+ # Object for wrapping an OMX file. Basic usage:
118
+ # file = OMX::OMXFile.new('filename.omx')
119
+ # => Do stuff
120
+ # file.close
121
+ #
122
+ class OMXFile
123
+ class InvalidFile < StandardError; end
124
+ extend FFI::Library
125
+ ffi_lib H5Library.library_path
126
+
127
+ #htri_t H5Fis_hdf5(const char *name )
128
+ attach_function :basic_is_hdf5, :H5Fis_hdf5, [:string], H5Types.htri_t
129
+
130
+ #hid_t H5Fopen( const char *name, unsigned flags, hid_t fapl_id )
131
+ attach_function :basic_open, :H5Fopen, [:string, :uint, H5Types.hid_t], H5Types.hid_t
132
+
133
+ #herr_t H5Fclose( hid_t file_id )
134
+ attach_function :basic_close, :H5Fclose, [H5Types.hid_t], H5Types.herr_t
135
+
136
+ #hid_t H5Aopen( hid_t obj_id, const char *attr_name, hid_t aapl_id )
137
+ #attach_function :basic_openattr, :H5Aopen, [H5Types.hid_t, :string], H5Types.hid_t
138
+
139
+ attr_reader :id
140
+ # Open the file with the given filename. Currently read only
141
+ def initialize(filename)
142
+ raise Errno::ENOENT.new("File #{filename} does not exist") unless FileTest.exist?(filename)
143
+ raise InvalidFile.new("File #{filename} is not a valid hdf5 file") unless basic_is_hdf5(filename) > 0
144
+ @filename = filename
145
+ @id = basic_open(filename, 0x0000, 0)
146
+ raise InvalidFile.new("An unknown problem occured opening #{filename}") if @id < 0
147
+ end
148
+ # Is the file a valid hdf5 file
149
+ def is_hdf5?
150
+ basic_is_hdf5(@filename) > 0
151
+ end
152
+ # Close the file
153
+ def close
154
+ basic_close(@id)
155
+ end
156
+ # Return a group object with the given name
157
+ # (relative to the root of the file)
158
+ def group(name)
159
+ return H5Group.open(@id, name)
160
+ end
161
+ # Return a dataset object with the given name
162
+ # (relative to the root of the file)
163
+ def dataset(name)
164
+ return H5Dataset.open2(@id, name)
165
+ end
166
+ end #Class OMXile
167
+
168
+ # A Class to read and return the OMX version and shape (number of zones) attribute
169
+ class OMXAttr
170
+ class InvalidFile < StandardError; end
171
+ extend FFI::Library
172
+ ffi_lib H5Library.library_path
173
+
174
+ #herr_t H5Aread(hid_t attr_id, hid_t mem_type_id, void *buf )
175
+ attach_function :basic_readattr, :H5Aread, [H5Types.hid_t, H5Types.hid_t, :pointer], H5Types.herr_t
176
+
177
+ #hid_t H5Aget_type(hid_t attr_id)
178
+ attach_function :get_type, :H5Aget_type, [H5Types.hid_t], H5Types.hid_t
179
+
180
+ #hid_t H5Aopen_name( hid_t loc_id, const char *name )
181
+ attach_function :basic_openattr, :H5Aopen, [H5Types.hid_t, :string], H5Types.hid_t
182
+
183
+ #hid_t H5Tcopy( hid_t dtype_id )
184
+ attach_function :h5t_copy, :H5Tcopy, [H5Types.hid_t], H5Types.hid_t
185
+
186
+ attach_variable :H5T_C_S1_g, :int
187
+
188
+ def initialize(file)
189
+ @id = file.id
190
+ end
191
+
192
+ # A function to return the OMX Version number
193
+ def getVersion()
194
+ aid = basic_openattr(@id,"OMX_VERSION")
195
+ attrOut = FFI::MemoryPointer.new(H5Types.hsize_t)
196
+ sv = get_type(aid)
197
+ oo = basic_readattr(aid,sv,attrOut)
198
+ raise InvalidFile.new("OMX_VERSION Attribute not found") if oo < 0
199
+ return(attrOut.read_string())
200
+ end
201
+
202
+ # A function to return the number of zones
203
+ def getZones()
204
+ aid = basic_openattr(@id,"SHAPE")
205
+ attrOut = FFI::MemoryPointer.new(H5Types.hsize_t)
206
+ sv = get_type(aid)
207
+ oo = basic_readattr(aid,sv,attrOut)
208
+ raise InvalidFile.new("SHAPE Attribute not found") if oo < 0
209
+ return(attrOut.read_int())
210
+ end
211
+
212
+ end #Class OMXAttr
213
+
214
+ # A class to return the tables in the OMX file
215
+ class OMXTables
216
+ class InvalidFile < StandardError; end
217
+ extend FFI::Library
218
+ ffi_lib H5Library.library_path
219
+
220
+ #hid_t H5Dopen( hid_t loc_id, const char *name )
221
+ attach_function :gOpen, :H5Gopen1, [H5Types.hid_t, :string], H5Types.hid_t
222
+
223
+ #herr_t H5Gget_num_objs(hid_t loc_id, hsize_t* num_obj)
224
+ attach_function :nTables, :H5Gget_num_objs, [H5Types.hid_t, :pointer], H5Types.herr_t
225
+
226
+ #ssize_t H5Gget_objname_by_idx(hid_t loc_id, hsize_t idx, char *name, size_t size )
227
+ attach_function :tNames, :H5Gget_objname_by_idx, [H5Types.hid_t, :int, :pointer, :int], :int
228
+
229
+ def initialize(file)
230
+ @id = file.id
231
+ @gId = gOpen(@id, "data")
232
+ end
233
+
234
+ # A function to return the number of matrix tables. Returns an integer value
235
+ # of the number of tables in the matrix
236
+ def getNTables()
237
+ nObjs = FFI::MemoryPointer.new(H5Types.hsize_t)
238
+ nT = nTables(@gId, nObjs)
239
+ return(nObjs.read_int())
240
+ end
241
+
242
+ # A function to get the table info... kind of a useless function for now
243
+ # TODO: Can this be removed?
244
+ def getTableInfo()
245
+ sb = Statbuf.new
246
+ oi = tInfo(@id, "data", 0, sb)
247
+ puts sb[:nlink]
248
+ return(oi)
249
+ end
250
+
251
+ # A function to get the table names. Returns a string array of table names.
252
+ def getTableNames()
253
+ nT = self.getNTables()-1
254
+
255
+ tN ||= []
256
+ for t in 0..nT
257
+ tName = FFI::MemoryPointer.new(:string)
258
+ tno = tNames(@gId,t,tName,100)
259
+ tN << tName.read_string()
260
+ end
261
+ return(tN)
262
+ end
263
+
264
+ end #class OMXTables
265
+
266
+ #Class to read the data from the OMX file
267
+ class OMXData
268
+ class InvalidFile < StandardError; end
269
+ extend FFI::Library
270
+ ffi_lib H5Library.library_path
271
+
272
+ #hid_t H5Dopen2( hid_t loc_id, const char *name, hid_t dapl_id )
273
+ attach_function :basic_open, :H5Dopen1, [H5Types.hid_t, :string], H5Types.hid_t
274
+
275
+ #herr_t H5Dread( hid_t dataset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t xfer_plist_id, void * buf )
276
+ attach_function :h5dRead, :H5Dread, [H5Types.hid_t, H5Types.hid_t, H5Types.hid_t, H5Types.hid_t, H5Types.hid_t, :pointer], H5Types.herr_t
277
+
278
+ #hid_t H5Dget_type(hid_t dataset_id )
279
+ attach_function :h5dtype, :H5Dget_type, [H5Types.hid_t], H5Types.hid_t
280
+
281
+ #hid_t H5Dget_space( hid_t dataset_id )
282
+ attach_function :h5dspace, :H5Dget_space, [H5Types.hid_t], H5Types.hid_t
283
+
284
+ #int H5Sget_simple_extent_ndims( hid_t space_id )
285
+ attach_function :h5sN, :H5Sget_simple_extent_ndims, [H5Types.hid_t], :int
286
+
287
+ #int H5Sget_simple_extent_dims(hid_t space_id, hsize_t *dims, hsize_t *maxdims )
288
+ attach_function :h5sD, :H5Sget_simple_extent_dims, [H5Types.hid_t, :pointer, :pointer], :int
289
+
290
+ attach_function :h5dpl, :H5Dget_create_plist, [H5Types.hid_t], :int
291
+
292
+ attach_function :h5pLayout, :H5Pget_layout, [H5Types.hid_t], :bool
293
+
294
+ #int H5Pget_chunk(hid_t plist, int max_ndims, hsize_t * dims )
295
+ attach_function :h5pGetChunk, :H5Pget_chunk, [H5Types.hid_t, :int, :pointer], :int
296
+
297
+ #hid_t H5Screate_simple( int rank, const hsize_t * current_dims, const hsize_t * maximum_dims )
298
+ attach_function :h5sCreate, :H5Screate_simple, [:int, :pointer, :pointer], H5Types.hid_t
299
+
300
+ def initialize(file, table, zones)
301
+ @id = file.id
302
+ @gId = OMXTables::gOpen(@id,"data")
303
+ @zones = zones
304
+ b = basic_open(@gId,table)
305
+ filespace = h5dspace(b)
306
+ rank = h5sN(filespace)
307
+ dims = FFI::MemoryPointer.new(H5Types.hsize_t)
308
+ maxdims = FFI::MemoryPointer.new(H5Types.hsize_t)
309
+ status_n = h5sD(filespace,dims,maxdims)
310
+ cparms = h5dpl(b)
311
+ if h5pLayout(cparms)
312
+ chunk_dims = FFI::MemoryPointer.new(H5Types.hsize_t)
313
+ rank_chunk = h5pGetChunk(cparms, maxdims.read_int(), chunk_dims)
314
+ end
315
+ memspace = h5sCreate(2, dims, nil)
316
+ type = h5dtype(b)
317
+ buffer = FFI::MemoryPointer.new(type,2)
318
+ c = h5dRead(b, type, memspace, filespace, 0, buffer)
319
+ ask_zones = zones * zones
320
+ @outAry = buffer.get_array_of_double(0,ask_zones)
321
+ end
322
+
323
+ def getI(zone)
324
+ return(@outAry[(zone-1)*@zones,@zones])
325
+ end
326
+
327
+ def getIJ(i,j)
328
+ a = @outAry[(i-1)*@zones,@zones]
329
+ return(a[j-1])
330
+ end
331
+
332
+ def getJ(j)
333
+ out ||= []
334
+ for i in 0..@zones-1
335
+ x = @outAry[i*@zones,j]
336
+ out << x[j-1]
337
+ end
338
+ return(out)
339
+ end
340
+
341
+ end #Class OMXData
342
+ end
343
+ #end
metadata ADDED
@@ -0,0 +1,126 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: OpenMatriX
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Andrew Rohne
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-10-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: ffi
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.9'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.9'
69
+ - !ruby/object:Gem::Dependency
70
+ name: narray
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.6'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.6'
83
+ description: Open Matrix Ruby API
84
+ email:
85
+ - arohne@oki.org
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".travis.yml"
93
+ - Gemfile
94
+ - LICENSE.md
95
+ - OpenMatriX.gemspec
96
+ - README.md
97
+ - Rakefile
98
+ - bin/console
99
+ - bin/setup
100
+ - lib/OpenMatriX.rb
101
+ - lib/OpenMatriX/version.rb
102
+ homepage: https://github.com/okiandrew/OpenMatriX
103
+ licenses:
104
+ - Apache-2.0
105
+ metadata: {}
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubyforge_project:
122
+ rubygems_version: 2.2.5
123
+ signing_key:
124
+ specification_version: 4
125
+ summary: Open Matrix support for Ruby
126
+ test_files: []