diff options
author | dougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-28 00:43:11 +0000 |
---|---|---|
committer | dougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-28 00:43:11 +0000 |
commit | c34b55373044d9d1f35251afebce5cda2a01fa12 (patch) | |
tree | 36f25e5a1a47d8b354d0e8231abd501afb97ccb4 | |
parent | 35535ed5b40118aec7514fe7e691fd4087138690 (diff) |
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@738324 13f79535-47bb-0310-9956-ffa450edef68
9 files changed, 382 insertions, 0 deletions
diff --git a/sandbox/dougsleite/conversationTest/pom.xml b/sandbox/dougsleite/conversationTest/pom.xml new file mode 100644 index 0000000000..3cbd1c80ae --- /dev/null +++ b/sandbox/dougsleite/conversationTest/pom.xml @@ -0,0 +1,64 @@ +<?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. +--><project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>test-conversation</artifactId>
+ <name>Conversation Test</name>
+
+ <repositories>
+ <repository>
+ <id>apache.incubator</id>
+ <url>http://people.apache.org/repo/m2-incubating-repository</url>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-host-embedded</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-java-runtime</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.2</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+
+</project>
diff --git a/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java b/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java new file mode 100644 index 0000000000..8a45b3ec2d --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java @@ -0,0 +1,26 @@ +/* + * 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 client; + + +public interface Client { + + public void someClientMethod(); +} diff --git a/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java new file mode 100644 index 0000000000..140bd4ecba --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.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 client; + + + +public interface ClientCallback { + + public void receiveResult(String s); +} diff --git a/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java new file mode 100644 index 0000000000..1dfcc4c339 --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java @@ -0,0 +1,55 @@ +/* + * 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 client; + +import server.ServiceProvider; +import main.*; +import java.util.logging.Level; +import java.util.logging.Logger; +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Scope; +import org.osoa.sca.annotations.Service; + + +@Service(Client.class) +@Scope("COMPOSITE") +public class ClientImpl implements ClientCallback, Client { + + @Reference + public ServiceProvider service; + + public void receiveResult(String s) { + System.out.println("client receiving the result: "+ s); + } + + public void someClientMethod() { + service.someServiceMethod(); + + try { + System.out.println("Sleeping at client!"); + Thread.sleep(1000); + } catch (InterruptedException ex) { + Logger.getLogger(ClientImpl.class.getName()).log(Level.SEVERE, null, ex); + } + System.out.println("Waking up at client!"); + + service.close(); + } +} diff --git a/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java b/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java new file mode 100644 index 0000000000..b39e260b87 --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java @@ -0,0 +1,37 @@ +/* + * 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 main; + +import client.Client; +import org.apache.tuscany.sca.host.embedded.SCADomain; + + +public class Main { + + public static void main(String... args) { + SCADomain scaDomain = SCADomain.newInstance("callback.composite"); + + Client client = scaDomain.getService(Client.class, "Consumer"); + client.someClientMethod(); + + //scaDomain.close(); + } + +} diff --git a/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java new file mode 100644 index 0000000000..c691f74646 --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java @@ -0,0 +1,40 @@ +/* + * 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 server; + +import client.ClientCallback; +import org.osoa.sca.annotations.Callback; +import org.osoa.sca.annotations.Conversational; +import org.osoa.sca.annotations.EndsConversation; +import org.osoa.sca.annotations.OneWay; + + + +@Conversational +@Callback(ClientCallback.class) +public interface ServiceProvider { + + @OneWay + public void someServiceMethod(); + + @EndsConversation + public void close(); + +} diff --git a/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java new file mode 100644 index 0000000000..aec02b37b7 --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java @@ -0,0 +1,53 @@ +/* + * 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 server; + +import client.ClientCallback; +import java.util.logging.Level; +import java.util.logging.Logger; +import org.osoa.sca.annotations.Callback; +import org.osoa.sca.annotations.Scope; +import org.osoa.sca.annotations.Service; + + +@Service(ServiceProvider.class) +@Scope("COMPOSITE") +public class ServiceProviderImpl implements ServiceProvider { + + @Callback + public ClientCallback callback; + + public void someServiceMethod() { + + try { + System.out.println("Sleeping at server!"); + Thread.sleep(5000); + } catch (InterruptedException ex) { + Logger.getLogger(ServiceProviderImpl.class.getName()).log(Level.SEVERE, null, ex); + } + System.out.println("Waking up at server!"); + + callback.receiveResult("RESULT"); + } + + public void close() { + System.out.println("Closing the conversation on the server!"); + } +} diff --git a/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite b/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite new file mode 100644 index 0000000000..7b0e5b2b28 --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite @@ -0,0 +1,34 @@ +<?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. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" + targetNamespace="http://callback" + name="callback"> + + <component name="Consumer"> + <implementation.java class="client.ClientImpl"/> + <reference name="service" target="ServiceProvider"/> + </component> + + <component name="ServiceProvider"> + <implementation.java class="server.ServiceProviderImpl"/> + </component> + +</composite> diff --git a/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java b/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java new file mode 100644 index 0000000000..21178f710b --- /dev/null +++ b/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.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 test; + +import client.Client; +import junit.framework.TestCase; + +import org.apache.tuscany.sca.host.embedded.SCADomain; + +public class ConversationTestCase extends TestCase { + + private Client client; + private SCADomain domain; + + @Override + protected void setUp() throws Exception { + domain = SCADomain.newInstance("callback.composite"); + + client = domain.getService(Client.class, "Consumer"); + } + + @Override + protected void tearDown() throws Exception { + domain.close(); + } + + public void test() throws Exception { + client.someClientMethod(); + } +} |