sync with tizen_2.0
[platform/framework/native/appfw.git] / src / text / FTextUtf8Decoder.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // 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 /**
19  * @file                FTextUtf8Decoder.cpp
20  * @brief               This is the implementation file for UTF-8 Decoder class.
21  */
22
23 // Includes
24 #include <FTextUtf8Decoder.h>
25 #include <FBaseSysLog.h>
26 #include "FText_DecoderImpl.h"
27
28
29 using namespace Tizen::Base;
30
31 namespace Tizen { namespace Text
32 {
33
34 Utf8Decoder::Utf8Decoder(void)
35         : __pUtf8DecoderImpl(null)
36 {
37         _pDecoderImpl = _DecoderImpl::GetDecoderN(L"UTF-8");
38
39         SysAssert(_pDecoderImpl);
40 }
41
42
43 Utf8Decoder::~Utf8Decoder(void)
44 {
45         delete _pDecoderImpl;
46 }
47
48
49 result
50 Utf8Decoder::GetCharCount(const ByteBuffer& bytes, int byteIndex, int byteCount, int& charCount, bool flush) const
51 {
52         return _pDecoderImpl->GetCharCount(bytes, byteIndex, byteCount, charCount, flush);
53 }
54
55
56 WcharBuffer*
57 Utf8Decoder::GetCharsN(const ByteBuffer& bytes, bool flush) const
58 {
59         return _pDecoderImpl->GetCharsN(bytes, flush);
60 }
61
62
63 WcharBuffer*
64 Utf8Decoder::GetCharsN(const ByteBuffer& bytes, int byteIndex, int byteCount, bool flush) const
65 {
66         return _pDecoderImpl->GetCharsN(bytes, byteIndex, byteCount, flush);
67 }
68
69
70 } } // Tizen::Text