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_PROPERTY_RESOURCE_BUNDLE_H
|
---|
19 | #define _LOG4CXX_HELPERS_PROPERTY_RESOURCE_BUNDLE_H
|
---|
20 |
|
---|
21 | #include <log4cxx/helpers/resourcebundle.h>
|
---|
22 | #include <log4cxx/helpers/properties.h>
|
---|
23 | #include <log4cxx/helpers/inputstream.h>
|
---|
24 |
|
---|
25 | namespace log4cxx
|
---|
26 | {
|
---|
27 | namespace helpers
|
---|
28 | {
|
---|
29 |
|
---|
30 | /**
|
---|
31 | PropertyResourceBundle is a concrete subclass of ResourceBundle that
|
---|
32 | manages resources for a locale using a set of static strings from a
|
---|
33 | property file.
|
---|
34 | */
|
---|
35 | class LOG4CXX_EXPORT PropertyResourceBundle : public ResourceBundle
|
---|
36 | {
|
---|
37 | public:
|
---|
38 | DECLARE_ABSTRACT_LOG4CXX_OBJECT(PropertyResourceBundle)
|
---|
39 | BEGIN_LOG4CXX_CAST_MAP()
|
---|
40 | LOG4CXX_CAST_ENTRY(PropertyResourceBundle)
|
---|
41 | LOG4CXX_CAST_ENTRY_CHAIN(ResourceBundle)
|
---|
42 | END_LOG4CXX_CAST_MAP()
|
---|
43 |
|
---|
44 | /**
|
---|
45 | Creates a property resource bundle.
|
---|
46 | @param inStream property file to read from.
|
---|
47 | @throw IOException if an error occurred when reading from the
|
---|
48 | input stream.
|
---|
49 | */
|
---|
50 | PropertyResourceBundle(InputStreamPtr inStream);
|
---|
51 |
|
---|
52 | virtual LogString getString(const LogString& key) const;
|
---|
53 |
|
---|
54 | protected:
|
---|
55 | Properties properties;
|
---|
56 | }; // class PropertyResourceBundle
|
---|
57 | LOG4CXX_PTR_DEF(PropertyResourceBundle);
|
---|
58 | } // namespace helpers
|
---|
59 | } // namespace log4cxx
|
---|
60 |
|
---|
61 | #endif // _LOG4CXX_HELPERS_PROPERTY_RESOURCE_BUNDLE_H
|
---|
62 |
|
---|