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
|
// $Id$
// ================================================================
//
// = LIBRARY
// utils
//
// = FILENAME
// nsdel.cpp
//
// = DESCRIPTION
// Naming Service del utility
//
// = AUTHOR
// Carlos O'Ryan <coryan@uci.edu>
// enhanced Jan 15, 2001 Paul Caffrey <denginere@hotmail.com>
// redone Jun 21, 2006 Simon Massey <sma@prismtech.com>
//
// ================================================================
#include "orbsvcs/CosNamingC.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_string.h"
#include "ace/Argv_Type_Converter.h"
int
ACE_TMAIN (int argcw, ACE_TCHAR *argvw[])
{
CosNaming::Name the_name (0);
CORBA::ORB_var orb;
try
{
// Contact the orb
ACE_Argv_Type_Converter argcon (argcw, argvw);
orb = CORBA::ORB_init (argcon.get_argc (), argcon.get_ASCII_argv (),
"");
// Scan through the command line options
bool
failed = false,
quiet = false,
destroy = false;
int
argc = argcon.get_argc ();
ACE_TCHAR
**argv = argcon.get_TCHAR_argv ();
const char
*const pname = ACE_TEXT_ALWAYS_CHAR (argv[0]),
*nameService = 0;
char
kindsep = '.',
ctxsep[] = "/",
*name = 0;
if (0 < argc)
{
while (0 < --argc)
{
++argv;
if (0 == ACE_OS::strcmp (*argv, ACE_TEXT ("--ns")))
{
if (!--argc)
{
ACE_DEBUG ((LM_DEBUG,
"Error: --ns requires an argument\n"));
failed= true;
}
else
{
++argv;
if (nameService)
{
ACE_DEBUG ((LM_DEBUG,
"Error: more than one --ns.\n"));
failed= true;
}
else
nameService = ACE_TEXT_ALWAYS_CHAR (*argv);
}
}
else if (0 == ACE_OS::strcmp (*argv, ACE_TEXT ("--quiet")))
{
quiet = true;
}
else if (0 == ACE_OS::strcmp (*argv, ACE_TEXT ("--name")))
{
if (name)
{
ACE_DEBUG ((LM_DEBUG,
"Error: more than one --name\n"));
failed = true;
}
else if (!--argc)
{
ACE_DEBUG ((LM_DEBUG,
"Error: --name requires an argument\n"));
failed = true;
}
else
name = ACE_TEXT_ALWAYS_CHAR (*++argv);
}
else if (0 == ACE_OS::strcmp (*argv, ACE_TEXT ("--ctxsep")))
{
if (!--argc)
{
ACE_DEBUG ((LM_DEBUG,
"Error: --ctxsep requires a character\n"));
failed = true;
}
else if (1 != ACE_OS::strlen(*++argv))
{
ACE_DEBUG ((LM_DEBUG,
"Error: --ctxsep takes a single character (not %s)\n", *argv));
failed = true;
}
else
ctxsep[0] = ACE_TEXT_ALWAYS_CHAR (*argv)[0];
}
else if (0 == ACE_OS::strcmp (*argv, ACE_TEXT ("--kindsep")))
{
if (!--argc)
{
ACE_DEBUG ((LM_DEBUG,
"Error: --kindsep requires a character\n"));
failed = true;
}
else if (1 != ACE_OS::strlen(*++argv))
{
ACE_DEBUG ((LM_DEBUG,
"Error: --kindsep takes a single character (not %s)\n", *argv));
failed = true;
}
else
kindsep = ACE_TEXT_ALWAYS_CHAR (*argv)[0];
}
else if (0 == ACE_OS::strcmp (*argv, ACE_TEXT ("--destroy")))
{
destroy = true;
}
else
{
ACE_DEBUG ((LM_DEBUG,
"Unknown option %s\n", *argv));
failed = true;
}
}
}
if (!name || failed)
{
ACE_DEBUG ((LM_DEBUG,
"\nUsage:\n %s --name <name>\n"
"optional:\n"
" --ns <ior>\n"
" --ctxsep <character>\n"
" --kindsep <character>\n"
" --destroy\n"
" --quiet\n\n"
"where <name> uses the --ctxsep character (defaults to /)\n"
"to separate sub-contexts and --kindsep (defaults to .)\n"
"to separate ID & Kind. Will destroy a naming context\n"
"before unbinding if --destroy is given, otherwise it\n"
"will orphan them. Connects to default NameService\n"
"unless --ns is given. Displays all ID/Kinds found\n"
"on path unless --quiet is given.\n",
pname));
orb->destroy ();
return 1;
}
// Contact the name service
CORBA::Object_var nc_obj;
if (nameService)
nc_obj = orb->string_to_object (nameService);
else
nc_obj = orb->resolve_initial_references ("NameService");
CosNaming::NamingContext_var root_nc =
CosNaming::NamingContext::_narrow (nc_obj.in ());
if (CORBA::is_nil (root_nc.in ()))
{
ACE_DEBUG ((LM_DEBUG,
"Error: nil naming context\n"));
orb->destroy ();
return 1;
}
// Assemble the name from the user string given
char *cp;
while (0 != (cp = ACE_OS::strtok (name, ctxsep)))
{
const int index= the_name.length();
the_name.length (index+1);
char *kind = (char *)ACE_OS::strchr (cp, kindsep);
if (kind)
{
*kind = '\0';
the_name[index].kind= CORBA::string_dup (++kind);
}
the_name[index].id = CORBA::string_dup (cp);
name = 0; // way strtok works
}
// Attempt to locate the object and destroy/unbind it
CORBA::Object_var
obj = root_nc->resolve( the_name );
CosNaming::NamingContext_var this_nc =
CosNaming::NamingContext::_narrow (obj.in ());
if (!CORBA::is_nil (this_nc.in ()))
{
if (destroy)
{
if (!quiet)
ACE_DEBUG ((LM_DEBUG,"Destroying\n"));
this_nc->destroy( );
}
else if (!quiet)
{
CORBA::String_var str =
orb->object_to_string (obj.in ());
ACE_DEBUG ((LM_DEBUG,
"\n*** Possiably Orphaned Naming Context ***\n%s\n\n", str.in()));
}
}
else if (destroy && !quiet)
ACE_DEBUG ((LM_DEBUG,"Can't Destroy object, it is not a naming context!\n"));
root_nc->unbind (the_name );
if (!quiet)
{
unsigned int index;
for (index= 0u; index < the_name.length()-1u; ++index)
{
if (the_name[index].kind && the_name[index].kind[0])
ACE_DEBUG ((LM_DEBUG, "Found ID: %s (Kind: %s)\n",
the_name[index].id.in(),
the_name[index].kind.in()));
else
ACE_DEBUG ((LM_DEBUG, "Found ID: %s\n",
the_name[index].id.in()));
}
ACE_DEBUG ((LM_DEBUG, "UnBound ID: %s",
the_name[index].id.in()));
if (the_name[index].kind && the_name[index].kind[0])
ACE_DEBUG ((LM_DEBUG, " (Kind: %s)\n",
the_name[index].kind.in()));
ACE_DEBUG ((LM_DEBUG, "\n"));
}
}
catch (const CosNaming::NamingContext::NotFound& nf)
{
unsigned int index;
const unsigned int limit= the_name.length()-nf.rest_of_name.length();
ACE_DEBUG ((LM_DEBUG, "\nError:\n"));
for (index= 0u; index < limit; ++index)
{
if (the_name[index].kind && the_name[index].kind[0])
ACE_DEBUG ((LM_DEBUG, "ID: %s (Kind: %s)\n",
the_name[index].id.in(),
the_name[index].kind.in()));
else
ACE_DEBUG ((LM_DEBUG, "ID: %s\n",
the_name[index].id.in()));
}
const char *why= "Unknown reason";
switch (nf.why)
{
case CosNaming::NamingContext::missing_node:
why= "\nThe following node is missing";
break;
case CosNaming::NamingContext::not_context:
why= "\nThe following is a final object binding, not a naming context";
break;
case CosNaming::NamingContext::not_object:
why= "\nThe following is a naming context, not a final object binding";
break;
}
nf._tao_print_exception (why);
for (index= 0u; index < nf.rest_of_name.length(); ++index)
{
if (nf.rest_of_name[index].kind && nf.rest_of_name[index].kind[0])
ACE_DEBUG ((LM_DEBUG, "ID: %s (Kind: %s)\n",
nf.rest_of_name[index].id.in(),
nf.rest_of_name[index].kind.in()));
else
ACE_DEBUG ((LM_DEBUG, "ID: %s\n",
nf.rest_of_name[index].id.in()));
}
orb->destroy ();
return 1;
}
catch (const CORBA::Exception& ex)
{
ACE_DEBUG ((LM_DEBUG, "\nError:\n"));
ex._tao_print_exception ("Exception in nsdel");
orb->destroy ();
return 1;
}
orb->destroy ();
return 0;
}
|