summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/Policy_Manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/Policy_Manager.h')
-rw-r--r--ACE/TAO/tao/Policy_Manager.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/ACE/TAO/tao/Policy_Manager.h b/ACE/TAO/tao/Policy_Manager.h
new file mode 100644
index 00000000000..3b2054c3d12
--- /dev/null
+++ b/ACE/TAO/tao/Policy_Manager.h
@@ -0,0 +1,81 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Policy_Manager.h
+ *
+ * $Id$
+ *
+ * An implementation for the CORBA::PolicyManager interface.
+ *
+ * @author Carlos O'Ryan (coryan@cs.wustl.edu)
+ */
+//=============================================================================
+
+
+#ifndef TAO_POLICY_MANAGER_H
+#define TAO_POLICY_MANAGER_H
+
+#include /**/ "ace/pre.h"
+#include "ace/Guard_T.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/orbconf.h"
+
+#if (TAO_HAS_CORBA_MESSAGING == 1)
+
+#include "tao/Policy_ManagerC.h"
+#include "tao/LocalObject.h"
+#include "tao/Policy_Set.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_Policy_Manager
+ : public CORBA::PolicyManager
+ , public ::CORBA::LocalObject
+{
+public:
+ /// constructor
+ TAO_Policy_Manager (void);
+
+ /// Obtain a single policy.
+ CORBA::Policy_ptr get_policy (CORBA::PolicyType policy);
+
+ /// Obtain a single cached policy.
+ CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type);
+
+ // = The CORBA::PolicyManager operations
+
+ virtual CORBA::PolicyList * get_policy_overrides (
+ const CORBA::PolicyTypeSeq & ts);
+
+ virtual void set_policy_overrides (const CORBA::PolicyList & policies,
+ CORBA::SetOverrideType set_add);
+
+private:
+ // Disallow copying.
+ TAO_Policy_Manager (TAO_Policy_Manager const &);
+ TAO_Policy_Manager & operator= (TAO_Policy_Manager const &);
+
+private:
+ /// Protect access
+ TAO_SYNCH_MUTEX mutex_;
+
+ /// The implementation.
+ TAO_Policy_Set impl_;
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#if defined (__ACE_INLINE__)
+# include "tao/Policy_Manager.inl"
+#endif /* __ACE_INLINE__ */
+
+#endif /* TAO_HAS_CORBA_MESSAGING == 1 */
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_POLICY_MANAGER_H */