summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2012-02-16 15:40:58 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2012-02-16 15:40:58 +0000
commitaa4746677ae3be453d74205fd37571c21aa88637 (patch)
tree7e713405c13ac6bb12a30d330cfa4e171bb334c1 /sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main
parent2f187c12e2ceceb61ca2745463fcd7fbbb438b72 (diff)
Rename beta3 tag to final name
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1245036 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main')
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonEval.java32
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementation.java104
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementationProcessor.java107
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonProperty.java32
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor20
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema18
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/org/apache/tuscany/sca/implementation/python/tuscany-sca-1.1-implementation-python.xsd38
7 files changed, 0 insertions, 351 deletions
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonEval.java b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonEval.java
deleted file mode 100644
index ae9caab7d0..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonEval.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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.sca.implementation.python;
-
-import org.oasisopen.sca.annotation.Remotable;
-
-/**
- * Python component generic evaluation interface.
- *
- * @version $Rev$ $Date$
- */
-@Remotable
-public interface PythonEval {
-
- public String eval(String args) throws Exception;
-}
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementation.java b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementation.java
deleted file mode 100644
index 058c01a48e..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementation.java
+++ /dev/null
@@ -1,104 +0,0 @@
-/*
- * 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.sca.implementation.python;
-
-import javax.xml.namespace.QName;
-
-import org.apache.tuscany.sca.assembly.Property;
-import org.apache.tuscany.sca.assembly.Reference;
-import org.apache.tuscany.sca.assembly.Service;
-import org.apache.tuscany.sca.assembly.impl.ImplementationImpl;
-import org.apache.tuscany.sca.assembly.impl.PropertyImpl;
-import org.apache.tuscany.sca.assembly.impl.ReferenceImpl;
-import org.apache.tuscany.sca.assembly.impl.ServiceImpl;
-import org.apache.tuscany.sca.interfacedef.InterfaceContract;
-import org.apache.tuscany.sca.interfacedef.impl.DataTypeImpl;
-import org.apache.tuscany.sca.interfacedef.util.XMLType;
-
-/**
- * The model representing a Python implementation in an SCA assembly.
- *
- * @version $Rev$ $Date$
- */
-public class PythonImplementation extends ImplementationImpl {
- final String script;
- final String location;
- final InterfaceContract contract;
- final Service service;
-
- PythonImplementation(final QName qn, final String scr, final String loc, final InterfaceContract c) {
- super(qn);
- script = scr;
- location = loc;
- contract = c;
-
- class DynService extends ServiceImpl {
- public DynService() {
- setName("default");
- setInterfaceContract(contract);
- }
- }
- ;
- service = new DynService();
- getServices().add(service);
- }
-
- public String getScript() {
- return script;
- }
-
- public String getLocation() {
- return location;
- }
-
- public Service getService(final String n) {
- return service;
- }
-
- public Reference getReference(final String n) {
- final Reference r = super.getReference(n);
- if(r != null)
- return r;
- class DynReference extends ReferenceImpl {
- public DynReference() {
- setName(n);
- setInterfaceContract(contract);
- }
- }
- final Reference nr = new DynReference();
- getReferences().add(nr);
- return nr;
- }
-
- public Property getProperty(final String n) {
- final Property p = super.getProperty(n);
- if(p != null)
- return p;
- class DynProperty extends PropertyImpl {
- public DynProperty() {
- setName(n);
- setDataType(new DataTypeImpl<XMLType>(null, String.class, String.class, XMLType.UNKNOWN));
- setXSDType(new QName("http://www.w3.org/2001/XMLSchema", "string"));
- }
- }
- final Property np = new DynProperty();
- getProperties().add(np);
- return np;
- }
-}
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementationProcessor.java b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementationProcessor.java
deleted file mode 100644
index 424de86815..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonImplementationProcessor.java
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * 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.sca.implementation.python;
-
-import static javax.xml.stream.XMLStreamConstants.END_ELEMENT;
-import static org.apache.tuscany.sca.assembly.Base.SCA11_TUSCANY_NS;
-
-import java.net.URI;
-
-import javax.xml.namespace.QName;
-import javax.xml.stream.XMLStreamException;
-import javax.xml.stream.XMLStreamReader;
-import javax.xml.stream.XMLStreamWriter;
-
-import org.apache.tuscany.sca.contribution.processor.BaseStAXArtifactProcessor;
-import org.apache.tuscany.sca.contribution.processor.ContributionReadException;
-import org.apache.tuscany.sca.contribution.processor.ContributionResolveException;
-import org.apache.tuscany.sca.contribution.processor.ContributionWriteException;
-import org.apache.tuscany.sca.contribution.processor.ProcessorContext;
-import org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor;
-import org.apache.tuscany.sca.contribution.resolver.ModelResolver;
-import org.apache.tuscany.sca.core.ExtensionPointRegistry;
-import org.apache.tuscany.sca.core.FactoryExtensionPoint;
-import org.apache.tuscany.sca.interfacedef.InterfaceContract;
-import org.apache.tuscany.sca.interfacedef.InvalidInterfaceException;
-import org.apache.tuscany.sca.interfacedef.Operation;
-import org.apache.tuscany.sca.interfacedef.java.JavaInterface;
-import org.apache.tuscany.sca.interfacedef.java.JavaInterfaceFactory;
-import org.apache.tuscany.sca.interfacedef.java.impl.JavaInterfaceImpl;
-
-/**
- * Implements a StAX artifact processor for Python implementations.
- *
- * @version $Rev$ $Date$
- */
-public class PythonImplementationProcessor extends BaseStAXArtifactProcessor implements StAXArtifactProcessor<PythonImplementation> {
- static QName QN = new QName(SCA11_TUSCANY_NS, "implementation.python");
-
- final InterfaceContract contract;
-
- public PythonImplementationProcessor(final ExtensionPointRegistry ep) throws InvalidInterfaceException {
- final FactoryExtensionPoint fep = ep.getExtensionPoint(FactoryExtensionPoint.class);
- final JavaInterfaceFactory jf = fep.getFactory(JavaInterfaceFactory.class);
- final JavaInterface eval = jf.createJavaInterface(PythonEval.class);
-
- class DynamicInterface extends JavaInterfaceImpl {
- DynamicInterface() {
- setJavaClass(eval.getJavaClass());
- setName(eval.getName());
- setRemotable(eval.isRemotable());
- Operation op = eval.getOperations().get(0);
- op.setDynamic(true);
- getOperations().add(op);
- //resetDataBinding(JSONDataBinding.NAME);
- resetDataBinding("JSON");
- setUnresolved(false);
- }
-
- @Override
- public boolean isDynamic() {
- return true;
- }
- }
-
- contract = jf.createJavaInterfaceContract();
- contract.setInterface(new DynamicInterface());
- }
-
- public QName getArtifactType() {
- return QN;
- }
-
- public Class<PythonImplementation> getModelType() {
- return PythonImplementation.class;
- }
-
- public PythonImplementation read(final XMLStreamReader r, final ProcessorContext ctx) throws ContributionReadException, XMLStreamException {
- final String scr = r.getAttributeValue(null, "script");
- while(r.hasNext() && !(r.next() == END_ELEMENT && QN.equals(r.getName())))
- ;
- return new PythonImplementation(QN, scr, URI.create(ctx.getContribution().getLocation()).getPath(), contract);
- }
-
- public void resolve(final PythonImplementation impl, final ModelResolver res, final ProcessorContext ctx) throws ContributionResolveException {
- }
-
- public void write(final PythonImplementation impl, final XMLStreamWriter w, final ProcessorContext ctx) throws ContributionWriteException, XMLStreamException {
- writeStart(w, QN.getNamespaceURI(), QN.getLocalPart(), new XAttr("script", impl.getScript()));
- writeEnd(w);
- }
-}
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonProperty.java b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonProperty.java
deleted file mode 100644
index 6efee36ab3..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/java/org/apache/tuscany/sca/implementation/python/PythonProperty.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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.sca.implementation.python;
-
-import org.oasisopen.sca.annotation.Remotable;
-
-/**
- * Python component property evaluation interface.
- *
- * @version $Rev$ $Date$
- */
-@Remotable
-public interface PythonProperty {
-
- public String eval();
-}
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
deleted file mode 100644
index c6f60b9880..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
+++ /dev/null
@@ -1,20 +0,0 @@
-# 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.
-
-# Implementation class for the artifact processor extension
-org.apache.tuscany.sca.implementation.python.PythonImplementationProcessor;qname=http://tuscany.apache.org/xmlns/sca/1.1#implementation.python,model=org.apache.tuscany.sca.implementation.python.PythonImplementation
-
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema
deleted file mode 100644
index 2543a67897..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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.
-#
-org/apache/tuscany/sca/implementation/python/tuscany-sca-1.1-implementation-python.xsd
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/org/apache/tuscany/sca/implementation/python/tuscany-sca-1.1-implementation-python.xsd b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/org/apache/tuscany/sca/implementation/python/tuscany-sca-1.1-implementation-python.xsd
deleted file mode 100644
index 75e69f1ccd..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/implementation-python/src/main/resources/org/apache/tuscany/sca/implementation/python/tuscany-sca-1.1-implementation-python.xsd
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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.
--->
-<schema xmlns="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://tuscany.apache.org/xmlns/sca/1.1"
- xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
- elementFormDefault="qualified">
-
- <import namespace="http://docs.oasis-open.org/ns/opencsa/sca/200912"/>
-
- <element name="implementation.python" type="t:PythonImplementation" substitutionGroup="sca:implementation"/>
-
- <complexType name="PythonImplementation">
- <complexContent>
- <extension base="sca:Implementation">
- <attribute name="script" type="string" use="required"/>
- </extension>
- </complexContent>
- </complexType>
-
-</schema>