summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/LogStore.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/LogStore.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/LogStore.h108
1 files changed, 0 insertions, 108 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/LogStore.h b/TAO/orbsvcs/orbsvcs/Log/LogStore.h
deleted file mode 100644
index 78773abffb9..00000000000
--- a/TAO/orbsvcs/orbsvcs/Log/LogStore.h
+++ /dev/null
@@ -1,108 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file LogStore.h
- *
- * $Id$
- *
- * @author Matthew Braun <mjb2@cs.wustl.edu>
- * @author Pradeep Gore <pradeep@cs.wustl.edu>
- * @author David A. Hanvey <d.hanvey@qub.ac.uk>
- */
-//=============================================================================
-
-#ifndef TAO_TLS_LOGSTORE_H
-#define TAO_TLS_LOGSTORE_H
-
-#include /**/ "ace/pre.h"
-#include /**/ "ace/config-all.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "orbsvcs/DsLogAdminC.h"
-#include "orbsvcs/Log/log_serv_export.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_LogRecordStore;
-
-class TAO_Log_Serv_Export TAO_LogStore
-{
-public:
- // Destructor
- virtual ~TAO_LogStore() {}
-
- /// Lists all logs created by the log factory.
- virtual DsLogAdmin::LogList *
- list_logs (ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((
- CORBA::SystemException
- )) = 0;
-
- /// Lists all log ids.
- virtual DsLogAdmin::LogIdList *
- list_logs_by_id (ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((
- CORBA::SystemException
- )) = 0;
-
- /// Returns a reference to the log with the supplied id.
- virtual DsLogAdmin::Log_ptr
- find_log (DsLogAdmin::LogId id
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((
- CORBA::SystemException
- )) = 0;
-
- /// Returns true if log exists, otherwise false
- virtual bool
- exists (DsLogAdmin::LogId id
- ACE_ENV_ARG_DECL) = 0;
-
- /// Remove the given entry from the hash table.
- virtual int
- remove (DsLogAdmin::LogId id
- ACE_ENV_ARG_DECL) = 0;
-
- /// @brief Create log
- virtual void
- create (DsLogAdmin::LogFullActionType full_action,
- CORBA::ULongLong max_size,
- const DsLogAdmin::CapacityAlarmThresholdList* thresholds,
- DsLogAdmin::LogId_out id_out
- ACE_ENV_ARG_DECL) = 0;
-
- /// @brief Create log
- virtual void
- create_with_id (DsLogAdmin::LogId id,
- DsLogAdmin::LogFullActionType full_action,
- CORBA::ULongLong max_size,
- const DsLogAdmin::CapacityAlarmThresholdList* thresholds
- ACE_ENV_ARG_DECL) = 0;
-
- /// @brief Get log record store
- ///
- /// Get/Create a log record store for log channel @a id.
- ///
- /// @param id log id
- ///
- virtual TAO_LogRecordStore*
- get_log_record_store (DsLogAdmin::LogId id
- ACE_ENV_ARG_DECL) = 0;
-
-protected:
- // Constructor
- TAO_LogStore() {}
-
-
-private:
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_TLS_LOGSTORE_H */