18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
2a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * Copyright (C) 2010 Company 100, Inc. All rights reserved.
38e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without
58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met:
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 1. Redistributions of source code must retain the above copyright
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer.
98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 2. Redistributions in binary form must reproduce the above copyright
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer in the
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    documentation and/or other materials provided with the distribution.
128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
26a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#ifndef TextCodecBrew_h
27a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#define TextCodecBrew_h
288e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
29a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#include "TextCodec.h"
30a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#include "TextEncoding.h"
31a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
32a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochtypedef struct ICharsetConv ICharsetConv;
33231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
34231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Blocknamespace WebCore {
35231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
36a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochclass TextCodecBrew : public TextCodec {
37a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochpublic:
38a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    static void registerExtendedEncodingNames(EncodingNameRegistrar);
39a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    static void registerExtendedCodecs(TextCodecRegistrar);
40a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
41a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    TextCodecBrew(const TextEncoding&);
42a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    virtual ~TextCodecBrew();
43a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
44a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
45a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    virtual CString encode(const UChar*, size_t length, UnencodableHandling);
46a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
47a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochprivate:
48a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    TextEncoding m_encoding;
49a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    size_t m_numBufferedBytes;
50a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    unsigned char m_bufferedBytes[16]; // bigger than any single multi-byte character
51a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    ICharsetConv* m_charsetConverter;
52a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
53a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    static const char* m_internalEncodingName;
54a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch};
55a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
56a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch} // namespace WebCore
578e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
58a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#endif // TextCodecBrew_h
59