Bug 3357 - TAO doesn't support INVOCATION_POLICIES
Summary: TAO doesn't support INVOCATION_POLICIES
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.6.5
Hardware: All Windows XP
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks: 3619
  Show dependency tree
 
Reported: 2008-06-26 01:06 CDT by Johnny Willemsen
Modified: 2009-03-19 03:20 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2008-06-26 01:06:07 CDT
TAO doesn't support INVOCATION_POLICIES as service context, this should be used when client side policies do change and these are then transferred to the client using the service context INVOCATION_POLICIES
Comment 1 Johnny Willemsen 2009-03-18 10:32:30 CDT
the INVOCATION_POLICIES must be used by ZIOP, the policies set at the client have to be transferred to the server. Also the policies set at the server have to be transferred to the client. At this moment only the TAG_POLICIES is added to the IOR, but nothing is transferred anymore to runtime.
Comment 2 Johnny Willemsen 2009-03-19 03:20:18 CDT
code to extract the policies from the invocation_policies

  const CORBA::Octet *buf =
    sc.context_data.get_buffer ();

  TAO_InputCDR in_cdr (reinterpret_cast <const char *> (buf),
                       sc.context_data.length ());

  // Extract the Byte Order
  CORBA::Boolean byte_order;

  if (!(in_cdr >> ACE_InputCDR::to_boolean (byte_order)))
    {
      return 0;
    }

  in_cdr.reset_byte_order (static_cast <int> (byte_order));

  // Now we take out the Messaging::PolicyValueSeq out from the
  // CDR.
  Messaging::PolicyValueSeq policy_value_seq;

  if (!(in_cdr >> policy_value_seq))
    {
      throw ::CORBA::INV_OBJREF ();
    }

  // Here we extract the Messaging::PolicyValue out of the sequence
  // and we convert those into the proper CORBA::Policy
  CORBA::ULong const length = policy_value_seq.length ();

  for (CORBA::ULong i = 0; i < length; ++i)
    {
      try
        {
          CORBA::Policy_var policy =
            transport.orb_core ()->orb ()->_create_policy (
              policy_value_seq[i].ptype);

          if (!CORBA::is_nil (policy.in ()))
            {
              buf = policy_value_seq[i].pvalue.get_buffer ();

              TAO_InputCDR in_cdr (
                reinterpret_cast <const char*>  (buf),
                policy_value_seq[i].pvalue.length ());

              if (!(in_cdr >> ACE_InputCDR::to_boolean (byte_order)))
                throw ::CORBA::INV_OBJREF ();

              in_cdr.reset_byte_order (static_cast <int> (byte_order));

              if (!policy->_tao_decode (in_cdr))
                throw ::CORBA::INV_OBJREF ();

              // Increase the policy length with 1 when we know we support
              // this policy, this way we don't get nil values in the list
              //pl.length (pl.length () + 1);

              //pl[i] = policy._retn ();
              // leak
            }
          else
            {
              // This case should occure when in the sc are
              // embedded policies that TAO doesn't support,
              // so as specified by the RT-CORBA
              // spec. ptc/99-05-03 we just ignore these
              // un-understood policies.
              if (TAO_debug_level >= 5)
                ACE_DEBUG ((LM_DEBUG,
                  ACE_TEXT ("The service context contains unsupported ")
                  ACE_TEXT ("policies.\n")));
             }
         }
      catch (const ::CORBA::Exception& ex)
        {
          // This case should occur when in the IOR are
          // embedded policies that TAO doesn't support, so as
          // specified by the RT-CORBA spec. ptc/99-05-03 we
          // just ignore these un-understood policies.
          if (TAO_debug_level >= 5)
            ex._tao_print_exception (
              ACE_TEXT ("SC contains ")
              ACE_TEXT ("unsupported policies."));
        }
    }