Apache log4cxx  Version 0.11.0
appenderattachableimpl.h
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef _LOG4CXX_HELPERS_APPENDER_ATTACHABLE_IMPL_H
19 #define _LOG4CXX_HELPERS_APPENDER_ATTACHABLE_IMPL_H
20 
21 #if defined(_MSC_VER)
22  #pragma warning ( push )
23  #pragma warning ( disable: 4231 4251 4275 4786 )
24 #endif
25 
26 
27 #include <log4cxx/spi/appenderattachable.h>
28 #include <log4cxx/helpers/objectimpl.h>
29 #include <log4cxx/helpers/mutex.h>
30 #include <log4cxx/helpers/pool.h>
31 
32 namespace log4cxx
33 {
34 namespace spi
35 {
36 class LoggingEvent;
37 typedef helpers::ObjectPtrT<LoggingEvent> LoggingEventPtr;
38 }
39 
40 namespace helpers
41 {
42 
43 class LOG4CXX_EXPORT AppenderAttachableImpl :
44  public virtual spi::AppenderAttachable,
45  public virtual helpers::ObjectImpl
46 {
47  protected:
49  AppenderList appenderList;
50 
51  public:
57 
58  DECLARE_ABSTRACT_LOG4CXX_OBJECT(AppenderAttachableImpl)
59  BEGIN_LOG4CXX_CAST_MAP()
60  LOG4CXX_CAST_ENTRY(AppenderAttachableImpl)
61  LOG4CXX_CAST_ENTRY(spi::AppenderAttachable)
62  END_LOG4CXX_CAST_MAP()
63 
64  void addRef() const;
65  void releaseRef() const;
66 
67  // Methods
71  virtual void addAppender(const AppenderPtr& newAppender);
72 
76  int appendLoopOnAppenders(const spi::LoggingEventPtr& event,
77  log4cxx::helpers::Pool& p);
78 
82  virtual AppenderList getAllAppenders() const;
83 
87  virtual AppenderPtr getAppender(const LogString& name) const;
88 
93  virtual bool isAttached(const AppenderPtr& appender) const;
94 
98  virtual void removeAllAppenders();
99 
103  virtual void removeAppender(const AppenderPtr& appender);
104 
109  virtual void removeAppender(const LogString& name);
110 
111  inline const log4cxx::helpers::Mutex& getMutex() const
112  {
113  return mutex;
114  }
115 
116  private:
120 };
121 
122 LOG4CXX_PTR_DEF(AppenderAttachableImpl);
123 
124 }
125 }
126 
127 #if defined(_MSC_VER)
128  #pragma warning ( pop )
129 #endif
130 
131 #endif //_LOG4CXX_HELPERS_APPENDER_ATTACHABLE_IMPL_H
Definition: appenderattachableimpl.h:43
This Interface is for attaching Appenders to objects.
Definition: appenderattachable.h:39
AppenderList appenderList
Array of appenders.
Definition: appenderattachableimpl.h:49
Implementation class for Object.
Definition: objectimpl.h:28
Definition: mutex.h:41
Definition: pool.h:32
Definition: appender.h:33