1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 *******************************************************************************
6 * Copyright (C) 2004-2014, International Business Machines
7 * Corporation and others. All Rights Reserved.
9 *******************************************************************************
10 * file name: ubidi_props.h
12 * tab size: 8 (not used)
15 * created on: 2004dec30
16 * created by: Markus W. Scherer
18 * Low-level Unicode bidi/shaping properties access.
21 #ifndef __UBIDI_PROPS_H__
22 #define __UBIDI_PROPS_H__
24 #include "unicode/utypes.h"
25 #include "unicode/uset.h"
32 /* library API -------------------------------------------------------------- */
35 ubidi_addPropertyStarts(const USetAdder
*sa
, UErrorCode
*pErrorCode
);
37 /* property access functions */
40 ubidi_getMaxValue(UProperty which
);
43 ubidi_getClass(UChar32 c
);
46 ubidi_isMirrored(UChar32 c
);
49 ubidi_getMirror(UChar32 c
);
52 ubidi_isBidiControl(UChar32 c
);
55 ubidi_isJoinControl(UChar32 c
);
58 ubidi_getJoiningType(UChar32 c
);
61 ubidi_getJoiningGroup(UChar32 c
);
63 U_CFUNC UBidiPairedBracketType
64 ubidi_getPairedBracketType(UChar32 c
);
67 ubidi_getPairedBracket(UChar32 c
);
69 /* file definitions --------------------------------------------------------- */
71 #define UBIDI_DATA_NAME "ubidi"
72 #define UBIDI_DATA_TYPE "icu"
75 #define UBIDI_FMT_0 0x42
76 #define UBIDI_FMT_1 0x69
77 #define UBIDI_FMT_2 0x44
78 #define UBIDI_FMT_3 0x69
80 /* indexes into indexes[] */
85 UBIDI_IX_MIRROR_LENGTH
,
89 UBIDI_IX_JG_START2
, /* new in format version 2.2, ICU 54 */
92 UBIDI_MAX_VALUES_INDEX
=15,
96 /* definitions for 16-bit bidi/shaping properties word ---------------------- */
99 /* UBIDI_CLASS_SHIFT=0, */ /* bidi class: 5 bits (4..0) */
100 UBIDI_JT_SHIFT
=5, /* joining type: 3 bits (7..5) */
102 UBIDI_BPT_SHIFT
=8, /* Bidi_Paired_Bracket_Type(bpt): 2 bits (9..8) */
104 UBIDI_JOIN_CONTROL_SHIFT
=10,
105 UBIDI_BIDI_CONTROL_SHIFT
=11,
107 UBIDI_IS_MIRRORED_SHIFT
=12, /* 'is mirrored' */
108 UBIDI_MIRROR_DELTA_SHIFT
=13, /* bidi mirroring delta: 3 bits (15..13) */
110 UBIDI_MAX_JG_SHIFT
=16 /* max JG value in indexes[UBIDI_MAX_VALUES_INDEX] bits 23..16 */
113 #define UBIDI_CLASS_MASK 0x0000001f
114 #define UBIDI_JT_MASK 0x000000e0
115 #define UBIDI_BPT_MASK 0x00000300
117 #define UBIDI_MAX_JG_MASK 0x00ff0000
119 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
120 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
122 #if U_SIGNED_RIGHT_SHIFT_IS_ARITHMETIC
123 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
125 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIFT))
129 UBIDI_ESC_MIRROR_DELTA
=-4,
130 UBIDI_MIN_MIRROR_DELTA
=-3,
131 UBIDI_MAX_MIRROR_DELTA
=3
134 /* definitions for 32-bit mirror table entry -------------------------------- */
137 /* the source Unicode code point takes 21 bits (20..0) */
138 UBIDI_MIRROR_INDEX_SHIFT
=21,
139 UBIDI_MAX_MIRROR_INDEX
=0x7ff
142 #define UBIDI_GET_MIRROR_CODE_POINT(m) (UChar32)((m)&0x1fffff)
144 #define UBIDI_GET_MIRROR_INDEX(m) ((m)>>UBIDI_MIRROR_INDEX_SHIFT)