summaryrefslogtreecommitdiff
path: root/TAO/tao/Stub.i
blob: 5c45d57c2209f4ba87d4e89f67e6da882a2a6f59 (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
// $Id$

// @@ Get rid of profile specific stuff, it is now in it's own class and
// file. fredk

ACE_INLINE
STUB_Object::~STUB_Object (void)
{
  assert (this->refcount_ == 0);

  // Cleanup hint

  if (this->profile_in_use_ != 0) 
  {
    this->profile_in_use_->reset_hint ();
    // decrease reference count on profile
    this->profile_in_use_->_decr_refcnt ();   
    this->profile_in_use_ = 0;
  }

  if (this->fwd_profile_)
  {
    this->fwd_profile_->reset_hint ();
    this->fwd_profile_->_decr_refcnt ();
    this->fwd_profile_ = 0;
  }

  if (fwd_profiles_)
    delete fwd_profiles_;

  if (this->profile_lock_ptr_)
    delete this->profile_lock_ptr_; 

}

ACE_INLINE
TAO_Profile *
STUB_Object::set_profile_in_use_i (TAO_Profile *pfile)
{
  TAO_Profile *old = this->profile_in_use_;

  // Since we are actively using this profile we dont want
  // it to disappear, so increase the reference count by one!!
  if (pfile && (pfile->_incr_refcnt () == 0))
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                      "(%P|%t) unable to increment profile ref!\n"),
                      0);
  }

  this->profile_in_use_ = pfile;

  if (old)
    old->_decr_refcnt ();

  return this->profile_in_use_;
}

ACE_INLINE
STUB_Object::STUB_Object (char *repository_id)
  : base_profiles_ ((CORBA::ULong) 0),
    fwd_profiles_ (0),
    profile_in_use_ (0),
    fwd_profile_ (0),
    profile_lock_ptr_ (0),
    fwd_profile_success_ (0),
    // what about ACE_SYNCH_MUTEX refcount_lock_
    refcount_ (1),
    use_locate_request_ (0),
    first_locate_request_ (0)
{
  this->profile_lock_ptr_ = 
    TAO_ORB_Core_instance ()->client_factory ()->create_iiop_profile_lock ();  
}

ACE_INLINE
TAO_Profile * 
STUB_Object::set_profiles (TAO_MProfile *mprofiles)
{

  ACE_MT (ACE_GUARD_RETURN (ACE_Lock, 
                            guard, 
                            *this->profile_lock_ptr_, 
                            0));

  base_profiles_.set (mprofiles);

  return this->set_profile_in_use_i (this->base_profiles_.get_next ());  

}

ACE_INLINE
STUB_Object::STUB_Object (char *repository_id,
                          TAO_MProfile &profiles)
  : base_profiles_ ((CORBA::ULong) 0),
    fwd_profiles_ (0),
    profile_in_use_ (0),
    fwd_profile_ (0),
    profile_lock_ptr_ (0),
    fwd_profile_success_ (0),
    // what about ACE_SYNCH_MUTEX refcount_lock_
    refcount_ (1),
    use_locate_request_ (0),
    first_locate_request_ (0)
{

  this->profile_lock_ptr_ =  
    TAO_ORB_Core_instance ()->client_factory ()->create_iiop_profile_lock ();  

  set_profiles (&profiles);
}

ACE_INLINE
STUB_Object::STUB_Object (char *repository_id,
                          TAO_Profile *profile)
  : base_profiles_ ((CORBA::ULong) 0),
    fwd_profiles_ (0),
    profile_in_use_ (0),
    fwd_profile_ (0),
    profile_lock_ptr_ (0),
    fwd_profile_success_ (0),
    // what about ACE_SYNCH_MUTEX refcount_lock_
    refcount_ (1),
    use_locate_request_ (0),
    first_locate_request_ (0)
{
  // @@ XXX need to verify type and deal with wrong types

  this->profile_lock_ptr_ =  
    TAO_ORB_Core_instance ()->client_factory ()->create_iiop_profile_lock ();  

  base_profiles_.set (1);
  
  base_profiles_.add_profile (profile);
  
  this->set_profile_in_use_i (this->base_profiles_.get_next ());  

}

ACE_INLINE
STUB_Object::STUB_Object (char *repository_id,
                          TAO_MProfile *profiles)
  : base_profiles_ ((CORBA::ULong) 0),
    fwd_profiles_ (0),
    profile_in_use_ (0),
    fwd_profile_ (0),
    profile_lock_ptr_ (0),
    fwd_profile_success_ (0),
    // what about ACE_SYNCH_MUTEX refcount_lock_
    refcount_ (1),
    use_locate_request_ (0),
    first_locate_request_ (0)
{
  // @@ XXX need to verify type and deal with wrong types

  // @@ does this need to be freed?
  this->profile_lock_ptr_ =  
    TAO_ORB_Core_instance ()->client_factory ()->create_iiop_profile_lock ();  

  set_profiles (profiles);

}

ACE_INLINE
TAO_Profile *
STUB_Object::profile_in_use (void)
{
  return this->profile_in_use_;
}

ACE_INLINE
TAO_Profile *
STUB_Object::set_profile_in_use (TAO_Profile *pfile)
{

  ACE_MT (ACE_GUARD_RETURN (ACE_Lock, 
                            guard, 
                            *this->profile_lock_ptr_, 
                            0));

  return set_profile_in_use_i (pfile);

}


ACE_INLINE
TAO_Profile *
STUB_Object::get_fwd_profile_i (void)
{
  return this->fwd_profile_;
}

ACE_INLINE
TAO_Profile *
STUB_Object::get_fwd_profile (void)
{
  ACE_MT (ACE_GUARD_RETURN (ACE_Lock, 
                            guard, 
                            *this->profile_lock_ptr_, 
                            0));

  return this->get_fwd_profile_i ();
}


// set_fwd_profile is currently called with either an arg of NULL
// or with a pointer to another STUB_Object's profile_in_use_.
// Change in strategy from previous version:  Since we assume this 
// forward profile comes from am MProfile list, we just increment the
// reference count on the profile.  We do not copy it and we assume
// the user will not modify!
ACE_INLINE
TAO_Profile *
STUB_Object::set_fwd_profile (TAO_Profile *new_profile)
{
 
  TAO_Profile *old = this->fwd_profile_;

  // show that we are using this!
  // @@ could be an inline => reduce code, common
  if (new_profile && (new_profile->_incr_refcnt () == 0))
  {
    ACE_ERROR_RETURN ((LM_ERROR, 
                       "(%P|%t) unable to increment profile ref!\n"), 
                       0);
  }

  this->fwd_profile_ = new_profile;

  if (old) 
    old->_decr_refcnt ();

  return this->fwd_profile_;
}

ACE_INLINE
ACE_Lock &
STUB_Object::get_profile_lock (void)
{
  return *this->profile_lock_ptr_;
}

ACE_INLINE
void 
STUB_Object::reset_first_locate_request (void)
{
  first_locate_request_ = 1;
}

ACE_INLINE
void 
STUB_Object::use_locate_requests (CORBA::Boolean use_it)
{
  if (use_it)
    {
      this->first_locate_request_ = 1;
      this->use_locate_request_ = 1;
    }
  else 
    {
      // Don't use it.
      this->first_locate_request_ = 0;
      this->use_locate_request_ = 0;
    }   
} 

ACE_INLINE
TAO_MProfile * 
STUB_Object::get_profiles (void)
{
  return new TAO_MProfile (&base_profiles_);
}

ACE_INLINE
void
STUB_Object::reset_fwd_profiles (void)
{

  if (fwd_profiles_)
  {
    // @@ Assume on one level deep FRED
    TAO_MProfile *old = fwd_profiles_;
    TAO_MProfile *prev = old->fwded_mprofile ();
    // this should be base_profiles_
    if (prev->get_current_profile ())
      prev->get_current_profile ()->fwd_profiles (0);
      // it better be!  this should be profile_in_use_
  }
    
  set_fwd_profile (0);
}

ACE_INLINE
TAO_Profile *
STUB_Object::reset_profiles (void)
{
  ACE_MT (ACE_GUARD_RETURN (ACE_Lock, 
                            guard, 
                            *this->profile_lock_ptr_, 
                            0));

  // first get rid of any forwarding profile list and fwd_profile
  reset_fwd_profiles ();

  // then rewind profile list, back to the beginning
  this->base_profiles_.rewind ();

  reset_first_locate_request ();
  // resets the flag of the first call locate request to true
  
  return this->set_profile_in_use_i (this->base_profiles_.get_next ());
}

ACE_INLINE
TAO_Profile *
STUB_Object::next_profile (void)
{
  ACE_MT (ACE_GUARD_RETURN (ACE_Lock, 
                            guard, 
                            *this->profile_lock_ptr_, 
                            0));

  return this->set_profile_in_use_i (this->base_profiles_.get_next ());
}

ACE_INLINE
TAO_MProfile * 
STUB_Object::get_fwd_profiles (void)
{
  if (fwd_profiles_)
    return new TAO_MProfile (this->fwd_profiles_);
  return 0;
}

ACE_INLINE
void
STUB_Object::set_fwd_profiles (TAO_MProfile *mprofiles)
{

  if (! profile_in_use_)
    return ;

  // profile_in_use_ will copy the object but delegate
  // to this Stub_Obj responsibility for manipulating list!
  TAO_MProfile *tmp = new TAO_MProfile (mprofiles);

  // now add a pointer back the the profile list hat had been 
  // forwarded.  Note, since the profile list is like
  // a state machine, the current poitner refers to the
  // actual profile that was forwarded!

  {
    ACE_MT (ACE_GUARD (ACE_Lock, 
                       guard, 
                       *this->profile_lock_ptr_));
  
    if (this->fwd_profiles_)
    {
      ACE_ERROR ((LM_ERROR,
                 "(%P|%t) ** Overwriting fwd profiles!!\n"));
      TAO_MProfile *old = this->fwd_profiles_;
      TAO_MProfile *prev = old->fwded_mprofile ();
      if (prev->get_current_profile ())
        prev->get_current_profile ()->fwd_profiles (0);
      // @@ FRED: UGLY but for now just one level!
    }
      
    this->fwd_profiles_ = tmp;
  
    // @@ if (this->fwd_profiles_)
    // @@ // add a link in the chain!
    // @@ tmp->fwded_mprofile (this->fwd_profiles_);

    this->fwd_profiles_->fwded_mprofile (&this->base_profiles_);
    profile_in_use_->fwd_profiles (this->fwd_profiles_);

    set_fwd_profile ( this->fwd_profiles_->get_next ());
  }
 
}

ACE_INLINE
TAO_Profile *
STUB_Object::next_fwd_profile (void)
{
  ACE_MT (ACE_GUARD_RETURN (ACE_Lock, 
                            guard, 
                            *this->profile_lock_ptr_, 
                            0));

  if (fwd_profiles_)
    return this->set_fwd_profile (this->fwd_profiles_->get_next ());

  return this->set_fwd_profile (0);
}