From c34b55373044d9d1f35251afebce5cda2a01fa12 Mon Sep 17 00:00:00 2001 From: dougsleite Date: Wed, 28 Jan 2009 00:43:11 +0000 Subject: git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@738324 13f79535-47bb-0310-9956-ffa450edef68 --- sandbox/dougsleite/conversationTest/pom.xml | 64 ++++++++++++++++++++++ .../src/main/java/client/Client.java | 26 +++++++++ .../src/main/java/client/ClientCallback.java | 27 +++++++++ .../src/main/java/client/ClientImpl.java | 55 +++++++++++++++++++ .../conversationTest/src/main/java/main/Main.java | 37 +++++++++++++ .../src/main/java/server/ServiceProvider.java | 40 ++++++++++++++ .../src/main/java/server/ServiceProviderImpl.java | 53 ++++++++++++++++++ .../src/main/resources/callback.composite | 34 ++++++++++++ .../src/test/java/test/ConversationTestCase.java | 46 ++++++++++++++++ 9 files changed, 382 insertions(+) create mode 100644 sandbox/dougsleite/conversationTest/pom.xml create mode 100644 sandbox/dougsleite/conversationTest/src/main/java/client/Client.java create mode 100644 sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java create mode 100644 sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java create mode 100644 sandbox/dougsleite/conversationTest/src/main/java/main/Main.java create mode 100644 sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java create mode 100644 sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java create mode 100644 sandbox/dougsleite/conversationTest/src/main/resources/callback.composite create mode 100644 sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java (limited to 'sandbox/dougsleite/conversationTest') 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 @@ + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 1.4-SNAPSHOT + ../pom.xml + + test-conversation + Conversation Test + + + + apache.incubator + http://people.apache.org/repo/m2-incubating-repository + + + + + + org.apache.tuscany.sca + tuscany-host-embedded + 1.4-SNAPSHOT + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 1.4-SNAPSHOT + runtime + + + + junit + junit + 4.2 + test + + + + + + ${artifactId} + + + 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 @@ + + + + + + + + + + + + + + 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(); + } +} -- cgit v1.2.3