From fd34d4342b95600825720708d7ff6917bba1ee42 Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 27 Jan 2010 09:41:44 +0000 Subject: Java SCA 1.6 RC1 Release Tag git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@903579 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/tuscany/sca/artifact/xyz/XYZ.java | 46 ++++++ .../tuscany/sca/artifact/xyz/XYZModelResolver.java | 86 +++++++++++ .../tuscany/sca/artifact/xyz/XYZProcessor.java | 91 +++++++++++ .../sca/implementation/xyz/ImplementationXYZ.java | 49 ++++++ .../xyz/ImplementationXYZFactory.java | 36 +++++ .../xyz/ImplementationXYZFactoryImpl.java | 33 ++++ .../implementation/xyz/ImplementationXYZImpl.java | 129 ++++++++++++++++ .../xyz/ImplementationXYZInvoker.java | 54 +++++++ .../xyz/ImplementationXYZProcessor.java | 158 +++++++++++++++++++ .../xyz/ImplementationXYZProvider.java | 85 ++++++++++ .../xyz/ImplementationXYZProviderFactory.java | 43 ++++++ .../imprt/xyz/DefaultImportExportXYZFactory.java | 28 ++++ .../apache/tuscany/sca/imprt/xyz/ExportXYZ.java | 60 ++++++++ .../tuscany/sca/imprt/xyz/ExportXYZImpl.java | 64 ++++++++ .../sca/imprt/xyz/ExportXYZModelResolver.java | 54 +++++++ .../tuscany/sca/imprt/xyz/ExportXYZProcessor.java | 171 +++++++++++++++++++++ .../sca/imprt/xyz/ImportExportXYZFactory.java | 27 ++++ .../sca/imprt/xyz/ImportExportXYZFactoryImpl.java | 32 ++++ .../apache/tuscany/sca/imprt/xyz/ImportXYZ.java | 59 +++++++ .../tuscany/sca/imprt/xyz/ImportXYZImpl.java | 79 ++++++++++ .../tuscany/sca/imprt/xyz/ImportXYZProcessor.java | 171 +++++++++++++++++++++ 21 files changed, 1555 insertions(+) create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZ.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZModelResolver.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZProcessor.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZ.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactory.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactoryImpl.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZImpl.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZInvoker.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProcessor.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProvider.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProviderFactory.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/DefaultImportExportXYZFactory.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZ.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZImpl.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZModelResolver.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZProcessor.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactory.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactoryImpl.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZ.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZImpl.java create mode 100644 sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZProcessor.java (limited to 'sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org') diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZ.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZ.java new file mode 100644 index 0000000000..3d12ddfdd2 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZ.java @@ -0,0 +1,46 @@ +/* + * 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.artifact.xyz; + +import org.apache.tuscany.sca.assembly.impl.BaseImpl; + + +public class XYZ extends BaseImpl { + + private String anAttribute; + + /** + * Get the module name + * @return + */ + public String getAnAttribute(){ + return anAttribute; + } + + /** + * Sets the module name + * @param pojoName + */ + public void setAnAttribute(String anAttribute){ + this.anAttribute = anAttribute; + } + + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZModelResolver.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZModelResolver.java new file mode 100644 index 0000000000..ee8c881d22 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZModelResolver.java @@ -0,0 +1,86 @@ +/* + * 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.artifact.xyz; + +import java.util.HashMap; +import java.util.Map; + +import javax.xml.namespace.QName; + +import org.apache.tuscany.sca.assembly.Composite; +import org.apache.tuscany.sca.contribution.Contribution; +import org.apache.tuscany.sca.contribution.Import; +import org.apache.tuscany.sca.contribution.ModelFactoryExtensionPoint; +import org.apache.tuscany.sca.contribution.namespace.NamespaceImport; +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; +import org.apache.tuscany.sca.imprt.xyz.ImportXYZ; + +/** + * A Model Resolver for Composite models. + * + * @version $Rev$ $Date$ + */ +public class XYZModelResolver implements ModelResolver { + + private Map map = new HashMap(); + private Contribution contribution; + + public XYZModelResolver(Contribution contribution, ModelFactoryExtensionPoint modelFactories) { + this.contribution = contribution; + } + + public void addModel(Object resolved) { + XYZ xyz = (XYZ)resolved; + map.put(xyz.getAnAttribute(), xyz); + } + + public Object removeModel(Object resolved) { + return map.remove(((XYZ)resolved).getAnAttribute()); + } + + public T resolveModel(Class modelClass, T unresolved) { + + XYZ xyz = (XYZ)unresolved; + + XYZ resolved = map.get(xyz.getAnAttribute()); + if (resolved != null) { + return modelClass.cast(resolved); + } + + // No definition found, delegate the resolution to the imports + for (Import import_ : this.contribution.getImports()) { + if (import_ instanceof ImportXYZ) { + ImportXYZ importXYZ = (ImportXYZ)import_; + + if (xyz.getAnAttribute().equals(importXYZ.getAnAttribute())) { + + // Delegate the resolution to the import resolver + resolved = importXYZ.getModelResolver().resolveModel(XYZ.class, (XYZ)unresolved); + if (!resolved.isUnresolved()) { + return modelClass.cast(resolved); + } + } + } + } + + return (T)unresolved; + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZProcessor.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZProcessor.java new file mode 100644 index 0000000000..a0c7c899ec --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/artifact/xyz/XYZProcessor.java @@ -0,0 +1,91 @@ +/* + * 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.artifact.xyz; + +import java.net.URI; +import java.net.URL; + +import javax.xml.namespace.QName; +import javax.xml.stream.XMLInputFactory; + +import org.apache.tuscany.sca.contribution.ModelFactoryExtensionPoint; +import org.apache.tuscany.sca.contribution.processor.URLArtifactProcessor; +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; +import org.apache.tuscany.sca.contribution.service.ContributionReadException; +import org.apache.tuscany.sca.contribution.service.ContributionResolveException; +import org.apache.tuscany.sca.monitor.Monitor; +import org.apache.tuscany.sca.monitor.Problem; +import org.apache.tuscany.sca.monitor.Problem.Severity; +import org.apache.tuscany.sca.monitor.impl.ProblemImpl; + +/** + * An ArtifactProcessor for XYZ documents. + * + * @version $Rev$ $Date$ + */ +public class XYZProcessor implements URLArtifactProcessor { + + private XMLInputFactory inputFactory; + private Monitor monitor; + + public XYZProcessor(ModelFactoryExtensionPoint modelFactories, Monitor monitor) { + this.inputFactory = modelFactories.getFactory(XMLInputFactory.class); + this.monitor = monitor; + } + + /** + * Report a exception. + * + * @param problems + * @param message + * @param model + */ + private void error(String message, Object model, Exception ex) { + if (monitor != null) { + Problem problem = new ProblemImpl(this.getClass().getName(), "xsd-xml-validation-messages", Severity.ERROR, model, message, ex); + monitor.problem(problem); + } + } + + public XYZ read(URL contributionURL, URI artifactURI, URL artifactURL) throws ContributionReadException { + try { + XYZ xyz = new XYZ(); + String attribute = artifactURL.toString(); + xyz.setAnAttribute(attribute.substring(attribute.lastIndexOf('/') + 1)); + return xyz; + } catch (Exception e) { + ContributionReadException ce = new ContributionReadException(e); + error("ContributionReadException", artifactURL, ce); + throw ce; + } + } + + public void resolve(XYZ model, ModelResolver resolver) throws ContributionResolveException { + } + + public String getArtifactType() { + return ".xyz"; + } + + public Class getModelType() { + return XYZ.class; + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZ.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZ.java new file mode 100644 index 0000000000..c7df99691b --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZ.java @@ -0,0 +1,49 @@ +/* + * 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.xyz; + +import java.lang.reflect.Method; +import java.util.Map; + +import org.apache.tuscany.sca.assembly.Implementation; + + +public interface ImplementationXYZ extends Implementation { + + /** + * Get the module name + * @return + */ + public String getAnAttribute(); + + /** + * Sets the module name + * @param pojoName + */ + public void setAnAttribute(String anAttribute); + + + /** + * Returns the modules methods. + * @return + */ + public Map getMethods(); + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactory.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactory.java new file mode 100644 index 0000000000..f0e3f20c15 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactory.java @@ -0,0 +1,36 @@ +/* + * 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.xyz; + + +/** + * Factory for the implementation model. + * + * @version $Rev$ $Date$ + */ +public interface ImplementationXYZFactory { + + /** + * Creates a new implementation model object. + * @return a new implementation model object + */ + ImplementationXYZ createImplementationXYZ(); + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactoryImpl.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactoryImpl.java new file mode 100644 index 0000000000..1e457d2786 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZFactoryImpl.java @@ -0,0 +1,33 @@ +/* + * 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.xyz; + + +/** + * A factory for the implementation model. + * + * @version $Rev$ $Date$ + */ +public class ImplementationXYZFactoryImpl implements ImplementationXYZFactory { + + public ImplementationXYZ createImplementationXYZ() { + return new ImplementationXYZImpl(); + } +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZImpl.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZImpl.java new file mode 100644 index 0000000000..42dcc2419d --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZImpl.java @@ -0,0 +1,129 @@ +/* + * 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.xyz; + +import java.lang.reflect.Method; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.apache.tuscany.sca.assembly.ConstrainingType; +import org.apache.tuscany.sca.assembly.Property; +import org.apache.tuscany.sca.assembly.Reference; +import org.apache.tuscany.sca.assembly.Service; + + +/** + * Represents an implementation in an SCA assembly. + * + * @version $Rev$ $Date$ + */ +class ImplementationXYZImpl implements ImplementationXYZ { + + private String anAttribute; + private String uri; + private Map methods; + private List services = new ArrayList(); + private List references = new ArrayList(); + private List properties = new ArrayList(); + private boolean unresolved; + + ImplementationXYZImpl() { + } + + /** + * Returns the module name + * @return + */ + public String getAnAttribute() { + return anAttribute; + } + + /** + * Sets the module name + * @param pojoName + */ + public void setAnAttribute(String anAttribute) { + this.anAttribute = anAttribute; + uri = anAttribute; + } + + + /** + * Returns the methods. + * @return + */ + public Map getMethods() { + return methods; + } + + public ConstrainingType getConstrainingType() { + // The sample implementation does not support constrainingTypes + return null; + } + + public List getProperties() { + return properties; + } + + public List getServices() { + return services; + } + + public List getReferences() { + return references; + } + + public String getURI() { + return uri; + } + + public void setConstrainingType(ConstrainingType constrainingType) { + // The sample implementation does not support constrainingTypes + } + + public void setURI(String uri) { + this.uri = uri; + } + + public boolean isUnresolved() { + return unresolved; + } + + public void setUnresolved(boolean unresolved) { + this.unresolved = unresolved; + } + + @Override + public int hashCode() { + return uri.hashCode(); + } + + @Override + public boolean equals(Object obj) { + if (obj instanceof ImplementationXYZImpl) { + return ((ImplementationXYZImpl)obj).getURI().equals(uri); + } else { + return false; + } + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZInvoker.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZInvoker.java new file mode 100644 index 0000000000..711f919339 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZInvoker.java @@ -0,0 +1,54 @@ +/* + * 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.xyz; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; + +import org.apache.tuscany.sca.interfacedef.Operation; +import org.apache.tuscany.sca.invocation.Invoker; +import org.apache.tuscany.sca.invocation.Message; +import org.osoa.sca.ServiceRuntimeException; + +class ImplementationXYZInvoker implements Invoker { + + private Object instance; + private Method method; + + ImplementationXYZInvoker(Object instance, Operation operation, Method method) { + this.instance = instance; + this.method = method; + } + + public Message invoke(Message msg) { + // do something to invoke the implementation + /* + try { + msg.setBody(method.invoke(instance, (Object[])msg.getBody())); + } catch (InvocationTargetException e) { + msg.setFaultBody(e); + } catch (Exception e) { + throw new ServiceRuntimeException(e); + } + */ + return msg; + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProcessor.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProcessor.java new file mode 100644 index 0000000000..792732e73f --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProcessor.java @@ -0,0 +1,158 @@ +/* + * 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.xyz; + +import static javax.xml.stream.XMLStreamConstants.END_ELEMENT; + +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.artifact.xyz.XYZ; +import org.apache.tuscany.sca.assembly.AssemblyFactory; +import org.apache.tuscany.sca.assembly.ComponentType; +import org.apache.tuscany.sca.assembly.xml.PolicyAttachPointProcessor; +import org.apache.tuscany.sca.contribution.ModelFactoryExtensionPoint; +import org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor; +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; +import org.apache.tuscany.sca.contribution.service.ContributionReadException; +import org.apache.tuscany.sca.contribution.service.ContributionResolveException; +import org.apache.tuscany.sca.contribution.service.ContributionWriteException; +import org.apache.tuscany.sca.monitor.Monitor; +import org.apache.tuscany.sca.policy.PolicyFactory; + + + +public class ImplementationXYZProcessor implements StAXArtifactProcessor { + private static final QName IMPLEMENTATION_XYZ = new QName("http://someuri", "implementation.xyz"); + + private AssemblyFactory assemblyFactory; + private ImplementationXYZFactory implementationXYZFactory; + private PolicyFactory policyFactory; + private PolicyAttachPointProcessor policyProcessor; + + public ImplementationXYZProcessor(ModelFactoryExtensionPoint modelFactories, Monitor monitor) { + + // Get the assembly and Java interface factories as we'll need them to + // create model objects + assemblyFactory = modelFactories.getFactory(AssemblyFactory.class); + policyFactory = modelFactories.getFactory(PolicyFactory.class); + implementationXYZFactory = modelFactories.getFactory(ImplementationXYZFactory.class); + policyProcessor = new PolicyAttachPointProcessor(policyFactory); + } + + public QName getArtifactType() { + // Returns the qname of the XML element processed by this processor + return IMPLEMENTATION_XYZ; + } + + public Class getModelType() { + // Returns the type of model processed by this processor + return ImplementationXYZ.class; + } + + public ImplementationXYZ read(XMLStreamReader reader) throws ContributionReadException, XMLStreamException { + + // Read an element + ImplementationXYZ implementation = implementationXYZFactory.createImplementationXYZ(); + + // Read policies + policyProcessor.readPolicies(implementation, reader); + + // Read the module attribute. + String anAttribute = reader.getAttributeValue(null, "anAttribute"); + implementation.setAnAttribute(anAttribute); + + implementation.setUnresolved(true); + + // Skip to end element + while (reader.hasNext()) { + if (reader.next() == END_ELEMENT && IMPLEMENTATION_XYZ.equals(reader.getName())) { + break; + } + } + + return implementation; + } + + public void resolve(ImplementationXYZ implementation, ModelResolver resolver) throws ContributionResolveException { + + // Resolve the xyz implementation + XYZ xyz = new XYZ(); + xyz.setAnAttribute(implementation.getAnAttribute()); + + // First resolve its module + XYZ resolved = resolver.resolveModel(XYZ.class, xyz); + + if (resolved == null){ + return; + } + + // use this to check that the import/export association has been created + + // Check to see if we have a .componentType file describing the POJO class + ComponentType componentType = assemblyFactory.createComponentType(); + componentType.setUnresolved(true); + componentType.setURI(implementation.getURI() + ".componentType"); + componentType = resolver.resolveModel(ComponentType.class, componentType); + if (!componentType.isUnresolved()) { + + // We have a component type description, merge it into the POJO model + implementation.getServices().addAll(componentType.getServices()); + implementation.getReferences().addAll(componentType.getReferences()); + implementation.getProperties().addAll(componentType.getProperties()); + + } else { + + // We have no component type description, simply introspect the POJO and + // create a single Service for it +/* + Service service = assemblyFactory.createService(); + service.setName(pojoClass.getSimpleName()); + JavaInterface javaInterface; + try { + javaInterface = javaFactory.createJavaInterface(pojoClass); + } catch (InvalidInterfaceException e) { + throw new ContributionResolveException(e); + } + JavaInterfaceContract interfaceContract = javaFactory.createJavaInterfaceContract(); + interfaceContract.setInterface(javaInterface); + service.setInterfaceContract(interfaceContract); + implementation.getServices().add(service); +*/ + } + + // Mark the implementation resolved now + implementation.setUnresolved(false); + } + + public void write(ImplementationXYZ implementation, XMLStreamWriter writer) throws ContributionWriteException, XMLStreamException { + + // Write element + writer.writeStartElement(IMPLEMENTATION_XYZ.getNamespaceURI(), IMPLEMENTATION_XYZ.getLocalPart()); + policyProcessor.writePolicyAttributes(implementation, writer); + + if (implementation.getAnAttribute() != null) { + writer.writeAttribute("anAttribute", implementation.getAnAttribute()); + } + + writer.writeEndElement(); + } +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProvider.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProvider.java new file mode 100644 index 0000000000..9d526b007f --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProvider.java @@ -0,0 +1,85 @@ +/* + * 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.xyz; + +import java.lang.reflect.Method; + +import org.apache.tuscany.sca.interfacedef.Operation; +import org.apache.tuscany.sca.invocation.Invoker; +import org.apache.tuscany.sca.provider.ImplementationProvider; +import org.apache.tuscany.sca.runtime.RuntimeComponent; +import org.apache.tuscany.sca.runtime.RuntimeComponentService; +import org.osoa.sca.ServiceRuntimeException; + +class ImplementationXYZProvider implements ImplementationProvider { + + private ImplementationXYZ implementation; + private Object instance; + + /** + * Constructs a new CRUD implementation. + */ + ImplementationXYZProvider(RuntimeComponent component, ImplementationXYZ implementation) { + this.implementation = implementation; + + // Create a new instance of the POJO + try { + //pojoInstance = implementation.getPOJOClass().newInstance(); + } catch (Exception e) { + throw new ServiceRuntimeException(e); + } + } + + public void start() { + try { + // Invoke the POJO's init method + Method initMethod = implementation.getMethods().get("init"); + if (initMethod != null) { + //initMethod.invoke(pojoInstance); + } + } catch (Exception e) { + throw new ServiceRuntimeException(e); + } + } + + public void stop() { + try { + // Invoke the POJO's destroy method + Method destroyMethod = implementation.getMethods().get("destroy"); + if (destroyMethod != null) { + //destroyMethod.invoke(pojoInstance); + } + } catch (Exception e) { + throw new ServiceRuntimeException(e); + } finally { + instance = null; + } + } + + public Invoker createInvoker(RuntimeComponentService service, Operation operation) { + Method method = implementation.getMethods().get(operation.getName()); + ImplementationXYZInvoker invoker = new ImplementationXYZInvoker(instance, operation, method); + return invoker; + } + + public boolean supportsOneWayInvocation() { + return false; + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProviderFactory.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProviderFactory.java new file mode 100644 index 0000000000..bb561008d8 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/implementation/xyz/ImplementationXYZProviderFactory.java @@ -0,0 +1,43 @@ +/* + * 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.xyz; + +import org.apache.tuscany.sca.core.ExtensionPointRegistry; +import org.apache.tuscany.sca.provider.ImplementationProvider; +import org.apache.tuscany.sca.provider.ImplementationProviderFactory; +import org.apache.tuscany.sca.runtime.RuntimeComponent; + +/** + * A factory for POJO implementation providers. + */ +public class ImplementationXYZProviderFactory implements ImplementationProviderFactory { + + public ImplementationXYZProviderFactory(ExtensionPointRegistry registry) { + } + + public Class getModelType() { + // Returns the type of model processed by this processor + return ImplementationXYZ.class; + } + + public ImplementationProvider createImplementationProvider(RuntimeComponent component, ImplementationXYZ implementation) { + return new ImplementationXYZProvider(component, implementation); + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/DefaultImportExportXYZFactory.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/DefaultImportExportXYZFactory.java new file mode 100644 index 0000000000..b9a7bf6c0c --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/DefaultImportExportXYZFactory.java @@ -0,0 +1,28 @@ +/* + * 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.imprt.xyz; + +/** + * Default Import/Export model factory implementation + * + * @version $Rev$ $Date$ + */ +public class DefaultImportExportXYZFactory extends ImportExportXYZFactoryImpl implements ImportExportXYZFactory { +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZ.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZ.java new file mode 100644 index 0000000000..b099cfee11 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZ.java @@ -0,0 +1,60 @@ +/* + * 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.imprt.xyz; + +import org.apache.tuscany.sca.contribution.Export; + + +/** + * The model of an export. + * + * @version $Rev$ $Date$ + */ +public interface ExportXYZ extends Export { + + /** + * Get the uri of the contributions + * + * @return The URI + */ + String getURI(); + + /** + * Set the uri of the contributions + * + * @param URI + */ + void setURI(String URI); + + /** + * Get anAttribute + * + * @return anAttribute + */ + String getAnAttribute(); + + /** + * Set anAttribute + * + * @param anAttribute + */ + void setAnAttribute(String anAttribute); + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZImpl.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZImpl.java new file mode 100644 index 0000000000..6e98979b5d --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZImpl.java @@ -0,0 +1,64 @@ +/* + * 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.imprt.xyz; + +import org.apache.tuscany.sca.assembly.impl.ExtensibleImpl; +import org.apache.tuscany.sca.contribution.namespace.NamespaceExport; +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; + +/** + * The model of an export + * + * @version $Rev$ $Date$ + */ +public class ExportXYZImpl extends ExtensibleImpl implements ExportXYZ { + private String URI; + private String anAttribute; + private ModelResolver modelResolver; + + protected ExportXYZImpl() { + super(); + } + + public String getURI() { + return URI; + } + + public void setURI(String URI) { + this.URI = URI; + } + + public String getAnAttribute() { + return anAttribute; + } + + public void setAnAttribute(String anAttribute) { + this.anAttribute = anAttribute; + } + + public ModelResolver getModelResolver() { + return modelResolver; + } + + public void setModelResolver(ModelResolver modelResolver) { + this.modelResolver = modelResolver; + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZModelResolver.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZModelResolver.java new file mode 100644 index 0000000000..c3d2663d62 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZModelResolver.java @@ -0,0 +1,54 @@ +/* + * 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.imprt.xyz; + +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; + +/** + * A model resolver for exports. + * + * @version $Rev$ $Date$ + */ +public class ExportXYZModelResolver implements ModelResolver { + + private ModelResolver resolver; + + public ExportXYZModelResolver(ModelResolver resolver) { + this.resolver = resolver; + } + + public void addModel(Object resolved) { + throw new IllegalStateException(); + } + + public Object removeModel(Object resolved) { + throw new IllegalStateException(); + } + + public T resolveModel(Class modelClass, T unresolved) { + + // Just delegate to the contribution's model resolver, namespace + // based filtering is implemented in the model specific model + // resolver, which know how to get the namespace of the particular + // type of model that they handle + return resolver.resolveModel(modelClass, unresolved); + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZProcessor.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZProcessor.java new file mode 100644 index 0000000000..7d4aafa31f --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ExportXYZProcessor.java @@ -0,0 +1,171 @@ +/* + * 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.imprt.xyz; + +import static javax.xml.stream.XMLStreamConstants.START_ELEMENT; + +import javax.xml.namespace.QName; +import javax.xml.stream.XMLStreamConstants; +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; +import javax.xml.stream.XMLStreamWriter; + +import org.apache.tuscany.sca.assembly.ExtensionFactory; +import org.apache.tuscany.sca.contribution.ModelFactoryExtensionPoint; +import org.apache.tuscany.sca.contribution.namespace.NamespaceExport; +import org.apache.tuscany.sca.contribution.namespace.NamespaceImportExportFactory; +import org.apache.tuscany.sca.contribution.processor.BaseStAXArtifactProcessor; +import org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor; +import org.apache.tuscany.sca.contribution.processor.StAXAttributeProcessor; +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; +import org.apache.tuscany.sca.contribution.service.ContributionReadException; +import org.apache.tuscany.sca.contribution.service.ContributionResolveException; +import org.apache.tuscany.sca.contribution.service.ContributionWriteException; +import org.apache.tuscany.sca.monitor.Monitor; +import org.apache.tuscany.sca.monitor.Problem; +import org.apache.tuscany.sca.monitor.Problem.Severity; +import org.apache.tuscany.sca.monitor.impl.ProblemImpl; + + +public class ExportXYZProcessor extends BaseStAXArtifactProcessor implements StAXArtifactProcessor { + + private static final String NS = "http://someuri"; + private static final QName EXPORT = new QName(NS, "export.xyz"); + private static final String URI = "uri"; + private static final String AN_ATTRIBUTE = "anAttribute"; + + private final ImportExportXYZFactory factory; + private final Monitor monitor; + private final ExtensionFactory extensionFactory; + + + public ExportXYZProcessor(ModelFactoryExtensionPoint modelFactories, + Monitor monitor) { + this.factory = modelFactories.getFactory(ImportExportXYZFactory.class); + this.extensionFactory = modelFactories.getFactory(ExtensionFactory.class); + this.monitor = monitor; + } + + /** + * Report a warning. + * + * @param problems + * @param message + * @param model + */ + private void error(String message, Object model, Object... messageParameters) { + if (monitor != null) { + Problem problem = new ProblemImpl(this.getClass().getName(), "export-validation-messages", Severity.ERROR, model, message, (Object[])messageParameters); + monitor.problem(problem); + } + } + + /** + * Report a exception. + * + * @param problems + * @param message + * @param model + */ + private void error(String message, Object model, Exception ex) { + if (monitor != null) { + Problem problem = new ProblemImpl(this.getClass().getName(), "export-validation-messages", Severity.ERROR, model, message, ex); + monitor.problem(problem); + } + } + + public QName getArtifactType() { + return EXPORT; + } + + public Class getModelType() { + return ExportXYZ.class; + } + + + public ExportXYZ read(XMLStreamReader reader) throws ContributionReadException { + ExportXYZ export = this.factory.createExport(); + QName element = null; + + try { + while (reader.hasNext()) { + int event = reader.getEventType(); + switch (event) { + case START_ELEMENT: + element = reader.getName(); + + // Read + if (EXPORT.equals(element)) { + String ns = reader.getAttributeValue(null, URI); + if (ns == null) { + error("AttributeNameSpaceMissing", reader); + } else { + export.setURI(ns); + } + + String anAttribute = reader.getAttributeValue(null, AN_ATTRIBUTE); + export.setAnAttribute(anAttribute); + } + + break; + case XMLStreamConstants.END_ELEMENT: + if (EXPORT.equals(reader.getName())) { + return export; + } + break; + } + + // Read the next element + if (reader.hasNext()) { + reader.next(); + } + } + } + catch (XMLStreamException e) { + ContributionReadException ex = new ContributionReadException(e); + error("XMLStreamException", reader, ex); + } + + return export; + } + + public void write(ExportXYZ export, XMLStreamWriter writer) throws ContributionWriteException, XMLStreamException { + + // Write + writer.writeStartElement(EXPORT.getNamespaceURI(), EXPORT.getLocalPart()); + + if (export.getURI() != null) { + writer.writeAttribute(URI, export.getURI()); + } + + if (export.getAnAttribute() != null) { + writer.writeAttribute(AN_ATTRIBUTE, export.getAnAttribute()); + } + + writer.writeEndElement(); + } + + public void resolve(ExportXYZ export, ModelResolver resolver) throws ContributionResolveException { + + if (export.getURI() != null) + // Initialize the export's resolver + export.setModelResolver(new ExportXYZModelResolver(resolver)); + } +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactory.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactory.java new file mode 100644 index 0000000000..db2bab7f99 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactory.java @@ -0,0 +1,27 @@ +/* + * 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.imprt.xyz; + +public interface ImportExportXYZFactory { + + ImportXYZ createImport(); + + ExportXYZ createExport(); +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactoryImpl.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactoryImpl.java new file mode 100644 index 0000000000..b0a9c80d88 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportExportXYZFactoryImpl.java @@ -0,0 +1,32 @@ +/* + * 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.imprt.xyz; + +public class ImportExportXYZFactoryImpl implements ImportExportXYZFactory { + + public ImportXYZ createImport() { + return new ImportXYZImpl(); + } + + public ExportXYZ createExport() { + return new ExportXYZImpl(); + } + +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZ.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZ.java new file mode 100644 index 0000000000..3e883e84a2 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZ.java @@ -0,0 +1,59 @@ +/* + * 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.imprt.xyz; + +import org.apache.tuscany.sca.contribution.Import; + +/** + * The representation of an XML namespace import. + * + * @version $Rev$ $Date$ + */ +public interface ImportXYZ extends Import { + + /** + * Get the uri of the contributions + * + * @return The URI + */ + String getURI(); + + /** + * Set the uri of the contributions + * + * @param URI + */ + void setURI(String URI); + + /** + * Get anAttribute + * + * @return anAttribute + */ + String getAnAttribute(); + + /** + * Set anAttribute + * + * @param anAttribute + */ + void setAnAttribute(String anAttribute); + +} \ No newline at end of file diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZImpl.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZImpl.java new file mode 100644 index 0000000000..ef3f0653f3 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZImpl.java @@ -0,0 +1,79 @@ +/* + * 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.imprt.xyz; + +import org.apache.tuscany.sca.assembly.impl.ExtensibleImpl; +import org.apache.tuscany.sca.contribution.Export; +import org.apache.tuscany.sca.contribution.namespace.NamespaceExport; +import org.apache.tuscany.sca.contribution.namespace.NamespaceImport; +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; + +/** + * The representation of an import for the contribution + * + * @version $Rev$ $Date$ + */ +public class ImportXYZImpl extends ExtensibleImpl implements ImportXYZ { + private ModelResolver modelResolver; + + private String URI; + private String anAttribute; + + + protected ImportXYZImpl() { + super(); + } + + public String getURI() { + return URI; + } + + public void setURI(String URI) { + this.URI = URI; + } + + public String getAnAttribute() { + return anAttribute; + } + + public void setAnAttribute(String anAttribute) { + this.anAttribute = anAttribute; + } + + public ModelResolver getModelResolver() { + return modelResolver; + } + + public void setModelResolver(ModelResolver modelResolver) { + this.modelResolver = modelResolver; + } + + public boolean match(Export export) { + if (export instanceof ExportXYZ){ + return anAttribute.equals(((ExportXYZ)export).getAnAttribute()); + } + return false; + } + + @Override + public String toString() { + return String.valueOf(URI); + } +} diff --git a/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZProcessor.java b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZProcessor.java new file mode 100644 index 0000000000..763fa30002 --- /dev/null +++ b/sca-java-1.x/tags/1.6-RC1/itest/workspace-manager/src/main/java/org/apache/tuscany/sca/imprt/xyz/ImportXYZProcessor.java @@ -0,0 +1,171 @@ +/* + * 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.imprt.xyz; + +import static javax.xml.stream.XMLStreamConstants.START_ELEMENT; + +import javax.xml.namespace.QName; +import javax.xml.stream.XMLStreamConstants; +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; +import javax.xml.stream.XMLStreamWriter; + +import org.apache.tuscany.sca.assembly.ExtensionFactory; +import org.apache.tuscany.sca.contribution.ModelFactoryExtensionPoint; +import org.apache.tuscany.sca.contribution.namespace.NamespaceImport; +import org.apache.tuscany.sca.contribution.namespace.NamespaceImportExportFactory; +import org.apache.tuscany.sca.contribution.processor.BaseStAXArtifactProcessor; +import org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor; +import org.apache.tuscany.sca.contribution.processor.StAXAttributeProcessor; +import org.apache.tuscany.sca.contribution.resolver.ModelResolver; +import org.apache.tuscany.sca.contribution.service.ContributionReadException; +import org.apache.tuscany.sca.contribution.service.ContributionResolveException; +import org.apache.tuscany.sca.contribution.service.ContributionWriteException; +import org.apache.tuscany.sca.monitor.Monitor; +import org.apache.tuscany.sca.monitor.Problem; +import org.apache.tuscany.sca.monitor.Problem.Severity; +import org.apache.tuscany.sca.monitor.impl.ProblemImpl; + +/** + * Artifact processor for Namespace import + * + * @version $Rev$ $Date$ + */ +public class ImportXYZProcessor extends BaseStAXArtifactProcessor implements StAXArtifactProcessor { + private static final String NS = "http://someuri"; + + private static final QName IMPORT = new QName(NS, "import.xyz"); + + private static final String URI = "uri"; + private static final String AN_ATTRIBUTE = "anAttribute"; + + private final ImportExportXYZFactory factory; + private final ExtensionFactory extensionFactory; + private final Monitor monitor; + + public ImportXYZProcessor(ModelFactoryExtensionPoint modelFactories, + Monitor monitor) { + this.factory = modelFactories.getFactory(ImportExportXYZFactory.class); + this.monitor = monitor; + this.extensionFactory = modelFactories.getFactory(ExtensionFactory.class); + } + + /** + * Report a warning. + * + * @param problems + * @param message + * @param model + */ + private void error(String message, Object model, Object... messageParameters) { + if (monitor != null) { + Problem problem = new ProblemImpl(this.getClass().getName(), "contribution-namespace-validation-messages", Severity.ERROR, model, message, (Object[])messageParameters); + monitor.problem(problem); + } + } + + /** + * Report a exception. + * + * @param problems + * @param message + * @param model + */ + private void error(String message, Object model, Exception ex) { + if (monitor != null) { + Problem problem = new ProblemImpl(this.getClass().getName(), "contribution-namespace-validation-messages", Severity.ERROR, model, message, ex); + monitor.problem(problem); + } + } + + public QName getArtifactType() { + return IMPORT; + } + + public Class getModelType() { + return ImportXYZ.class; + } + + public ImportXYZ read(XMLStreamReader reader) throws ContributionReadException { + ImportXYZ importXYZ= this.factory.createImport(); + QName element; + + try { + while (reader.hasNext()) { + int event = reader.getEventType(); + switch (event) { + case START_ELEMENT: + element = reader.getName(); + + // Read + if (IMPORT.equals(element)) { + String ns = reader.getAttributeValue(null, URI); + if (ns == null) { + error("AttributeNameSpaceMissing", reader); + } else { + importXYZ.setURI(ns); + } + + String anAttribute = reader.getAttributeValue(null, AN_ATTRIBUTE); + if (anAttribute != null) { + importXYZ.setAnAttribute(anAttribute); + } + } + break; + case XMLStreamConstants.END_ELEMENT: + if (IMPORT.equals(reader.getName())) { + return importXYZ; + } + break; + } + + // Read the next element + if (reader.hasNext()) { + reader.next(); + } + } + } + catch (XMLStreamException e) { + ContributionReadException ex = new ContributionReadException(e); + error("XMLStreamException", reader, ex); + } + + return importXYZ; + } + + public void write(ImportXYZ importXYZ, XMLStreamWriter writer) throws ContributionWriteException, XMLStreamException { + + // Write + writer.writeStartElement(IMPORT.getNamespaceURI(), IMPORT.getLocalPart()); + + if (importXYZ.getURI() != null) { + writer.writeAttribute(URI, importXYZ.getURI()); + } + if (importXYZ.getAnAttribute() != null) { + writer.writeAttribute(AN_ATTRIBUTE, importXYZ.getAnAttribute()); + } + + writer.writeEndElement(); + } + + + public void resolve(ImportXYZ model, ModelResolver resolver) throws ContributionResolveException { + } +} -- cgit v1.2.3