summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/container.ruby/src/main/java/org/apache/tuscany/container/ruby/RubyInstance.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/ant/container.ruby/src/main/java/org/apache/tuscany/container/ruby/RubyInstance.java')
-rw-r--r--sandbox/ant/container.ruby/src/main/java/org/apache/tuscany/container/ruby/RubyInstance.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/sandbox/ant/container.ruby/src/main/java/org/apache/tuscany/container/ruby/RubyInstance.java b/sandbox/ant/container.ruby/src/main/java/org/apache/tuscany/container/ruby/RubyInstance.java
new file mode 100644
index 0000000000..83b98e72f1
--- /dev/null
+++ b/sandbox/ant/container.ruby/src/main/java/org/apache/tuscany/container/ruby/RubyInstance.java
@@ -0,0 +1,63 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.tuscany.container.ruby;
+
+import java.lang.reflect.InvocationTargetException;
+import java.util.HashMap;
+import java.util.Map;
+
+import org.apache.tuscany.container.easy.EasyInstance;
+import org.jruby.javasupport.JavaEmbedUtils;
+import org.jruby.runtime.builtin.IRubyObject;
+
+/**
+ * An invokeable instance of a Ruby script.
+ */
+public class RubyInstance implements EasyInstance {
+
+ private IRubyObject rubyInstance;
+
+ private Map<String, Class> responseClasses;
+
+ public RubyInstance(IRubyObject rubyInstance, Map<String, Object> context, Map<String, Class> responseClasses) {
+ this.responseClasses = responseClasses;
+ this.rubyInstance = rubyInstance;
+ if (this.responseClasses == null) {
+ this.responseClasses = new HashMap<String, Class>();
+ }
+ }
+
+ public Object invokeTarget(String operationName, Object[] args) throws InvocationTargetException {
+ return JavaEmbedUtils.invokeMethod(rubyInstance.getRuntime(),
+ rubyInstance,
+ operationName,
+ args,
+ responseClasses.get(operationName));
+ }
+//
+//
+// public Object invokeTarget(String operationName, Object[] args, Class returnType) throws InvocationTargetException {
+// return JavaEmbedUtils.invokeMethod(rubyInstance.getRuntime(),
+// rubyInstance,
+// operationName,
+// args,
+// returnType);
+// }
+
+}