summaryrefslogtreecommitdiff
path: root/src/3rd_party/apache-log4cxx-0.10.0/src/main/cpp/appenderskeleton.cpp
blob: 43ab5a1457868836009f9650f3ccd39b0bbb3fde (plain)
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */

#include <log4cxx/spi/loggingevent.h>
#include <log4cxx/appenderskeleton.h>
#include <log4cxx/helpers/loglog.h>
#include <log4cxx/helpers/onlyonceerrorhandler.h>
#include <log4cxx/level.h>
#include <log4cxx/helpers/stringhelper.h>
#include <log4cxx/helpers/synchronized.h>
#include <apr_atomic.h>


using namespace log4cxx;
using namespace log4cxx::spi;
using namespace log4cxx::helpers;

IMPLEMENT_LOG4CXX_OBJECT(AppenderSkeleton)


AppenderSkeleton::AppenderSkeleton()
:   layout(),
    name(),
    threshold(Level::getAll()),
    errorHandler(new OnlyOnceErrorHandler()),
    headFilter(),
    tailFilter(),
    pool(), 
    mutex(pool)
{
    synchronized sync(mutex);
    closed = false;
}

AppenderSkeleton::AppenderSkeleton(const LayoutPtr& layout1)
: layout(layout1),
  name(),
  threshold(Level::getAll()),
  errorHandler(new OnlyOnceErrorHandler()),
  headFilter(),
  tailFilter(),
  pool(),
  mutex(pool)
{
  synchronized sync(mutex);
  closed = false;
}

void AppenderSkeleton::addRef() const {
    ObjectImpl::addRef();
}

void AppenderSkeleton::releaseRef() const {
    ObjectImpl::releaseRef();
}

void AppenderSkeleton::finalize()
{
// An appender might be closed then garbage collected. There is no
// point in closing twice.
        if(closed)
        {
                return;
        }

        close();
}

void AppenderSkeleton::addFilter(const spi::FilterPtr& newFilter)
{
        synchronized sync(mutex);
        if(headFilter == 0)
        {
                headFilter = tailFilter = newFilter;
        }
        else
        {
                tailFilter->setNext(newFilter);
                tailFilter = newFilter;
        }
}

void AppenderSkeleton::clearFilters()
{
        synchronized sync(mutex);
        headFilter = tailFilter = 0;
}

bool AppenderSkeleton::isAsSevereAsThreshold(const LevelPtr& level) const
{
        return ((level == 0) || level->isGreaterOrEqual(threshold));
}

void AppenderSkeleton::doAppend(const spi::LoggingEventPtr& event, Pool& pool1)
{
        synchronized sync(mutex);


        if(closed)
        {
                LogLog::error(((LogString) LOG4CXX_STR("Attempted to append to closed appender named ["))
                      + name + LOG4CXX_STR("]."));
                return;
        }

        if(!isAsSevereAsThreshold(event->getLevel()))
        {
                return;
        }

        FilterPtr f = headFilter;


        while(f != 0)
        {
                 switch(f->decide(event))
                 {
                         case Filter::DENY:
                                 return;
                         case Filter::ACCEPT:
                                 f = 0;
                                 break;
                         case Filter::NEUTRAL:
                                 f = f->getNext();
                 }
        }

        append(event, pool1);
}

void AppenderSkeleton::setErrorHandler(const spi::ErrorHandlerPtr& errorHandler1)
{
        synchronized sync(mutex);

        if(errorHandler1 == 0)
        {
                // We do not throw exception here since the cause is probably a
                // bad config file.
                LogLog::warn(LOG4CXX_STR("You have tried to set a null error-handler."));
        }
        else
        {
                this->errorHandler = errorHandler1;
        }
}

void AppenderSkeleton::setThreshold(const LevelPtr& threshold1)
{
        synchronized sync(mutex);
        this->threshold = threshold1;
}

void AppenderSkeleton::setOption(const LogString& option,
        const LogString& value)
{
        if (StringHelper::equalsIgnoreCase(option,
              LOG4CXX_STR("THRESHOLD"), LOG4CXX_STR("threshold")))
        {
                setThreshold(Level::toLevelLS(value));
        }
}