summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/DSI/Database_i.cpp
blob: 94ceae588bec2e7da37cb896ed38ee752080294d (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
// $Id$

#include "Database_i.h"

ACE_RCSID(DSI, Database_i, "$Id$")

DatabaseImpl::Simpler_Malloc::Simpler_Malloc (void)
  : MALLOC (ACE_DEFAULT_BACKING_STORE)
{
}

DatabaseImpl::Entry::Entry (CORBA::ORB_ptr orb,
                            PortableServer::POA_ptr poa)
  : orb_ (CORBA::ORB::_duplicate (orb)),
    poa_ (PortableServer::POA::_duplicate (poa))
{
}

DatabaseImpl::Entry::~Entry (void)
{
}

void 
DatabaseImpl::Entry::invoke (CORBA::ServerRequest_ptr request,
                             CORBA::Environment &env)
{
  // Get the POA Current object reference
  CORBA::Object_var obj = this->orb_->resolve_initial_references ("POACurrent");

  // Narrow the object reference to a POA Current reference
  PortableServer::Current_var poa_current = PortableServer::Current::_narrow (obj.in (), env);
  if (env.exception () != 0)
    {
      env.print_exception ("PortableServer::Current::_narrow");
      return;
    }
  
  // The servant determines the key associated with thex database entry
  // represented by self
  PortableServer::ObjectId_var oid = poa_current->get_object_id (env);
  if (env.exception () != 0)
    return;

  // Now convert the id into a string
  CORBA::String_var key = PortableServer::ObjectId_to_string (oid.in ());
  
  // Get the operation name for this request
  const char *operation = request->operation ();
  
  if (ACE_OS::strcmp (operation, "_is_a") == 0)
    this->_is_a (request, env);
  else
    {
      env.exception (new CORBA::NO_IMPLEMENT (CORBA::COMPLETED_NO));
      return;
    }    
}

void 
DatabaseImpl::Entry::_is_a (CORBA::ServerRequest_ptr request,
                            CORBA::Environment &env)
{
  CORBA::NVList_ptr list;
  this->orb_->create_list (1, list);

  char *value = 0;
  CORBA::Any any_1 (CORBA::_tc_string, &value);

  CORBA::NamedValue_ptr named_value_1 = list->add_value ("value", 
                                                         any_1, 
                                                         CORBA::ARG_IN, 
                                                         env);
  if (env.exception () != 0)
    return;

  request->arguments (list,
                      env);
  if (env.exception () != 0)
    return;

  CORBA::Boolean result;
  if (!ACE_OS::strcmp (value, "IDL:Database/Employee:1.0") ||
      !ACE_OS::strcmp (value, "IDL:Database/Entry:1.0") ||
      !ACE_OS::strcmp (value, CORBA::_tc_Object->id (env)))
    result = 1;
  else
    result = 0;
  
  CORBA::Any result_any;
  CORBA::Any::from_boolean from_boolean (result);
  result_any <<= from_boolean;

  request->set_result (result_any, env);
}

CORBA::RepositoryId 
DatabaseImpl::Entry::_primary_interface (const PortableServer::ObjectId &oid,
                                         PortableServer::POA_ptr poa,
                                         CORBA::Environment &env)
{
  return 0;
}

PortableServer::POA_ptr 
DatabaseImpl::Entry::_default_POA (CORBA::Environment &env)
{
  ACE_UNUSED_ARG (env);
  return PortableServer::POA::_duplicate (this->poa_.in ());
}

DatabaseImpl::Agent::Agent (CORBA::ORB_ptr orb,
                            PortableServer::POA_ptr poa)
  : orb_ (CORBA::ORB::_duplicate (orb)),
    poa_ (PortableServer::POA::_duplicate (poa)),
    common_servant_ (orb, poa)
{
  CORBA::Environment env;

  this->poa_->set_servant (&this->common_servant_, env);
  if (env.exception () != 0)
    {
      ACE_ERROR ((LM_ERROR, "PortableServer::POA::set_servant\n"));
      ACE_OS::exit (-1);
    }
}

DatabaseImpl::Agent::~Agent (void)
{
}

Database::Entry_ptr
DatabaseImpl::Agent::create_entry (const char *key,
                                   const char *entry_type,
                                   const Database::NVPairSequence &initial_attributes,
                                   CORBA::Environment &env)
{
  // Create a new entry in the database:  
  if (ACE_OS::strcmp (entry_type, "Employee") != 0 ||
      initial_attributes.length () != 2)
    {
      CORBA::Exception *exception = new Database::Unknown_Type (entry_type);
      env.exception (exception);
      return Database::Entry::_nil ();
    }
  
  char *name = 0;
  CORBA::Long id = 0;

  const Database::NamedValue &first = initial_attributes[0];    
  const Database::NamedValue &second = initial_attributes[1];    
  if (ACE_OS::strcmp (first.name.in (), "name") != 0 ||
      ACE_OS::strcmp (second.name.in (), "id") != 0)
    {
      CORBA::Exception *exception = new Database::Unknown_Type (entry_type);
      env.exception (exception);
      return Database::Entry::_nil ();
    }
      
  first.value >>= name;
  second.value >>= id;

  Employee *new_employee = new Employee (name, id);
  DATABASE::instance ()->bind (key, new_employee);

  // creates a reference to the CORBA object used to encapsulate
  // access to the new entry in the database.  There is an interface
  // for each entry type:
  PortableServer::ObjectId_var obj_id = PortableServer::string_to_ObjectId (key);
  CORBA::String_var repository_id = DatabaseImpl::entry_type_to_repository_id ("Entry");
  CORBA::Object_var obj = this->poa_->create_reference_with_id (obj_id.in (),
                                                                repository_id.in (),
                                                                env);
  Database::Entry_var entry = Database::Entry::_narrow (obj.in (), env);
  if (env.exception () != 0)
    return Database::Entry::_nil ();

  return entry._retn ();
}

Database::Entry_ptr 
DatabaseImpl::Agent::find_entry (const char *key,
                                 const char *entry_type,
                                 CORBA::Environment &env)
{
  if (ACE_OS::strcmp (entry_type, "Employee") != 0)
    {
      CORBA::Exception *exception = new Database::Unknown_Type (entry_type);
      env.exception (exception);
      return Database::Entry::_nil ();
    }
  
  void *temp;
  if (DATABASE::instance ()->find (key, temp) == 0)
    {
      Employee *employee = (Employee *) temp;

      // creates a reference to the CORBA object used to encapsulate
      // access to the new entry in the database.  There is an interface
      // for each entry type:
      PortableServer::ObjectId_var obj_id = PortableServer::string_to_ObjectId (key);
      CORBA::String_var repository_id = DatabaseImpl::entry_type_to_repository_id ("Entry");
      CORBA::Object_var obj = this->poa_->create_reference_with_id (obj_id.in (),
                                                                    repository_id.in (),
                                                                    env);
      Database::Entry_var entry = Database::Entry::_narrow (obj.in (), env);
      if (env.exception () != 0)
        return Database::Entry::_nil ();

      return entry._retn ();
    }

  else
    {
      CORBA::Exception *exception = new Database::Unknown_Key (key);
      env.exception (exception);
      return Database::Entry::_nil ();
    }
}

void 
DatabaseImpl::Agent::destroy_entry (const char *key,
                                    const char *entry_type,
                                    CORBA::Environment &env)
{
  if (ACE_OS::strcmp (entry_type, "Employee") != 0)
    {
      CORBA::Exception *exception = new Database::Unknown_Type (entry_type);
      env.exception (exception);
      return;
    }
  
  void *temp;
  if (DATABASE::instance ()->unbind (key, temp) == 0)
    {
      Employee *employee = (Employee *) temp;
      delete employee;
    }
  else
    {
      CORBA::Exception *exception = new Database::Unknown_Key (key);
      env.exception (exception);
      return;
    }
}

PortableServer::POA_ptr 
DatabaseImpl::Agent::_default_POA (CORBA::Environment &env)
{
  ACE_UNUSED_ARG (env);
  return PortableServer::POA::_duplicate (this->poa_.in ());
}

char *
DatabaseImpl::entry_type_to_repository_id (const char *entry_type)
{
  static const char *prefix = "IDL:Database/";
  static int prefix_length = ACE_OS::strlen (prefix); 
  static const char *suffix = ":1.0";
  static int suffix_length = ACE_OS::strlen (prefix); 

  int len = 
    prefix_length + 
    ACE_OS::strlen (entry_type) + 
    suffix_length +     
    1;

  char *result = CORBA::string_alloc (len);
  ACE_OS::sprintf (result,
                   "%s%s%s",
                   prefix,
                   entry_type,
                   suffix);
  return result;
}

DatabaseImpl::Employee::Employee (const char* name, 
                                  CORBA::Long id) 
  : id_ (id),
    name_ (0)
{
  this->name (name);
}

DatabaseImpl::Employee::~Employee (void) 
{ 
  DATABASE::instance ()->free (this->name_); 
}

const char *
DatabaseImpl::Employee::name (void) const
{ 
  return this->name_; 
}

void 
DatabaseImpl::Employee::name (const char* name)
{
  DATABASE::instance ()->free (this->name_);
  this->name_ = (char *) DATABASE::instance ()->malloc (ACE_OS::strlen (name) + 1);
  ACE_OS::strcpy (this->name_, name);
}

CORBA::Long 
DatabaseImpl::Employee::id (void) const 
{ 
  return this->id_; 
}

void 
DatabaseImpl::Employee::id (CORBA::Long id)
{ 
  this->id_ = id; 
}

void *
DatabaseImpl::Employee::operator new (size_t size)
{
  return DATABASE::instance ()->malloc (size);
}

void 
DatabaseImpl::Employee::operator delete (void *pointer) 
{ 
  DATABASE::instance ()->free (pointer); 
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Malloc<ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex>;
template class ACE_Malloc_Iterator<ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex>;
template class ACE_Singleton<DatabaseImpl::Simpler_Malloc, ACE_Null_Mutex>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Malloc<ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex>
#pragma instantiate ACE_Malloc_Iterator<ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex>
#pragma instantiate ACE_Singleton<DatabaseImpl::Simpler_Malloc, ACE_Null_Mutex>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */