-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNERegistryServer.java
311 lines (270 loc) · 8.21 KB
/
NERegistryServer.java
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
* Class : NERegsitryServer.java
* Authors : Eugene Choi, Norbert Chu
* Andrew IDs : dechoi, nrchu
* Description: This is where the heart of the RMI registry is. The table
* mapping names to remote object references are here, and this
* class deals with the registry commands (lookup, bind, rebind,
* unbind, list)
*/
import java.io.*;
import java.net.*;
import java.lang.reflect.*;
import java.util.concurrent.*;
import java.util.*;
public class NERegistryServer {
private ConcurrentHashMap<String,NERemoteObjectReference> table;
private int port;
private LinkedList<NERegistryCommand> commands;
private ServerSocket listener;
/*
* New registry server
*/
public NERegistryServer (int port)
throws SocketException, IOException {
this.port = port;
table = new ConcurrentHashMap<String,NERemoteObjectReference> ();
listener = new ServerSocket (port);
commands = new LinkedList<NERegistryCommand> ();
new Thread (new Runnable () {
public void run () { acceptLoop (); }
}).start ();
new Thread (new Runnable () {
public void run () { executeLoop (); }
}).start ();
System.out.println ("Registry Server Started");
}
/*
* Execution each registry command
*/
// TODO: fixup closing streams on exceptions
private void executeLoop () {
String name, addr, riname;
int port, key;
while (true) {
while (commands.isEmpty ()) {
try {
Thread.sleep (100);
}
catch (InterruptedException e) {
// Should not reach here
continue;
}
}
System.out.println (commands);
executeCommand (commands.remove ());
}
}
/*
* Execute requested command.
* The following symbols are flags to indicate certain results after
* the execution of some of the above commands:
* f = requested object found
* n = requested object not found
* a = rebind successful
* y = this is a registry server
*/
// TODO: fixup closing streams on exceptions
private void executeCommand (NERegistryCommand command) {
String name, addr, riname;
NERemoteObjectReference ref;
int port, key;
try {
Socket client = command.getClient ();
ObjectOutputStream out = new ObjectOutputStream (client.getOutputStream ());
char request = (Character) command.removePart ();
switch (request) {
// lookup
case 'l':
name = (String) command.removePart ();
if (table.containsKey (name)) {
out.writeChar ('f');
out.writeObject (table.get (name));
}
else out.writeChar ('n');
out.flush ();
break;
// rebind
case 'r':
name = (String) command.removePart ();
addr = (String) command.removePart ();
port = (Integer) command.removePart ();
key = (Integer) command.removePart ();
riname = (String) command.removePart ();
ref = new NERemoteObjectReference (addr, port, key, riname);
table.put (name, ref);
break;
// bind
case 'b':
name = (String) command.removePart ();
if (table.containsKey (name)) {
out.writeChar ('1');
out.flush ();
break;
}
addr = (String) command.removePart ();
port = (Integer) command.removePart ();
key = (Integer) command.removePart ();
riname = (String) command.removePart ();
ref = new NERemoteObjectReference (addr, port, key, riname);
table.put (name, ref);
out.writeChar ('0');
out.flush ();
break;
// unbind
case 'u':
name = (String) command.removePart ();
if (! table.containsKey (name)) {
out.writeChar ('2');
out.flush ();
break;
}
table.remove (name);
out.writeChar ('0');
out.flush ();
break;
// list
case 'p':
out.writeInt (table.size ());
for (String n : table.keySet ()) {
out.writeObject (n);
out.writeObject (table.get (n));
}
out.flush ();
break;
// ask
case 'a':
out.writeChar ('y');
out.flush ();
break;
}
out.close ();
client.close ();
}
catch (SocketException e) {
// Ignore
e.printStackTrace ();
}
catch (IOException e) {
// Ignore
e.printStackTrace ();
}
}
/*
* Listen for incoming requests.
* The following symbols indicate various commands the registry server
* should execute:
* l = lookup
* r = rebind
* u = unbind
* p = list
* a = ask (Are you a registry server?)
*/
// TODO: fixup closing streams on exceptions
private void acceptLoop () {
while (true) {
Socket client = null;
NERegistryCommand command;
try {
client = listener.accept ();
command = new NERegistryCommand (client);
ObjectInputStream in = new ObjectInputStream (client.getInputStream ());
char request = in.readChar ();
System.out.println ("Request: " + request);
command.addPart (new Character (request));
switch (request) {
// lookup
case 'l':
command.addPart ((String) in.readObject ());
commands.add (command);
break;
// rebind
case 'r':
command.addPart ((String) in.readObject ());
command.addPart ((String) in.readObject ());
command.addPart (new Integer (in.readInt ()));
command.addPart (new Integer (in.readInt ()));
command.addPart ((String) in.readObject ());
commands.add (command);
break;
// bind
case 'b':
command.addPart ((String) in.readObject ());
command.addPart ((String) in.readObject ());
command.addPart (new Integer (in.readInt ()));
command.addPart (new Integer (in.readInt ()));
command.addPart ((String) in.readObject ());
commands.add (command);
break;
// unbind
case 'u':
command.addPart ((String) in.readObject ());
commands.add (command);
break;
// list
case 'p':
commands.add (command);
break;
// ask
case 'a':
commands.add (command);
break;
// not a command
default :
break;
}
}
catch (ClassNotFoundException e) {
// Should not reach here
try {
if (client != null) client.close ();
}
catch (IOException ex) {
// ignore
}
continue;
}
catch (SocketException e) {
// Ignore
try {
if (client != null) client.close ();
}
catch (IOException ex) {
// ignore
}
continue;
}
catch (IOException e) {
//System.out.println ("Could not accept slave connection on port " +
// localport + ": " +e);
try {
if (client != null) client.close ();
}
catch (IOException ex) {
// ignore
}
continue;
}
}
}
private class NERegistryCommand {
private Socket client;
private LinkedList<Object> command;
public NERegistryCommand (Socket client) {
this.client = client;
this.command = new LinkedList<Object> ();
}
public void addPart (Object o) {
command.add (o);
}
public Socket getClient () {
return client;
}
public Object removePart () {
return command.remove ();
}
public String toString () {
return command.toString ();
}
}
}