KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > naming > rmi > server > Main


1 /*
2
3  ============================================================================
4                    The Apache Software License, Version 1.1
5  ============================================================================
6  
7  Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
8  
9  Redistribution and use in source and binary forms, with or without modifica-
10  tion, are permitted provided that the following conditions are met:
11  
12  1. Redistributions of source code must retain the above copyright notice,
13     this list of conditions and the following disclaimer.
14  
15  2. Redistributions in binary form must reproduce the above copyright notice,
16     this list of conditions and the following disclaimer in the documentation
17     and/or other materials provided with the distribution.
18  
19  3. The end-user documentation included with the redistribution, if any, must
20     include the following acknowledgment: "This product includes software
21     developed by the Apache Software Foundation (http://www.apache.org/)."
22     Alternately, this acknowledgment may appear in the software itself, if
23     and wherever such third-party acknowledgments normally appear.
24  
25  4. The names "Jakarta", "Avalon", "Excalibur" and "Apache Software Foundation"
26     must not be used to endorse or promote products derived from this software
27     without prior written permission. For written permission, please contact
28     apache@apache.org.
29  
30  5. Products derived from this software may not be called "Apache", nor may
31     "Apache" appear in their name, without prior written permission of the
32     Apache Software Foundation.
33  
34  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
35  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
36  FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
37  APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
38  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
39  DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
40  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
41  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
42  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
43  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44  
45  This software consists of voluntary contributions made by many individuals
46  on behalf of the Apache Software Foundation. For more information on the
47  Apache Software Foundation, please see <http://www.apache.org/>.
48  
49 */

50 package org.apache.avalon.excalibur.naming.rmi.server;
51
52 import java.io.IOException JavaDoc;
53 import java.io.ObjectOutputStream JavaDoc;
54 import java.net.ServerSocket JavaDoc;
55 import java.net.Socket JavaDoc;
56 import java.rmi.MarshalledObject JavaDoc;
57 import java.rmi.server.UnicastRemoteObject JavaDoc;
58
59 import org.apache.avalon.excalibur.naming.DefaultNameParser;
60 import org.apache.avalon.excalibur.naming.DefaultNamespace;
61 import org.apache.avalon.excalibur.naming.memory.MemoryContext;
62
63 /**
64  * This is a simple test name server and should NOT be used in a production system.
65  * @deprecated Toolkit deprecated and replaced by http://spice.sourceforge.net/jndikit/
66  */

67 public class Main
68     implements Runnable JavaDoc
69 {
70     public static void main( final String JavaDoc[] args )
71         throws Exception JavaDoc
72     {
73         boolean debug = true;
74
75         if( args.length > 0 )
76         {
77             if( "-q".equals( args[ 0 ] ) )
78             {
79                 debug = false;
80             }
81         }
82
83         final Main main = new Main( debug );
84         main.start();
85         main.accept();
86     }
87
88     private final boolean m_debug;
89     private RMINamingProviderImpl m_server;
90     private ServerSocket JavaDoc m_serverSocket;
91     private MarshalledObject JavaDoc m_serverStub;
92     private boolean m_running;
93     private boolean m_initialized;
94
95     public Main( boolean debug )
96     {
97         m_debug = debug;
98     }
99
100     public Main()
101     {
102         this( true );
103     }
104
105     public void init()
106         throws Exception JavaDoc
107     {
108         if( m_initialized ) return;
109
110         try
111         {
112             if( m_debug ) System.out.println( "Starting server on port " + 1977 );
113             m_serverSocket = new ServerSocket JavaDoc( 1977 );
114             m_initialized = true;
115         }
116         catch( final IOException JavaDoc ioe )
117         {
118             if( m_debug ) System.out.println( "Failed starting server" );
119             throw ioe;
120         }
121     }
122
123     public void start()
124         throws Exception JavaDoc
125     {
126         init();
127         export();
128     }
129
130     public void export()
131         throws Exception JavaDoc
132     {
133         final DefaultNameParser parser = new DefaultNameParser();
134         final DefaultNamespace namespace = new DefaultNamespace( parser );
135         final MemoryContext context = new MemoryContext( namespace, null, null );
136         m_server = new RMINamingProviderImpl( context );
137
138         // Start listener
139
try
140         {
141             // Export server
142
if( m_debug ) System.out.println( "Exporting RMI object on port " + 1099 );
143             m_serverStub =
144                 new MarshalledObject JavaDoc( UnicastRemoteObject.exportObject( m_server, 1099 ) );
145         }
146         catch( final IOException JavaDoc ioe )
147         {
148             if( m_debug ) System.out.println( "Failed exporting object" );
149             throw ioe;
150         }
151     }
152
153     public void dispose()
154         throws Exception JavaDoc
155     {
156         if( m_debug ) System.out.println( "Shutting down server" );
157         m_running = false;
158         final ServerSocket JavaDoc serverSocket = m_serverSocket;
159         m_serverSocket = null;
160         serverSocket.close();
161         if( m_debug ) System.out.println( "Server shutdown" );
162     }
163
164     public void stop()
165         throws Exception JavaDoc
166     {
167         if( m_debug ) System.out.println( "Stopping" );
168         m_running = false;
169         if( m_debug ) System.out.println( "Unexporting object" );
170         UnicastRemoteObject.unexportObject( m_server, true );
171         m_serverStub = null;
172         if( m_debug ) System.out.println( "Server stopped" );
173     }
174
175     public void accept()
176     {
177         m_running = true;
178         while( m_running )
179         {
180             // Accept a connection
181
try
182             {
183                 final Socket JavaDoc socket = m_serverSocket.accept();
184                 if( m_debug ) System.out.println( "Accepted Connection" );
185                 final ObjectOutputStream JavaDoc output =
186                     new ObjectOutputStream JavaDoc( socket.getOutputStream() );
187
188                 output.writeObject( m_serverStub );
189
190                 socket.close();
191             }
192             catch( final IOException JavaDoc ioe )
193             {
194                 if( !m_running ) break;
195                 ioe.printStackTrace();
196             }
197         }
198     }
199
200     public void run()
201     {
202         accept();
203     }
204 }
205
Popular Tags