/usr/include/tao/Principal.h is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // -*- C++ -*-
//=============================================================================
/**
* @file Principal.h
*
* $Id: Principal.h 91262 2010-08-03 14:02:36Z parsons $
*
* The CORBA::Principal pseudo-object implementation.
*
* @author Copyright 1994-1995 by Sun Microsystems Inc.
* @author DOC group at Wash U and UCI.
*/
//=============================================================================
#ifndef TAO_PRINCIPAL_H
#define TAO_PRINCIPAL_H
#include /**/ "ace/pre.h"
#include "tao/CORBA_methods.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/OctetSeqC.h"
#include "tao/Pseudo_VarOut_T.h"
#include "ace/Thread_Mutex.h"
#include "ace/Atomic_Op.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace CORBA
{
class Principal;
typedef Principal *Principal_ptr;
typedef TAO_Pseudo_Var_T<Principal> Principal_var;
typedef TAO_Pseudo_Out_T<Principal> Principal_out;
/**
* @class Principal
*
* @brief A "Principal" identifies an authenticated entity in the
* network administration framework.
*
* Identities are used to control acccess (authorization) as well as
* in audit trails (accountability).
*
* @note This CORBA feature has been deprecated by the OMG. Use the
* CORBA Security Service instead.
*/
class TAO_Export Principal
{
public:
// To applications, the identifier is an opaque ID.
// CORBA::SEQUENCE <CORBA::Octet> id;
CORBA::OctetSeq id;
// @@ add "==", "<", ">" operators
// The pseudo object operations.
static Principal * _duplicate (Principal *);
static Principal * _nil (void);
// = Stuff required for memory management.
unsigned long _incr_refcount (void);
unsigned long _decr_refcount (void);
Principal (void);
// Useful for template programming.
typedef Principal_ptr _ptr_type;
typedef Principal_var _var_type;
protected:
/// Destructor
/**
* Protected destructor to enforce proper memory management
* through the reference counting mechanism.
*/
~Principal (void);
private:
// = Prevent copying
Principal &operator = (const CORBA::Principal_ptr &);
Principal (const CORBA::Principal_ptr &);
private:
/// Reference counter.
ACE_Atomic_Op<TAO_SYNCH_MUTEX, unsigned long> refcount_;
};
} // End CORBA namespace
TAO_Export CORBA::Boolean
operator<< (TAO_OutputCDR &, CORBA::Principal *);
TAO_Export CORBA::Boolean
operator>> (TAO_InputCDR &, CORBA::Principal *&);
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
# include "tao/Principal.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_PRINCIPAL_H */
|