summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-0.99/itest/conversations/src/main/java/org/apache/tuscany/sca/test/ConversationsServiceImpl.java
blob: 45fc68308be98053733090bcd18968baac4346bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
 * 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.test;

import org.osoa.sca.ComponentContext;
import org.osoa.sca.ServiceReference;
import org.osoa.sca.annotations.Callback;
import org.osoa.sca.annotations.Context;
import org.osoa.sca.annotations.Scope;
import org.osoa.sca.annotations.Service;

@Service(ConversationsService.class)
@Scope("CONVERSATION")

public class ConversationsServiceImpl implements ConversationsService {
    
        @Context
        protected ComponentContext context;

	@Callback 
	protected ConversationsCallback callback; 
        private int count=0;
	
	public void knockKnock(String aString) { 
		
	  try 
	  {
	   count++;	  
	   //System.out.println("ConversationsServiceImpl message received: " + aString);
	   callback.callBackMessage("Who's There " + count); 
	   callback.callBackIncrement("Add one please");
       //System.out.println("ConversationsServiceImpl responses sent");	
	   return; 
	  }
	  catch (Exception ex) 
	  {
	   ex.printStackTrace();	  
	  }
	  
	}
	
	public int getCount(ServiceReference aServiceReference)
	{
		
      //		
	  // Invoke a method on the service reference and return back the result. 
	  //		
	  
	  int count=0;
	  try
	  {
	  count =  ((ConversationsClient) aServiceReference).count();
	  }
	  catch (Exception ex) 
	  {
		  ex.printStackTrace();
	  }
	  return count;	
	  
	}
	
	public int getLocalCount()
	{
		
      //		
	  // Return my localc instance count.  This is used for test4.
	  //		
	 
	  return count;	
	  
	}
	
	public String getDateTime(ServiceReference aServiceReference)
	{
		
      //		
	  // Invoke a method on the service reference and return back the result. 
	  //
		
	  String dateTime;
	  dateTime =  ((ConversationsClient2) aServiceReference).getDateTime();
	  return dateTime;	
	  
	}

	public void add(int anInt) {
		
		count +=anInt;
		
	}
	
    public void initializeCount() {
		
		count =0;
		
	}

	public boolean createServiceReferenceForSelf() {
		
		// This is done here because we need to test getting a ServiceReference 
		// from a component that implements a single interface. The client in this test
		// impliments 2 interfaces to test the variant of this that takes interface name as an argumnet. 
		
		boolean aBoolean = false; 		
		
	    ServiceReference myServiceReference = null; 

	    try
	    {
		 myServiceReference = context.createSelfReference(ConversationsService.class);
		 System.out.println("Laa: Created Service Reference for Session:" + myServiceReference);
	    }
	    catch (Exception ex) 
	    {
	    	ex.printStackTrace();
	    }    
		
		
	    if (myServiceReference != null)
	    {
	    	aBoolean = true;
	    	System.out.println("Laa: Service Reference is not null");
	    }	
		
	   	return aBoolean;
	}
	
	
}