summaryrefslogtreecommitdiff
path: root/java/JACE/netsvcs/Naming/NameProxy.java
blob: 9b1b3102f1dc36fae48f21e79054125feafc6fca (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
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/*************************************************
 *
 * = PACKAGE
 *    netsvcs.Naming
 *
 * = FILENAME
 *    NameProxy.java
 *
 *************************************************/
package JACE.netsvcs.Naming;

import java.io.*;
import java.net.*;
import java.util.*;
import JACE.OS.*;
import JACE.SOCK_SAP.*;
import JACE.Connection.*;

/**
 * Proxy which clients can use to interact with the naming service.
 * Can be used with the Connector.
 *
 *@see JACE.Connection.Connector
 *@see NameAcceptor
 *@see NameHandler
 *
 *@author Everett Anderson
 */
public class NameProxy extends SvcHandler
{
  /**
   * Constructor, connects itself using a Connector.
   *
   *@param host name of the host of the naming service
   *@param port port to connect to on the host
   */
  public NameProxy (String host, int port)
    throws UnknownHostException, 
	   SocketException,
	   InstantiationException,
	   IllegalAccessException,
	   IOException
  {
    Connector c = new Connector ();
    c.open (host, port);
    c.connect (this);
  }

  /**
   * Default constructor.  Proxies created with this constructor must
   * be connected to use.
   */
  public NameProxy ()
  {
  }

  /**
   * Constructor taking a SOCKStream to use.
   *
   *@param sock SOCKStream already open to the naming service
   */
  public NameProxy (SOCKStream sock)
  {
    this.stream_ = sock;
  }

  /**
   * Initialize this proxy.  (Called by Connector)
   */
  public int open (Object obj)
  {
    connected_ = true;
    return 0;
  }

  /**
   * Close the proxy, shutting down the connection to the service.
   */
  public int close ()
  {
    if (!connected_)
      return 0;

    try {
      this.peer ().close ();
    } catch (IOException e) {
      return -1;
    } finally {
      connected_ = false;
    }

    return 0;
  }

  /**
   * Attempt to bind the given data pair
   * @param name      Name/key
   * @param value     Value to bind 
   *
   * @return   True iff bind is successful
   */
  public boolean bind(String name, String value) throws IOException
  {
    return this.bind(name, value, null, false);
  }

  /**
   * Attempt to bind the given data triplet
   * @param name      Name/key
   * @param value     Value to bind 
   * @param type      Type to bind (another string)
   *
   * @return   True iff the bind was successful
   */
  public boolean bind(String name, String value, String type) 
    throws IOException
  {
    return this.bind(name, value, type, false);
  }

  /**
   * The most generic of the bind methods.  Allows factoring out of 
   * common code.  Not public.
   */
  boolean bind (String name, String value, String type, boolean rebind) 
    throws IOException
  {
    // Create a new NameRequest with the desired info
    NameRequest request = 
      new NameRequest(rebind ? NameRequest.REBIND : NameRequest.BIND,
		      name,
		      value,
		      type,
		      null);

    // Send it to the naming service
    request.streamOutTo(this.stream_);

    // Create a reply
    NameReply reply = new NameReply();

    // Get the status of the bind from the naming service
    reply.streamInFrom(this.stream_);
      
    // Return true on success
    return (reply.type() == NameReply.SUCCESS ? true : false);
  }

  /**
   * Rebind a name and a value
   * @param name     Name/key
   * @param value    Bound value
   *
   * @return     True if the rebind was successful
   */
  public boolean rebind (String name, String value) throws IOException
  {
    return this.bind(name, value, null, true);
  }

  /** 
   * Rebind a name, value, and type
   * @param name     Name/key
   * @param value    Bound value
   * @param type     Bound type
   *
   * @return    True if rebind was successful
   */
  public boolean rebind (String name, String value, String type) 
    throws IOException
  {
    return this.bind(name, value, type, true);
  }
  /**
   * Look up information bound to the given key/name.
   *
   * @param  name     Name/key
   *
   * @return     Vector with three elements:
   *                 0   Name/key
   *                 1   Value
   *                 2   Type
   */
  public Vector resolve (String name) throws IOException
  {
    // Create a new NameRequest with the name & request type
    NameRequest request = new NameRequest(NameRequest.RESOLVE,
					  name,
					  null,
					  null,
					  null);

    // Send it to the naming service
    request.streamOutTo(this.stream_);

    // Get a response (hopefully with the value and type)
    request.streamInFrom(this.stream_);

    // Dump the result into a vector
    Vector result = new Vector();

    result.addElement(request.name());
    result.addElement(request.value());
    result.addElement(request.type());

      // Cut it down to the size we need
    result.trimToSize();

    return result;
  }

  /**
   * Remove the entry in the mapping corresponding to the given name/key.
   *
   * @param      name      Name/key
   *
   * @return     True if the unbind was successful
   */
  public boolean unbind (String name) throws IOException
  {
    NameRequest request = new NameRequest(NameRequest.UNBIND,
					  name,
					  null,
					  null,
					  null);
    // Send the request to the naming service
    request.streamOutTo(this.stream_);

    NameReply reply = new NameReply();

    // Get reply
    reply.streamInFrom(this.stream_);

    return (reply.type() == NameReply.SUCCESS ? true : false);
  }

  /**
   * Return a vector that's a list of names (Strings) that begin with
   * the given pattern
   * @param    pattern      Search pattern
   * @return   Vector       List of names
   */
  public Vector listNames (String pattern) throws IOException
  {
    return this.requestSimpleList(pattern, NameRequest.LIST_NAMES);
  }

  /**
   * Return a vector that's a list of types (Strings) that begin with
   * the given pattern
   * @param    pattern      Search pattern
   * @return   Vector       List of types
   */
  public Vector listTypes (String pattern) throws IOException
  {
    return this.requestSimpleList(pattern, NameRequest.LIST_TYPES);
  }

  /**
   * Return a vector that's a list of values (Strings) that begin with
   * the given pattern
   * @param    pattern      Search pattern
   * @return   Vector       List of values
   */
  public Vector listValues (String pattern) throws IOException
  {
    return this.requestSimpleList(pattern, NameRequest.LIST_VALUES);
  }

  /**
   * Non-public generic list gathering method
   */
  Vector requestSimpleList (String pattern, int type) throws IOException
  {
    // Make request for a list of the given type
    NameRequest request = new NameRequest(type,
					  pattern,
					  null,
					  null,
					  null);
    request.streamOutTo(this.stream_);

      // Allocate and reuse the DIS here rather than each time we call
      // streamInFrom
    DataInputStream dis = new DataInputStream(this.stream_.inputStream());

    request.streamInFrom(dis);
    Vector result = new Vector();

    // Add elements until there's a null message with the MAX_ENUM
    // request type
    while (request.requestType() != NameRequest.MAX_ENUM) {
      if (type == NameRequest.LIST_NAMES)
	result.addElement(new String(request.name()));
      else
	if (type == NameRequest.LIST_VALUES)
	  result.addElement(new String(request.value()));
	else
	  result.addElement(new String(request.type()));

      request.streamInFrom(dis);
    }

    // Adjust the vector to the minimal size
    result.trimToSize();

    return result;
  }

  /**
   * Get a vector with the entire data set for entries whose name begins with
   * the given pattern.  Each element in the vector is another vector
   * with the following layout:
   *               0     Name/key
   *               1     Value
   *               2     Type
   *
   * @param    pattern     Search pattern
   * @return   Vector of vectors
   */
  public Vector listNameEntries (String pattern) throws IOException
  {
    return this.requestComplexList(pattern, NameRequest.LIST_NAME_ENTRIES);
  }

  /**
   * Get a vector with the entire data set for entries whose value begins with
   * the given pattern.  Each element in the vector is another vector
   * with the following layout:
   *               0     Name/key
   *               1     Value
   *               2     Type
   *
   * @param    pattern     Search pattern
   * @return   Vector of vectors
   */
  public Vector listValueEntries (String pattern) throws IOException
  {
    return this.requestComplexList(pattern, NameRequest.LIST_VALUE_ENTRIES);
  }

  /**
   * Get a vector with the entire data set for entries whose type begins with
   * the given pattern.  Each element in the vector is another vector
   * with the following layout:
   *               0     Name/key
   *               1     Value
   *               2     Type
   *
   * @param    pattern     Search pattern
   * @return   Vector of vectors
   */

  public Vector listTypeEntries (String pattern) throws IOException
  {
    return this.requestComplexList(pattern, NameRequest.LIST_TYPE_ENTRIES);
  }

  /**
   * Non-public generic method for getting a a vector of vectors with the 
   * entire data set for entries fitting the given pattern.
   */
  Vector requestComplexList (String pattern, int type) throws IOException
  {
    // Create request with desired type
    NameRequest request = new NameRequest(type,
					  pattern,
					  null,
					  null,
					  null);
    // Send it to the naming service
    request.streamOutTo(this.stream_);

    // Allocate the DIS here and reuse
    DataInputStream dis = new DataInputStream(this.stream_.inputStream());

    // Get the first response
    request.streamInFrom(dis);
    Vector result = new Vector();

    // Loop while we don't see a null response with the MAX_ENUM 
    //request type
    while (request.requestType() != NameRequest.MAX_ENUM) {
      Vector entry = new Vector();

      // Create an element in the main vector
      entry.addElement(request.name());
      entry.addElement(request.value());
      entry.addElement(request.type());
      entry.trimToSize();
	
      // Add it to the result
      result.addElement(entry);

      // Get another NameRequest
      request.streamInFrom(dis);
    }

    result.trimToSize();

    return result;
  }

  private boolean connected_ = false;
}