rtm-tmql 0.3.1-java
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.
- data/DISCLAIMER +13 -0
- data/LICENSE +201 -0
- data/README +8 -0
- data/lib/rtm-tmql.rb +4 -0
- data/lib/rtm/tmql.rb +68 -0
- data/lib/rtm/tmql/javalibs/tmql-draft-2010-2.6.5-SNAPSHOT.jar +0 -0
- data/lib/rtm/tmql/javalibs/tmql4j-2.6.5-SNAPSHOT.jar +0 -0
- data/lib/rtm/tmql/javalibs/tmql4j-tmml-extension-2.6.5-SNAPSHOT.jar +0 -0
- data/lib/rtm/tmql/javalibs/tmql4majortom-2.6.5-SNAPSHOT.jar +0 -0
- data/lib/rtm/tmql/tmql4j.rb +65 -0
- data/spec/rtm-tmql_spec.rb +179 -0
- data/spec/rtm/tmql/flwor.rb +19 -0
- data/spec/rtm/tmql/path.rb +19 -0
- data/spec/rtm/tmql/select.rb +12 -0
- data/spec/spec_helper.rb +7 -0
- metadata +90 -0
data/DISCLAIMER
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2008-2010 Topic Maps Lab, University of Leipzig.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and limitations
|
|
13
|
+
under the License.
|
data/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
data/README
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Copyright: Copyright 2009 Topic Maps Lab, University of Leipzig.
|
|
2
|
+
License: Apache License, Version 2.0
|
|
3
|
+
|
|
4
|
+
See http://rtm.topicmapslab.de/ for instructions.
|
|
5
|
+
See http://tmql4j.topicmapslab.de for information about TMQL.
|
|
6
|
+
|
|
7
|
+
This Gem is bundled with the following third party libraries:
|
|
8
|
+
* TMQL4J - http://tmql4j.topicmapslab.de/ (Apache 2.0 License)
|
data/lib/rtm-tmql.rb
ADDED
data/lib/rtm/tmql.rb
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Copyright: Copyright 2009 Topic Maps Lab, University of Leipzig.
|
|
2
|
+
# License: Apache License, Version 2.0
|
|
3
|
+
|
|
4
|
+
unless Object.const_defined?("Gem") && rtmgem = Gem.loaded_specs["rtm-tmql"]
|
|
5
|
+
javatmapi_path = File.expand_path(File.join(File.dirname(__FILE__), "../../../rtm-javatmapi/lib"))
|
|
6
|
+
$LOAD_PATH.unshift javatmapi_path if File.directory?(javatmapi_path)
|
|
7
|
+
end
|
|
8
|
+
require 'rtm/javatmapi'
|
|
9
|
+
|
|
10
|
+
Dir[File.join(File.dirname(__FILE__), 'tmql/javalibs/*.jar')].each {|file| require file }
|
|
11
|
+
require File.join(File.dirname(__FILE__), 'tmql/tmql4j')
|
|
12
|
+
|
|
13
|
+
module RTM
|
|
14
|
+
module TMQL
|
|
15
|
+
module Queryable
|
|
16
|
+
|
|
17
|
+
# Runs a query on a TMQL engine. Initializes the default engine, if not done before.
|
|
18
|
+
def execute_tmql(query, params={})
|
|
19
|
+
raise("query should be a String and params should be a Hash") unless(query.is_a?(String) && params.is_a?(Hash))
|
|
20
|
+
if params.empty?
|
|
21
|
+
return tmql_engine.execute(query)
|
|
22
|
+
else
|
|
23
|
+
return tmql_engine(params).execute(query)
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
alias :tmql :execute_tmql
|
|
27
|
+
|
|
28
|
+
#Initialize a TMQL engine or gives back an existing one
|
|
29
|
+
def tmql_engine(params={})
|
|
30
|
+
raise("params should be a Hash") unless params.is_a?(Hash)
|
|
31
|
+
@tmql_engine || initialize_tmql_engine(params)
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# Initializes a TMQL engine and returns it
|
|
35
|
+
def initialize_tmql_engine(params={})
|
|
36
|
+
if self.read_only?
|
|
37
|
+
unless params[:environment_map]
|
|
38
|
+
env_map = self.tmql_environment_map
|
|
39
|
+
raise("you need to define an environment map for this read-only topic map, e.g. topic_map.initialize_tmql_engine(:environment_map => env_map).") unless env_map.is_a?(RTM::TopicMap)
|
|
40
|
+
end
|
|
41
|
+
@tmql_engine = RTM::TMQL::Engine.create(self, {:environment_map => env_map}.merge(params))
|
|
42
|
+
else
|
|
43
|
+
@tmql_engine = TMQL::Engine.create(self, params)
|
|
44
|
+
end
|
|
45
|
+
@tmql_engine
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def tmql_version
|
|
49
|
+
return TMQL4JEngine.version
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
RTM::TopicMap.register_extension(self)
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# A TMQL Engine. Every TMQL-Engine for RTM must subclass this class.
|
|
56
|
+
class Engine
|
|
57
|
+
# Create a new TMQL-Engine. For now, this is hard-coded to TMQL4J.
|
|
58
|
+
# Once there are more engines, this structure could be similar to RTM::Engine
|
|
59
|
+
def self.create(topic_map, params={})
|
|
60
|
+
TMQL4JEngine.new(topic_map, params)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
def initialize(params={})
|
|
64
|
+
@params = params
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
end
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
module RTM
|
|
2
|
+
module TMQL
|
|
3
|
+
class TMQL4JEngine < Engine
|
|
4
|
+
attr_reader :topic_map, :runtime, :runtime_setting
|
|
5
|
+
@@version = nil
|
|
6
|
+
|
|
7
|
+
def initialize(topic_map, params={})
|
|
8
|
+
raise("topic_map must be a RTM::TopicMap") unless topic_map.is_a?(RTM::TopicMap)
|
|
9
|
+
super(params) #@params is set
|
|
10
|
+
@topic_map = topic_map
|
|
11
|
+
@runtime_setting = set_runtime
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def properties
|
|
15
|
+
runtime.properties
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def enable_materialize_meta_model(materialize)
|
|
19
|
+
properties.enableMaterializeMetaModel(materialize)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def enable_updates(enabled)
|
|
23
|
+
properties.enableLanguageExtensionTmqlUl(enabled)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def execute(query)
|
|
27
|
+
q = runtime.run(query)
|
|
28
|
+
q.results
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
# Returns the version of the underlying TMQL4J version
|
|
32
|
+
# It's a bit of a hack.
|
|
33
|
+
def self.version
|
|
34
|
+
unless @@version
|
|
35
|
+
javalibs_directory = File.join(File.dirname(__FILE__), 'javalibs')
|
|
36
|
+
if File.directory?(javalibs_directory)
|
|
37
|
+
tmql_files = Dir[File.join(javalibs_directory + '/tmql4j-*.jar')]
|
|
38
|
+
tmql_files = tmql_files.reject{|file| file.include?("tmml")}
|
|
39
|
+
if tmql_files.size == 1
|
|
40
|
+
file = tmql_files.first
|
|
41
|
+
@@version = File.basename(file, ".jar").gsub("tmql4j-", "")
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
return @@version
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
private
|
|
49
|
+
def set_runtime
|
|
50
|
+
if environment_map = @params[:environment_map]
|
|
51
|
+
@runtime = Java::DeTopicmapslabTmql4jCommonCoreRuntime::TMQLRuntimeFactory.newFactory.newRuntime(@topic_map)
|
|
52
|
+
@runtime.setEnvironmentMap(environment_map)
|
|
53
|
+
return :environment_map
|
|
54
|
+
else
|
|
55
|
+
unless tms = @params[:tms]
|
|
56
|
+
tms = @topic_map.engine.tmsf.newTopicMapSystem
|
|
57
|
+
end
|
|
58
|
+
@runtime = Java::DeTopicmapslabTmql4jCommonCoreRuntime::TMQLRuntimeFactory.newFactory.newRuntime(tms, @topic_map)
|
|
59
|
+
return :tms
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
end
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# Copyright: Copyright 2009 Topic Maps Lab, University of Leipzig.
|
|
2
|
+
# License: Apache License, Version 2.0
|
|
3
|
+
|
|
4
|
+
require File.dirname(__FILE__) + '/spec_helper'
|
|
5
|
+
|
|
6
|
+
describe RTM do
|
|
7
|
+
it "should define a constant TMQL" do
|
|
8
|
+
::RTM::TMQL
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
module RTM::TopicMap
|
|
13
|
+
[:ontopia, :majortom, :tinytim].each do |impl|
|
|
14
|
+
puts "Testing TMQL with #{impl}"
|
|
15
|
+
|
|
16
|
+
describe self do
|
|
17
|
+
before(:each) do
|
|
18
|
+
@connection = RTM.connect(:implementation => impl)
|
|
19
|
+
@tm = @connection.create("http://www.topicmapslab.de/")
|
|
20
|
+
end
|
|
21
|
+
after(:each) do
|
|
22
|
+
@tm.close
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it "should have an execute_tmql instance method" do
|
|
26
|
+
RTM::TopicMap.instance_methods.should include("execute_tmql")
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
it "should have a tmql instance method" do
|
|
30
|
+
RTM::TopicMap.instance_methods.should include("tmql")
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
it "should have a tmql_engine instance method" do
|
|
34
|
+
RTM::TopicMap.instance_methods.should include("tmql_engine")
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
it "should have a initialize_tmql_engine instance method" do
|
|
38
|
+
RTM::TopicMap.instance_methods.should include("initialize_tmql_engine")
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe "#tmql" do
|
|
42
|
+
it "should be an alias for execute_tmql" do
|
|
43
|
+
@tm.method(:tmql).should == @tm.method(:execute_tmql)
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
it "should run the tmql method with a string argument" do
|
|
47
|
+
pending "TMQL currently does not allow empty queries" do
|
|
48
|
+
@tm.tmql("").should_not raise_error
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
it "should give back ctm" do
|
|
53
|
+
@tm.from_xtm(File.dirname(__FILE__) + "/../../rtm/spec/resources/opera.xtm")
|
|
54
|
+
query = "%prefix o http://psi.ontopia.net/music/ \n FOR $composer IN // o:composer
|
|
55
|
+
RETURN { \n FOR $type IN $composer >> characteristics >> types \n RETURN \"\"\"{$composer} {$type}\"\"\"}"
|
|
56
|
+
unless impl == :sesametm #too slow
|
|
57
|
+
@tm.tmql(query)
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
it "should take at the least the query as argument" do
|
|
62
|
+
lambda{@tm.tmql}.should raise_error
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
it "should use the given env-map" do
|
|
66
|
+
env_map = @connection.create("http://example.org/give_my_own_env_map")
|
|
67
|
+
@tm.initialize_tmql_engine(:environment_map => env_map)
|
|
68
|
+
@tm.tmql("tm:name")
|
|
69
|
+
@tm.get("http://psi.topicmaps.org/iso13250/glossary/topic-name-type").should be_nil
|
|
70
|
+
env_map.get("http://psi.topicmaps.org/iso13250/glossary/topic-name-type").should_not be_nil
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
describe "#initialize_tmql_engine" do
|
|
75
|
+
after(:each) do
|
|
76
|
+
@engine.should be_a_kind_of RTM::TMQL::TMQL4JEngine
|
|
77
|
+
@engine.topic_map.should == @tm
|
|
78
|
+
end
|
|
79
|
+
it "should initialize a TMQL engine given a topic_map" do
|
|
80
|
+
@engine = @tm.initialize_tmql_engine
|
|
81
|
+
@engine.runtime_setting.should == :tms
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
it "should take an :environment_map in the parameter hash" do
|
|
85
|
+
@engine = @tm.initialize_tmql_engine(:environment_map => @tm)
|
|
86
|
+
@engine.runtime_setting.should == :environment_map
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
describe "#tmql_engine" do
|
|
91
|
+
it "should give back an existing tmql engine" do
|
|
92
|
+
engine = @tm.initialize_tmql_engine
|
|
93
|
+
@tm.tmql_engine.should == engine
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
describe "#tmql_version" do
|
|
98
|
+
it "should give back the current TMQL4J version" do
|
|
99
|
+
@tm.tmql_version.should == "2.6.5-SNAPSHOT"
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
describe "#tmql" do
|
|
104
|
+
# if impl == :majortom
|
|
105
|
+
# it "should handle coordinate-queries" do
|
|
106
|
+
# @tm.from_xtm(File.join(File.dirname(__FILE__), "/../../rtm/spec/resources/toytm.xtm"))
|
|
107
|
+
# @tm.tmql("SELECT")
|
|
108
|
+
# end
|
|
109
|
+
# end
|
|
110
|
+
it "should work on hatana maps also" do
|
|
111
|
+
it_opera = @connection.create("http://www.example.org/italian_opera/")
|
|
112
|
+
it_opera.from_xtm(File.join(File.dirname(__FILE__), "/../../rtm/spec/resources/opera.xtm"))
|
|
113
|
+
no_opera = @connection.create("http://www.example.org/norwegian_opera/")
|
|
114
|
+
no_opera.from_xtm(File.join(File.dirname(__FILE__), "/../../rtm/spec/resources/norwegianoperas.xtm"))
|
|
115
|
+
identifiers = @connection.create("http://www.example.org/identifiers/")
|
|
116
|
+
identifiers.from_ctm(File.join(File.dirname(__FILE__), "/../../rtm/spec/resources/equal_identifiers.ctm"))
|
|
117
|
+
hatana_connection = RTM.connect(:implementation => :hatana)
|
|
118
|
+
merged_map = hatana_connection.create("http://www.example.org/merged_map/")
|
|
119
|
+
merged_map.merge_in(it_opera)
|
|
120
|
+
merged_map.merge_in(no_opera)
|
|
121
|
+
merged_map.merge_in(identifiers)
|
|
122
|
+
tmql_env_map = @connection.create("http://www.example.org/tmql/")
|
|
123
|
+
merged_map.register_tmql_environment_map(tmql_env_map)
|
|
124
|
+
tmql_result = merged_map.tmql("http://psi.ontopedia.net/Opera >> instances")
|
|
125
|
+
tmql_result.each{|result| result.first.should be_a_kind_of RTM::Topic}
|
|
126
|
+
opera = merged_map.get("http://psi.ontopedia.net/Opera")
|
|
127
|
+
opera.should_not be_nil
|
|
128
|
+
tmql_result.each{|result| result.first.types.should include opera}
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
it "should delete sth" do
|
|
132
|
+
@tm.get!("Benjamin")
|
|
133
|
+
@tm.topics.should_not be_empty
|
|
134
|
+
tmql_engine = @tm.tmql_engine
|
|
135
|
+
tmql_engine.enable_updates(true)
|
|
136
|
+
@tm.tmql("DELETE CASCADE ALL")
|
|
137
|
+
@tm.topics.should be_empty
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
module RTM::TMQL
|
|
146
|
+
[:ontopia, :majortom, :tinytim, :sesametm].each do |impl|
|
|
147
|
+
puts "Testing TMQL with #{impl}"
|
|
148
|
+
|
|
149
|
+
describe "TMQL4JEngine" do
|
|
150
|
+
before(:each) do
|
|
151
|
+
connection = RTM.connect(:implementation => impl)
|
|
152
|
+
@tm = connection.create("http://www.topicmapslab.de/")
|
|
153
|
+
end
|
|
154
|
+
after(:each) do
|
|
155
|
+
@tm.close
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
it "should be possible to initialize a TMQL engine given a topic_map" do
|
|
159
|
+
engine = RTM::TMQL::TMQL4JEngine.new(@tm)
|
|
160
|
+
engine.should be_a_kind_of RTM::TMQL::TMQL4JEngine
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
it "should raise an error if no topic_map argument is given" do
|
|
164
|
+
lambda{RTM::TMQL::TMQL4JEngine.new}.should raise_error
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
it "should raise an error if topic_map is not a RTM::TopicMap" do
|
|
168
|
+
lambda{RTM::TMQL::TMQL4JEngine.new("a")}.should raise_error
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
describe "#version" do
|
|
172
|
+
it "should give back the current TMQL4J version" do
|
|
173
|
+
RTM::TMQL::TMQL4JEngine.version.should == "2.6.5-SNAPSHOT"
|
|
174
|
+
end
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Copyright: Copyright 2009 Topic Maps Lab, University of Leipzig.
|
|
2
|
+
# License: Apache License, Version 2.0
|
|
3
|
+
|
|
4
|
+
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
5
|
+
|
|
6
|
+
describe RTM::TopicMap do
|
|
7
|
+
describe "#tmql flwor expressions" do
|
|
8
|
+
it "should run a simple flwor expression" do
|
|
9
|
+
tm = get_used_tm_sys_tm
|
|
10
|
+
%w[a b c d e f g h i j k l m].each do |l|
|
|
11
|
+
t= tm.get!(l)
|
|
12
|
+
t.add_type("letter")
|
|
13
|
+
t["-"] = l
|
|
14
|
+
end
|
|
15
|
+
res = tm.tmql("RETURN <letters>{FOR $l in // a:b#letter RETURN <letter>{$l / tm:name}</letter>}</letters>")
|
|
16
|
+
# FIXME: write expectations
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Copyright: Copyright 2009 Topic Maps Lab, University of Leipzig.
|
|
2
|
+
# License: Apache License, Version 2.0
|
|
3
|
+
|
|
4
|
+
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
5
|
+
|
|
6
|
+
describe RTM::TopicMap do
|
|
7
|
+
describe "#tmql path expressions" do
|
|
8
|
+
it "should run a simple path expression" do
|
|
9
|
+
tm = get_used_tm_sys_tm
|
|
10
|
+
%w[a b c d e f g h i j k l m].each do |l|
|
|
11
|
+
t= tm.get!(l)
|
|
12
|
+
t.add_type("letter")
|
|
13
|
+
t["-"] = l
|
|
14
|
+
end
|
|
15
|
+
res = tm.tmql("a:b#letter >> instances")
|
|
16
|
+
# FIXME: write expectations
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Copyright: Copyright 2009 Topic Maps Lab, University of Leipzig.
|
|
2
|
+
# License: Apache License, Version 2.0
|
|
3
|
+
|
|
4
|
+
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
5
|
+
|
|
6
|
+
describe RTM::TopicMap do
|
|
7
|
+
describe "#tmql select expressions" do
|
|
8
|
+
it "should run a select path expression" do
|
|
9
|
+
pending "specs not yet implemented"
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rtm-tmql
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 3
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.3.1
|
|
10
|
+
platform: java
|
|
11
|
+
authors:
|
|
12
|
+
- Benjamin Bock
|
|
13
|
+
- Sven Krosse
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2010-09-28 00:00:00 +02:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: rtm-javatmapi
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - "="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
segments:
|
|
29
|
+
- 0
|
|
30
|
+
- 3
|
|
31
|
+
- 1
|
|
32
|
+
version: 0.3.1
|
|
33
|
+
type: :runtime
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
description: The TMQL query engine for Ruby Topic Maps. See http://tmql4j.topicmapslab.de/ for more information about TMQL and TMQL4J.
|
|
36
|
+
email: rtm+rtm-tmql-gem-20100928@topicmapslab.de
|
|
37
|
+
executables: []
|
|
38
|
+
|
|
39
|
+
extensions: []
|
|
40
|
+
|
|
41
|
+
extra_rdoc_files: []
|
|
42
|
+
|
|
43
|
+
files:
|
|
44
|
+
- lib/rtm-tmql.rb
|
|
45
|
+
- lib/rtm/tmql.rb
|
|
46
|
+
- lib/rtm/tmql/tmql4j.rb
|
|
47
|
+
- spec/rtm-tmql_spec.rb
|
|
48
|
+
- spec/spec_helper.rb
|
|
49
|
+
- spec/rtm/tmql/flwor.rb
|
|
50
|
+
- spec/rtm/tmql/path.rb
|
|
51
|
+
- spec/rtm/tmql/select.rb
|
|
52
|
+
- lib/rtm/tmql/javalibs/tmql-draft-2010-2.6.5-SNAPSHOT.jar
|
|
53
|
+
- lib/rtm/tmql/javalibs/tmql4j-2.6.5-SNAPSHOT.jar
|
|
54
|
+
- lib/rtm/tmql/javalibs/tmql4j-tmml-extension-2.6.5-SNAPSHOT.jar
|
|
55
|
+
- lib/rtm/tmql/javalibs/tmql4majortom-2.6.5-SNAPSHOT.jar
|
|
56
|
+
- LICENSE
|
|
57
|
+
- DISCLAIMER
|
|
58
|
+
- README
|
|
59
|
+
has_rdoc: true
|
|
60
|
+
homepage: http://rtm.topicmapslab.de/
|
|
61
|
+
licenses: []
|
|
62
|
+
|
|
63
|
+
post_install_message:
|
|
64
|
+
rdoc_options: []
|
|
65
|
+
|
|
66
|
+
require_paths:
|
|
67
|
+
- lib
|
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
segments:
|
|
73
|
+
- 0
|
|
74
|
+
version: "0"
|
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
segments:
|
|
80
|
+
- 0
|
|
81
|
+
version: "0"
|
|
82
|
+
requirements: []
|
|
83
|
+
|
|
84
|
+
rubyforge_project: rtm
|
|
85
|
+
rubygems_version: 1.3.6
|
|
86
|
+
signing_key:
|
|
87
|
+
specification_version: 3
|
|
88
|
+
summary: "Ruby Topic Maps: TMQL Query Engine"
|
|
89
|
+
test_files: []
|
|
90
|
+
|