bump product version to 4.2.0.1
[LibreOffice.git] / include / connectivity / dbcharset.hxx
blob7286bfc513e922db546fc7eb8511d2ebb16cc2f1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_CONNECTIVITY_DBCHARSET_HXX
21 #define INCLUDED_CONNECTIVITY_DBCHARSET_HXX
23 #include <sal/config.h>
25 #include <cstddef>
27 #include <comphelper/stl_types.hxx>
28 #include <rtl/textenc.h>
29 #include <rtl/tencinfo.h>
30 #include <rtl/ustring.hxx>
31 #include <connectivity/dbtoolsdllapi.hxx>
33 //.........................................................................
34 namespace dbtools
36 //.........................................................................
38 //=========================================================================
39 //= OCharsetMap
40 //=========================================================================
41 /** is a class which translates between different charset representations.
43 <p>The set of recognized charsets is very limited: only the ones which are database relevant are
44 implemented at the moment</p>
46 <p>Possible representations are:
47 <ul>
48 <li><b>IANA names.</b>
49 Have a look at <A href="http://www.iana.org/assignments/character-sets">this document</A> for
50 more details</li>
51 <li><b>rtl_TextEncoding</b></li>
52 </ul>
53 </p>
55 class OOO_DLLPUBLIC_DBTOOLS OCharsetMap
57 protected:
58 DECLARE_STL_STDKEY_SET( rtl_TextEncoding, TextEncBag );
60 TextEncBag m_aEncodings;
62 public:
63 class CharsetIterator;
64 friend class OCharsetMap::CharsetIterator;
65 typedef CharsetIterator iterator;
66 typedef CharsetIterator const_iterator;
68 OCharsetMap();
69 virtual ~OCharsetMap();
71 struct IANA { };
73 /** find the given text encoding in the map.
74 @return the <em>end</em> iterator if the encoding could not be found.
76 CharsetIterator find(const rtl_TextEncoding _eEncoding) const;
77 /** find the given IANA name in the map.
78 @return the <em>end</em> iterator if the IANA name could not be found.
80 CharsetIterator find(const OUString& _rIanaName, const IANA&) const;
82 std::size_t size() const { ensureConstructed( ); return m_aEncodings.size(); }
84 /// get access to the first element of the charset collection
85 CharsetIterator begin() const;
86 /// get access to the (last + 1st) element of the charset collection
87 CharsetIterator end() const;
89 protected:
90 // needed because we want to call a virtual method during construction
91 void lateConstruct();
92 inline void ensureConstructed( ) const { if ( m_aEncodings.empty() ) const_cast< OCharsetMap* >( this )->lateConstruct(); }
94 virtual sal_Bool approveEncoding( const rtl_TextEncoding _eEncoding, const rtl_TextEncodingInfo& _rInfo ) const;
97 //-------------------------------------------------------------------------
98 //- CharsetIteratorDerefHelper
99 //-------------------------------------------------------------------------
100 class OOO_DLLPUBLIC_DBTOOLS CharsetIteratorDerefHelper
102 friend class OCharsetMap::CharsetIterator;
104 rtl_TextEncoding m_eEncoding;
105 OUString m_aIanaName;
107 public:
108 CharsetIteratorDerefHelper(const CharsetIteratorDerefHelper& _rSource);
110 rtl_TextEncoding getEncoding() const { return m_eEncoding; }
111 OUString getIanaName() const { return m_aIanaName; }
113 protected:
114 CharsetIteratorDerefHelper( const rtl_TextEncoding _eEncoding, const OUString& _rIanaName );
119 //-------------------------------------------------------------------------
120 //- OCharsetMap::CharsetIterator
121 //-------------------------------------------------------------------------
122 class OOO_DLLPUBLIC_DBTOOLS OCharsetMap::CharsetIterator
124 friend class OCharsetMap;
126 friend OOO_DLLPUBLIC_DBTOOLS bool operator==(const CharsetIterator& lhs, const CharsetIterator& rhs);
127 friend bool operator!=(const CharsetIterator& lhs, const CharsetIterator& rhs) { return !(lhs == rhs); }
129 // friend sal_Int32 operator-(const CharsetIterator& lhs, const CharsetIterator& rhs);
131 protected:
132 const OCharsetMap* m_pContainer;
133 OCharsetMap::TextEncBag::const_iterator m_aPos;
135 public:
136 CharsetIterator(const CharsetIterator& _rSource);
137 ~CharsetIterator();
139 CharsetIteratorDerefHelper operator*() const;
140 // no -> operator
141 // this would require us to a) store CharsetIteratorDerefHelper instances ourself so that we
142 // can return a pointer or b) introduce a -> operator on the CharsetIteratorDerefHelper, too.
144 /// prefix increment
145 const CharsetIterator& operator++();
146 /// postfix increment
147 const CharsetIterator operator++(int) { CharsetIterator hold(*this); ++*this; return hold; }
149 /// prefix decrement
150 const CharsetIterator& operator--();
151 /// postfix decrement
152 const CharsetIterator operator--(int) { CharsetIterator hold(*this); --*this; return hold; }
154 protected:
155 CharsetIterator(const OCharsetMap* _pContainer, OCharsetMap::TextEncBag::const_iterator _aPos );
158 //.........................................................................
159 } // namespace dbtools
160 //.........................................................................
162 #endif // INCLUDED_CONNECTIVITY_DBCHARSET_HXX
164 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */