1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
19 #ifndef INCLUDED_I18NPOOL_INC_XDICTIONARY_HXX
20 #define INCLUDED_I18NPOOL_INC_XDICTIONARY_HXX
22 #include <sal/types.h>
24 #include <com/sun/star/i18n/Boundary.hpp>
28 #define CACHE_MAX 32 // max cache structure number
29 #define DEFAULT_SIZE 256 // for boundary size, to avoid alloc and release memory
32 struct WordBreakCache
{
33 sal_Int32 length
; // contents length saved here.
34 sal_Unicode
*contents
; // separated segment contents.
35 sal_Int32
* wordboundary
; // word boundaries in segments.
36 sal_Int32 size
; // size of wordboundary
39 bool equals(const sal_Unicode
*str
, css::i18n::Boundary
const & boundary
); // checking cached string
42 struct xdictionarydata
44 const sal_uInt8
* existMark
;
45 const sal_Int16
* index1
;
46 const sal_Int32
* index2
;
47 const sal_Int32
* lenArray
;
48 const sal_Unicode
* dataArea
;
63 void initDictionaryData(const sal_Char
*lang
);
65 css::i18n::Boundary boundary
;
66 bool japaneseWordBreak
;
69 xdictionary(const sal_Char
*lang
);
71 css::i18n::Boundary
nextWord( const OUString
& rText
, sal_Int32 nPos
, sal_Int16 wordType
);
72 css::i18n::Boundary
previousWord( const OUString
& rText
, sal_Int32 nPos
, sal_Int16 wordType
);
73 css::i18n::Boundary
const & getWordBoundary( const OUString
& rText
, sal_Int32 nPos
, sal_Int16 wordType
, bool bDirection
);
74 void setJapaneseWordBreak();
77 WordBreakCache cache
[CACHE_MAX
];
78 OUString segmentCachedString
;
79 css::i18n::Boundary segmentCachedBoundary
;
81 bool seekSegment(const OUString
& rText
, sal_Int32 pos
, css::i18n::Boundary
& boundary
);
82 WordBreakCache
& getCache(const sal_Unicode
*text
, css::i18n::Boundary
const & boundary
);
83 bool exists(const sal_uInt32 u
);
84 sal_Int32
getLongestMatch(const sal_Unicode
*text
, sal_Int32 len
);
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */