Apache Log4cxx  Version 1.7.0
Loading...
Searching...
No Matches
stringhelper.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#ifndef _LOG4CXX_HELPERS_STRING_HELPER_H
19#define _LOG4CXX_HELPERS_STRING_HELPER_H
20
21#include <log4cxx/logstring.h>
22#include <vector>
23
24
25namespace LOG4CXX_NS
26{
27namespace helpers
28{
29#if LOG4CXX_ABI_VERSION <= 15
30class Pool;
31#endif
35class LOG4CXX_EXPORT StringHelper
36{
37 public:
38 static LogString trim(const LogString& s);
39 static bool startsWith(const LogString& s, const LogString& suffix);
40 static bool endsWith(const LogString& s, const LogString& suffix);
41 static bool equalsIgnoreCase(const LogString& s1,
42 const logchar* upper, const logchar* lower);
43 static bool equalsIgnoreCase(const LogString& s1,
44 const LogString& upper, const LogString& lower);
45
46
47 static int toInt(const LogString& s);
48 static int64_t toInt64(const LogString& s);
49
50#if LOG4CXX_ABI_VERSION <= 15
52 [[ deprecated( "Pool is no longer required" ) ]]
53 static void toString(int i, Pool& pool, LogString& dst);
55 [[ deprecated( "Pool is no longer required" ) ]]
56 static void toString(int64_t i, Pool& pool, LogString& dst);
58 [[ deprecated( "Pool is no longer required" ) ]]
59 static void toString(size_t i, Pool& pool, LogString& dst);
60#endif
61 static void toString(int i, LogString& dst);
62 static void toString(int64_t i, LogString& dst);
63 static void toString(size_t i, LogString& dst);
64 static void toString(bool val, LogString& dst);
65
67
68 static LogString format(const LogString& pattern, const std::vector<LogString>& params);
69};
70}
71}
72
73#endif //_LOG4CXX_HELPERS_STRING_HELPER_H
Definition pool.h:33
String manipulation routines.
Definition stringhelper.h:36
static bool equalsIgnoreCase(const LogString &s1, const LogString &upper, const LogString &lower)
static int64_t toInt64(const LogString &s)
static int toInt(const LogString &s)
static void toString(int i, LogString &dst)
static void toString(size_t i, Pool &pool, LogString &dst)
static bool equalsIgnoreCase(const LogString &s1, const logchar *upper, const logchar *lower)
static LogString toLowerCase(const LogString &s)
static bool startsWith(const LogString &s, const LogString &suffix)
static void toString(int64_t i, Pool &pool, LogString &dst)
static bool endsWith(const LogString &s, const LogString &suffix)
static void toString(size_t i, LogString &dst)
static LogString trim(const LogString &s)
static void toString(bool val, LogString &dst)
static void toString(int64_t i, LogString &dst)
static void toString(int i, Pool &pool, LogString &dst)
static LogString format(const LogString &pattern, const std::vector< LogString > &params)
Definition cacheddateformat.h:26
std::basic_string< logchar > LogString
Definition logstring.h:60