summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp
blob: 81cc6d7da60b0025b0e51a89f1ad42a17a6dc9e6 (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
// $Id$

#include "Log_Constraint_Visitors.h"

TAO_Log_Constraint_Evaluator::
TAO_Log_Constraint_Evaluator (DsLogAdmin::LogRecord &rec)
  :rec_ (rec)
{
  // why do this?
  this->props_.close ();
  this->props_.open ();

  TAO_String_Hash_Key name = (const char*) "id";
  this->props_.bind (name, 0);

  name = (const char*) "time";
  this->props_.bind (name, 1);

}

int
TAO_Log_Constraint_Evaluator::
visit_property (TAO_Property_Constraint* literal)
{
  int return_value = -1, prop_index = 0;
  // Handle case where property is not, in fact, mapped to a value
  TAO_String_Hash_Key prop_name ((const char*) literal->name ());

  if (this->props_.find (prop_name, prop_index) == 0)
    {
      ACE_DECLARE_NEW_CORBA_ENV;

      CORBA::Any *value = 0;
      // Retrieve the value of the property from the Property_Evaluator
      ACE_TRY
        {
          // value = this->prop_eval_.property_value (prop_index, ACE_TRY_ENV);
          ACE_NEW_THROW_EX (value,
                            CORBA::Any,
                            CORBA::NO_MEMORY ());
          ACE_TRY_CHECK;

          if (prop_index == 0)
            *value <<= (CORBA::ULong)this->rec_.id;
          else
            *value <<= (CORBA::ULong)this->rec_.time;
        }
      ACE_CATCHANY
        {
          return -1;
        }
      ACE_ENDTRY;
      //      ACE_CHECK_RETURN (-1);

      if (value != 0)
        {
          this->queue_.enqueue_head (TAO_Literal_Constraint (value));
          return_value = 0;
        }
    }

  return return_value;
}