~ubuntu-branches/ubuntu/raring/libjboss-remoting-java/raring

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/transport/socket/connection/SocketTestServer.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110909140103-o8ucrolqt5g25k57
Tags: upstream-2.5.3.SP1
ImportĀ upstreamĀ versionĀ 2.5.3.SP1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
* JBoss, Home of Professional Open Source
3
 
* Copyright 2005, JBoss Inc., and individual contributors as indicated
4
 
* by the @authors tag. See the copyright.txt in the distribution for a
5
 
* full listing of individual contributors.
6
 
*
7
 
* This is free software; you can redistribute it and/or modify it
8
 
* under the terms of the GNU Lesser General Public License as
9
 
* published by the Free Software Foundation; either version 2.1 of
10
 
* the License, or (at your option) any later version.
11
 
*
12
 
* This software is distributed in the hope that it will be useful,
13
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
 
* Lesser General Public License for more details.
16
 
*
17
 
* You should have received a copy of the GNU Lesser General Public
18
 
* License along with this software; if not, write to the Free
19
 
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20
 
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21
 
*/
22
 
package org.jboss.test.remoting.transport.socket.connection;
23
 
 
24
 
import org.jboss.jrunit.extensions.ServerTestCase;
25
 
import org.jboss.remoting.InvocationRequest;
26
 
import org.jboss.remoting.InvokerLocator;
27
 
import org.jboss.remoting.ServerInvocationHandler;
28
 
import org.jboss.remoting.ServerInvoker;
29
 
import org.jboss.remoting.Version;
30
 
import org.jboss.remoting.callback.InvokerCallbackHandler;
31
 
import org.jboss.remoting.transport.Connector;
32
 
import org.jboss.remoting.transport.socket.SocketServerInvoker;
33
 
 
34
 
import javax.management.MBeanServer;
35
 
 
36
 
/**
37
 
 * @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
38
 
 */
39
 
public class SocketTestServer extends ServerTestCase
40
 
{
41
 
   // Default locator values
42
 
   private static String transport = "socket";
43
 
   private static String host = "localhost";
44
 
//   private static String host = "192.168.1.100";
45
 
   private static int port = 5400;
46
 
 
47
 
   private static int callCounter = 0;
48
 
 
49
 
   private Connector connector = null;
50
 
 
51
 
   public void setupServer(String locatorURI) throws Exception
52
 
   {
53
 
//      System.setProperty(Version.PRE_2_0_COMPATIBLE, "true");
54
 
 
55
 
      // create the InvokerLocator based on url string format
56
 
      // to indicate the transport, host, and port to use for the
57
 
      // server invoker.
58
 
      InvokerLocator locator = new InvokerLocator(locatorURI);
59
 
      System.out.println("Starting remoting server with locator uri of: " + locatorURI);
60
 
      connector = new Connector(locator);
61
 
      // creates all the connector's needed resources, such as the server invoker
62
 
      connector.create();
63
 
 
64
 
      // create the handler to receive the invocation request from the client for processing
65
 
      SampleInvocationHandler invocationHandler = new SampleInvocationHandler();
66
 
      // first parameter is sub-system name.  can be any String value.
67
 
      connector.addInvocationHandler("sample", invocationHandler);
68
 
 
69
 
      // start with a new non daemon thread so
70
 
      // server will wait for request and not exit
71
 
      connector.start();
72
 
 
73
 
   }
74
 
 
75
 
   public void tearDown()
76
 
   {
77
 
      if(connector != null)
78
 
      {
79
 
         connector.stop();
80
 
         connector.destroy();
81
 
      }
82
 
   }
83
 
 
84
 
   public void setUp() throws Exception
85
 
   {
86
 
      //String locatorURI = transport + "://" + host + ":" + port + "/?" + SocketServerInvoker.CHECK_CONNECTION_KEY + "=" + Boolean.TRUE;
87
 
      //String locatorURI = transport + "://" + host + ":" + port + "/?" + InvokerLocator.SERIALIZATIONTYPE + "=jboss";
88
 
      String locatorURI = getTransport() + "://" + host + ":" + getPort();
89
 
      setupServer(locatorURI);
90
 
   }
91
 
 
92
 
   /**
93
 
    * Can pass transport and port to be used as parameters.
94
 
    * Valid transports are 'rmi' and 'socket'.
95
 
    *
96
 
    * @param args
97
 
    */
98
 
   public static void main(String[] args)
99
 
   {
100
 
      if(args != null && args.length == 3)
101
 
      {
102
 
         transport = args[0];
103
 
         host = args[1];
104
 
         port = Integer.parseInt(args[2]);
105
 
      }
106
 
      SocketTestServer server = new SocketTestServer();
107
 
      try
108
 
      {
109
 
         server.setUp();
110
 
 
111
 
         // wait forever, let the user kill us at any point (at which point, the client will detect we went down)
112
 
         while(true)
113
 
         {
114
 
            Thread.sleep(1000);
115
 
         }
116
 
 
117
 
      }
118
 
      catch(Exception e)
119
 
      {
120
 
         e.printStackTrace();
121
 
      }
122
 
   }
123
 
   
124
 
   protected String getTransport()
125
 
   {
126
 
      return transport;
127
 
   }
128
 
   
129
 
   protected int getPort()
130
 
   {
131
 
      return port;
132
 
   }
133
 
   
134
 
   /**
135
 
    * Simple invocation handler implementation.
136
 
    * This is the code that will be called with the invocation payload from the client.
137
 
    */
138
 
   public static class SampleInvocationHandler implements ServerInvocationHandler
139
 
   {
140
 
      /**
141
 
       * called to handle a specific invocation
142
 
       *
143
 
       * @param invocation
144
 
       * @return
145
 
       * @throws Throwable
146
 
       */
147
 
      public Object invoke(InvocationRequest invocation) throws Throwable
148
 
      {
149
 
         // Print out the invocation request
150
 
//         System.out.println("Invocation request is: " + invocation.getParameter());
151
 
         Integer resp = new Integer(++callCounter);
152
 
//         System.out.println("Returning response of: " + resp);
153
 
         // Just going to return static string as this is just simple example code.
154
 
         return resp;
155
 
      }
156
 
 
157
 
      /**
158
 
       * Adds a callback handler that will listen for callbacks from
159
 
       * the server invoker handler.
160
 
       *
161
 
       * @param callbackHandler
162
 
       */
163
 
      public void addListener(InvokerCallbackHandler callbackHandler)
164
 
      {
165
 
         // NO OP as do not handling callback listeners in this example
166
 
      }
167
 
 
168
 
      /**
169
 
       * Removes the callback handler that was listening for callbacks
170
 
       * from the server invoker handler.
171
 
       *
172
 
       * @param callbackHandler
173
 
       */
174
 
      public void removeListener(InvokerCallbackHandler callbackHandler)
175
 
      {
176
 
         // NO OP as do not handling callback listeners in this example
177
 
      }
178
 
 
179
 
      /**
180
 
       * set the mbean server that the handler can reference
181
 
       *
182
 
       * @param server
183
 
       */
184
 
      public void setMBeanServer(MBeanServer server)
185
 
      {
186
 
         // NO OP as do not need reference to MBeanServer for this handler
187
 
      }
188
 
 
189
 
      /**
190
 
       * set the invoker that owns this handler
191
 
       *
192
 
       * @param invoker
193
 
       */
194
 
      public void setInvoker(ServerInvoker invoker)
195
 
      {
196
 
         // NO OP as do not need reference back to the server invoker
197
 
      }
198
 
 
199
 
   }
200
 
 
201
 
}
 
 
b'\\ No newline at end of file'