Apache Log4cxx  Version 1.8.0
action.h
Go to the documentation of this file.
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 #if !defined(_LOG4CXX_ROLLING_ACTION_H)
19 #define _LOG4CXX_ROLLING_ACTION_H
20 
21 #include <log4cxx/helpers/object.h>
22 #include <log4cxx/helpers/pool.h>
23 
24 namespace LOG4CXX_NS
25 {
26 namespace rolling
27 {
28 
29 
33 class Action : public virtual LOG4CXX_NS::helpers::Object
34 {
39 
40  LOG4CXX_DECLARE_PRIVATE_MEMBER_PTR(ActionPrivate, m_priv)
41 
42  protected:
46  Action();
47  Action(LOG4CXX_PRIVATE_PTR(ActionPrivate) priv);
48  virtual ~Action();
49 
50  public:
56 #if LOG4CXX_ABI_VERSION <= 15
57  bool execute() const;
62  virtual bool execute(helpers::Pool& pool) const = 0;
63 #define LOG4CXX_EXECUTE_ACTION_FORMAL_PARAMETERS helpers::Pool& p
64 #else
65  virtual bool execute() const = 0;
66 #define LOG4CXX_EXECUTE_ACTION_FORMAL_PARAMETERS
70  [[deprecated("Use execute() without a Pool parameter instead")]]
71  bool execute(helpers::Pool& pool) const;
72 #endif
73 
74  /* Call execute() if not already closed.
75  */
76  void run();
77 
78  /* Wait until run() completes.
79  */
80  void close();
81 
85  bool isComplete() const;
86 
87  /* The action description
88  */
89  LogString getName() const;
90 
91 #if LOG4CXX_ABI_VERSION <= 15
92  void reportException(const std::exception&);
93 
94  void run(helpers::Pool& pool);
95 #endif
96 
97 };
98 
100 
101 }
102 }
103 #endif
104 
Definition: pool.h:33
A file system action performed as part of a rollover event.
Definition: action.h:34
bool execute() const
Perform the action.
virtual bool execute(helpers::Pool &pool) const =0
void reportException(const std::exception &)
bool isComplete() const
Is action is complete?
Action(LOG4CXX_PRIVATE_PTR(ActionPrivate) priv)
void run(helpers::Pool &pool)
LogString getName() const
LOG4CXX_PTR_DEF(Action)
std::basic_string< logchar > LogString
Definition: logstring.h:60
#define LOG4CXX_CAST_ENTRY(Interface)
Definition: object.h:154
#define DECLARE_ABSTRACT_LOG4CXX_OBJECT(object)
Definition: object.h:37
#define END_LOG4CXX_CAST_MAP()
Definition: object.h:148
#define BEGIN_LOG4CXX_CAST_MAP()
Definition: object.h:142