| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 | 
							- /*=============================================================================
 
-   Library: CTK
 
-   Copyright (c) German Cancer Research Center,
 
-     Division of Medical and Biological Informatics
 
-   Licensed under the Apache License, Version 2.0 (the "License");
 
-   you may not use this file except in compliance with the License.
 
-   You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
 
-   Unless required by applicable law or agreed to in writing, software
 
-   distributed under the License is distributed on an "AS IS" BASIS,
 
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-   See the License for the specific language governing permissions and
 
-   limitations under the License.
 
- =============================================================================*/
 
- #ifndef CTKLOGSERVICE_H
 
- #define CTKLOGSERVICE_H
 
- #include <QString>
 
- #include <stdexcept>
 
- #include "ctkLogStream.h"
 
- #include <ctkServiceReference.h>
 
- /**
 
-  * \ingroup LogService
 
-  * Provides methods for plugins to write messages to the log.
 
-  *
 
-  * <p>
 
-  * <code>ctkLogService</code> methods are provided to log messages; optionally with a
 
-  * <code>ctkServiceReference</code> object or an exception.
 
-  *
 
-  * <p>
 
-  * Plugins must log messages in the Plugin Framework with a severity level
 
-  * according to the following hierarchy:
 
-  * <ol>
 
-  * <li>#LOG_ERROR
 
-  * <li>#LOG_WARNING
 
-  * <li>#LOG_INFO
 
-  * <li>#LOG_DEBUG
 
-  * </ol>
 
-  *
 
-  * \remarks This class is thread safe.
 
-  */
 
- struct CTK_PLUGINFW_EXPORT ctkLogService
 
- {
 
-   virtual ~ctkLogService() {}
 
-   /**
 
-    * An error message (Value 1).
 
-    *
 
-    * <p>
 
-    * This log entry indicates the plugin or service may not be functional.
 
-    */
 
-   static const int LOG_ERROR; // = 1;
 
-   /**
 
-    * A warning message (Value 2).
 
-    *
 
-    * <p>
 
-    * This log entry indicates a plugin or service is still functioning but may
 
-    * experience problems in the future because of the warning condition.
 
-    */
 
-   static const int LOG_WARNING; // = 2;
 
-   /**
 
-    * An informational message (Value 3).
 
-    *
 
-    * <p>
 
-    * This log entry may be the result of any change in the plugin or service
 
-    * and does not indicate a problem.
 
-    */
 
-   static const int LOG_INFO; // = 3;
 
-   /**
 
-    * A debugging message (Value 4).
 
-    *
 
-    * <p>
 
-    * This log entry is used for problem determination and may be irrelevant to
 
-    * anyone but the plugin developer.
 
-    */
 
-   static const int LOG_DEBUG; // = 4;
 
-   /**
 
-    * Logs a message.
 
-    *
 
-    * <p>
 
-    * The <code>ctkServiceReference</code> field and the <code>Exception</code> field
 
-    * of the <code>ctkLogEntry</code> object will be set to <code>null</code>.
 
-    *
 
-    * \param level The severity of the message. This should be one of the
 
-    *        defined log levels but may be any integer that is interpreted in a
 
-    *        user defined way.
 
-    * \param message Human readable string describing the condition.
 
-    * \param exception The exception that reflects the condition or <code>null</code>.
 
-    * \param file The current file name.
 
-    * \param function The current function name.
 
-    * \param line The current line number.
 
-    *
 
-    * \see #LOG_ERROR
 
-    * \see #LOG_WARNING
 
-    * \see #LOG_INFO
 
-    * \see #LOG_DEBUG
 
-    */
 
-   virtual void log(int level, const QString& message, const std::exception* exception = 0,
 
-                    const char* file = 0, const char* function = 0, int line = -1) = 0;
 
-   /**
 
-    * Logs a message associated with a specific <code>ctkServiceReference</code>
 
-    * object.
 
-    *
 
-    * <p>
 
-    * The <code>Exception</code> field of the <code>ctkLogEntry</code> will be set to
 
-    * <code>null</code>.
 
-    *
 
-    * \param sr The <code>ctkServiceReference</code> object of the service that this
 
-    *        message is associated with.
 
-    * \param level The severity of the message. This should be one of the
 
-    *        defined log levels but may be any integer that is interpreted in a
 
-    *        user defined way.
 
-    * \param message Human readable string describing the condition.
 
-    * \param exception The exception that reflects the condition or
 
-    *        <code>null</code>.
 
-    * \param file The current file name.
 
-    * \param function The current function name.
 
-    * \param line The current line number.
 
-    *
 
-    * \see #LOG_ERROR
 
-    * \see #LOG_WARNING
 
-    * \see #LOG_INFO
 
-    * \see #LOG_DEBUG
 
-    */
 
-   virtual void log(const ctkServiceReference& sr, int level, const QString& message,
 
-                    const std::exception* exception = 0,
 
-                    const char* file = 0, const char* function = 0, int line = -1) = 0;
 
-   /**
 
-    * Get the current log level. The log service discards log entries with a
 
-    * level that is less severe than the current level. E.g. if the current
 
-    * log level is LOG_WARNING then the log service will discard all log entries with
 
-    * level LOG_INFO and LOG_DEBUG.
 
-    *
 
-    * \return The lowest severity level that is accepted into the log.
 
-    */
 
-   virtual int getLogLevel() const = 0;
 
- };
 
- Q_DECLARE_INTERFACE(ctkLogService, "org.commontk.service.log.LogService")
 
- /**
 
-  * \ingroup LogService
 
-  */
 
- class CTK_PLUGINFW_EXPORT ctkLogStreamWithServiceRef : public ctkLogStream
 
- {
 
- public:
 
-   ctkLogStreamWithServiceRef(ctkLogService* logService, const ctkServiceReference& sr,
 
-                              int level, const std::exception* exc = 0,
 
-                              const char* file = 0, const char* function = 0, int line = -1);
 
-   ctkLogStreamWithServiceRef(const ctkLogStreamWithServiceRef& logStreamWithRef);
 
-   ~ctkLogStreamWithServiceRef();
 
- protected:
 
-   ctkServiceReference sr;
 
- };
 
- /**
 
-  * \ingroup LogService
 
-  */
 
- class CTK_PLUGINFW_EXPORT ctkNullLogStream : public ctkLogStream
 
- {
 
- public:
 
-   ctkNullLogStream();
 
-   ~ctkNullLogStream();
 
- };
 
- /**
 
-  * \ingroup LogService
 
-  * @{
 
-  */
 
- #define CTK_DEBUG(logService) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_DEBUG) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_DEBUG, 0, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_DEBUG_EXC(logService, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_DEBUG) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_DEBUG, exc, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_DEBUG_SR(logService, serviceRef) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_DEBUG) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_DEBUG, 0, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- #define CTK_DEBUG_SR_EXC(logService, serviceRef, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_DEBUG) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_DEBUG, exc, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- #define CTK_INFO(logService) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_INFO) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_INFO, 0, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_INFO_EXC(logService, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_INFO) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_INFO, exc, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_INFO_SR(logService, serviceRef) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_INFO) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_INFO, 0, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- #define CTK_INFO_SR_EXC(logService, serviceRef, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_INFO) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_INFO, exc, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- #define CTK_WARN(logService) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_WARNING) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_WARNING, 0, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_WARN_EXC(logService, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_WARNING) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_WARNING, exc, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_WARN_SR(logService, serviceRef) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_WARNING) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_WARNING, 0, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- #define CTK_WARN_SR_EXC(logService, serviceRef, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_WARNING) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_WARNING, exc, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- #define CTK_ERROR(logService) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_ERROR) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_ERROR, 0, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_ERROR_EXC(logService, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_ERROR) ? \
 
-   ctkLogStream(logService, ctkLogService::LOG_ERROR, exc, __FILE__, __FUNCTION__, __LINE__) : \
 
-   ctkNullLogStream())
 
- #define CTK_ERROR_SR(logService, serviceRef) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_ERRO) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_ERROR, 0, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- #define CTK_ERROR_SR_EXC(logService, serviceRef, exc) \
 
-   ((logService && logService->getLogLevel() >= ctkLogService::LOG_ERROR) ? \
 
-   static_cast<ctkLogStream>(ctkLogStreamWithServiceRef(logService, serviceRef, ctkLogService::LOG_ERROR, exc, __FILE__, __FUNCTION__, __LINE__)) : \
 
-   static_cast<ctkLogStream>(ctkNullLogStream()))
 
- /** @}*/
 
- #endif // CTKLOGSERVICE_H
 
 
  |