source: trunk/src/gcc/libjava/javax/naming/CompositeName.java@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 6.4 KB
Line 
1/* Copyright (C) 2001 Free Software Foundation
2
3 This file is part of libgcj.
4
5This software is copyrighted work licensed under the terms of the
6Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7details. */
8
9package javax.naming;
10
11import java.io.Serializable;
12import java.util.Enumeration;
13import java.util.NoSuchElementException;
14import java.util.Vector;
15
16/**
17 * @author Tom Tromey <tromey@redhat.com>
18 * @date May 16, 2001
19 *
20 * FIXME: must write readObject and writeObject to conform to
21 * serialization spec.
22 */
23public class CompositeName implements Name, Cloneable, Serializable
24{
25 public CompositeName ()
26 {
27 elts = new Vector ();
28 }
29
30 protected CompositeName (Enumeration comps)
31 {
32 elts = new Vector ();
33 try
34 {
35 while (comps.hasMoreElements ())
36 elts.add (comps.nextElement ());
37 }
38 catch (NoSuchElementException ignore)
39 {
40 }
41 }
42
43 public CompositeName (String n) throws InvalidNameException
44 {
45 elts = new Vector ();
46 // Parse the string into its components.
47 final char no_quote = 'x'; // Use 'x' to mean no quoting.
48 char quote = no_quote;
49 boolean escaped = false;
50 StringBuffer new_element = new StringBuffer ();
51 for (int i = 0; i < n.length (); ++i)
52 {
53 char c = n.charAt (i);
54 if (escaped)
55 escaped = false;
56 else if (c == '\\')
57 {
58 escaped = true;
59 continue;
60 }
61 else if (quote != no_quote)
62 {
63 if (quote == c)
64 {
65 // The quotes must surround a complete component.
66 if (i + 1 < n.length () && n.charAt (i + 1) != '/')
67 throw new InvalidNameException ("close quote before end of component");
68 elts.add (new_element.toString ());
69 new_element.setLength (0);
70 quote = no_quote;
71 continue;
72 }
73 // Otherwise, fall through.
74 }
75 // Quotes are only special at the start of a component.
76 else if (new_element.length () == 0
77 && (c == '\'' || c == '"'))
78 {
79 quote = c;
80 continue;
81 }
82 else if (c == '/')
83 {
84 elts.add (new_element.toString ());
85 new_element.setLength (0);
86 continue;
87 }
88
89 new_element.append (c);
90 }
91
92 if (new_element.length () != 0)
93 elts.add (new_element.toString ());
94
95 // Error checking.
96 if (quote != no_quote)
97 throw new InvalidNameException ("unterminated quote");
98 if (escaped)
99 throw new InvalidNameException ("trailing escape character");
100 }
101
102 public Name add (int posn, String comp) throws InvalidNameException
103 {
104 elts.add (posn, comp);
105 return this;
106 }
107
108 public Name add (String comp) throws InvalidNameException
109 {
110 elts.add (comp);
111 return this;
112 }
113
114 public Name addAll (int posn, Name n) throws InvalidNameException
115 {
116 Enumeration e = n.getAll ();
117 try
118 {
119 while (e.hasMoreElements ())
120 {
121 elts.add (posn, e.nextElement ());
122 ++posn;
123 }
124 }
125 catch (NoSuchElementException ignore)
126 {
127 }
128 return this;
129 }
130
131 public Name addAll (Name suffix) throws InvalidNameException
132 {
133 Enumeration e = suffix.getAll ();
134 try
135 {
136 while (e.hasMoreElements ())
137 elts.add (e.nextElement ());
138 }
139 catch (NoSuchElementException ignore)
140 {
141 }
142 return this;
143 }
144
145 public Object clone ()
146 {
147 return new CompositeName (elts.elements ());
148 }
149
150 public int compareTo (Object obj)
151 {
152 if (obj == null || ! (obj instanceof CompositeName))
153 throw new ClassCastException ("CompositeName.compareTo() expected CompositeName");
154 CompositeName cn = (CompositeName) obj;
155 int last = Math.min (cn.elts.size (), elts.size ());
156 for (int i = 0; i < last; ++i)
157 {
158 String f = (String) elts.get (i);
159 int comp = f.compareTo ((String) cn.elts.get (i));
160 if (comp != 0)
161 return comp;
162 }
163 return elts.size () - cn.elts.size ();
164 }
165
166 public boolean endsWith (Name n)
167 {
168 if (! (n instanceof CompositeName))
169 return false;
170 CompositeName cn = (CompositeName) n;
171 if (cn.elts.size () > elts.size ())
172 return false;
173 int delta = elts.size () - cn.elts.size ();
174 for (int i = 0; i < cn.elts.size (); ++i)
175 {
176 if (! cn.elts.get (i).equals (elts.get (delta + i)))
177 return false;
178 }
179 return true;
180 }
181
182 public boolean equals (Object obj)
183 {
184 if (! (obj instanceof CompositeName))
185 return false;
186 CompositeName cn = (CompositeName) obj;
187 return elts.equals (cn.elts);
188 }
189
190 public String get (int posn)
191 {
192 return (String) elts.get (posn);
193 }
194
195 public Enumeration getAll ()
196 {
197 return elts.elements ();
198 }
199
200 public Name getPrefix (int posn)
201 {
202 CompositeName cn = new CompositeName ();
203 for (int i = 0; i < posn; ++i)
204 cn.elts.add ((String) elts.get (i));
205 return cn;
206 }
207
208 public Name getSuffix (int posn)
209 {
210 if (posn > elts.size ())
211 throw new ArrayIndexOutOfBoundsException (posn);
212 CompositeName cn = new CompositeName ();
213 for (int i = posn; i < elts.size (); ++i)
214 cn.elts.add ((String) elts.get (i));
215 return cn;
216 }
217
218 public int hashCode ()
219 {
220 // Specified in documentation.
221 int h = 0;
222 for (int i = 0; i < elts.size (); ++i)
223 h += elts.get (i).hashCode ();
224 return h;
225 }
226
227 public boolean isEmpty ()
228 {
229 return elts.isEmpty ();
230 }
231
232 public Object remove (int posn) throws InvalidNameException
233 {
234 return elts.remove (posn);
235 }
236
237 public int size ()
238 {
239 return elts.size ();
240 }
241
242 public boolean startsWith (Name n)
243 {
244 if (! (n instanceof CompositeName))
245 return false;
246 CompositeName cn = (CompositeName) n;
247 if (cn.elts.size () > elts.size ())
248 return false;
249 for (int i = 0; i < cn.elts.size (); ++i)
250 {
251 if (! cn.elts.get (i).equals (elts.get (i)))
252 return false;
253 }
254 return true;
255 }
256
257 public String toString ()
258 {
259 StringBuffer result = new StringBuffer ();
260 for (int i = 0; i < elts.size (); ++i)
261 {
262 // For simplicity we choose to always quote using escapes and
263 // never quotes.
264 String elt = (String) elts.get (i);
265 if (i > 0
266 || (i == elts.size () - 1 && elt.equals ("")))
267 result.append ('/');
268 for (int k = 0; k < elt.length (); ++k)
269 {
270 char c = elt.charAt (k);
271 // We must quote
272 // ... a leading quote,
273 if ((k == 0 && (c == '"' || c == '\''))
274 // ... an escape preceding a meta character,
275 // or at the end of a component,
276 || (c == '\\'
277 && (k == elt.length () - 1
278 || "\\'\"/".indexOf (elt.charAt (k + 1)) != -1))
279 // ... or a component separator.
280 || c == '/')
281 result.append ('\\');
282 result.append (c);
283 }
284 }
285 return result.toString ();
286 }
287
288 private transient Vector elts;
289}
Note: See TracBrowser for help on using the repository browser.