This repository has been archived by the owner on Jan 4, 2021. It is now read-only.
forked from ankush-me/SynthText
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfribidi.py
1000 lines (668 loc) · 26.7 KB
/
fribidi.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
an implementation of Unicode Bidirectional Algorithm, using GNU FriBidi
This is a python wrap of GNU FriBidi C library.
http://fribidi.org/
GNU FriBidi is an implementation of Unicode Bidirectional Algorithm (bidi).
http://unicode.org/reports/tr9/
This file is originally written by behnam at https://github.com/behnam/python-fribidi.
I just slightly modified it to support python3
"""
import ctypes
# Load FriBidi
_libfribidi = ctypes.CDLL("libfribidi.so")
try:
_libfribidi.fribidi_shape()
except AttributeError:
libfribidi_version = '0.10'
libfribidi_version_major = 0
libfribidi_version_minor = 10
else:
libfribidi_version = '0.19'
libfribidi_version_major = 0
libfribidi_version_minor = 19
# Versions
VERSION = '0.10'
"Version of the python wrapper."
# Memory allocation functions
def _malloc_int_array(n):
"""
Return a pointer to allocated C int array of length `n'.
"""
t = ctypes.c_int * n
return t()
def _malloc_int8_array(n):
"""
Return a pointer to allocated C int array of length `n'.
"""
t = ctypes.c_int8 * n
return t()
def _malloc_int32_array(n):
"""
Return a pointer to allocated C int32 array of length `n'.
"""
t = ctypes.c_uint32 * n
return t()
def _malloc_int32_array_from_list(a, n=None):
"""
Return a pointer to allocated C int32 array of length `n', initialized with `a'
If `n' is not set, the length of `a' will be considered.
"""
if n is None:
n = len(a)
# Memory allocations
m = _malloc_int32_array(n)
for i in range(n):
m[i] = a[i]
return m
def _malloc_char_array(n):
"""
Return a pointer to allocated UTF8 (C char) array of length `n'.
"""
t = ctypes.c_char * n
return t()
def _malloc_char_array_from_string(s):
"""
Return a pointer to allocated UTF8 (C char) array, initialized with `s'.
"""
return ctypes.c_char_p(s)
# Unicode type convertors
def _pyunicode_to_utf32_p(a_pyunicode):
"""Return UTF32 (C int32) array from Py_Unicode.
"""
a_len = len(a_pyunicode)
utf8_pystr = a_pyunicode.encode('UTF-8')
utf8_len = len(utf8_pystr)
utf8_p = _malloc_char_array_from_string(utf8_pystr)
utf32_p = _malloc_int32_array(a_len+1)
_libfribidi.fribidi_utf8_to_unicode(utf8_p, utf8_len, utf32_p)
return utf32_p
def _utf32_p_to_pyunicode(a_utf32_p):
"""Return Py_Unicode from UTF32 (C int32) array.
"""
utf32_len = ctypes.sizeof(a_utf32_p) // ctypes.sizeof(ctypes.c_uint32)
utf8_len = 6*utf32_len+1
utf8_p = _malloc_char_array(utf8_len)
_libfribidi.fribidi_unicode_to_utf8(a_utf32_p, utf32_len, utf8_p)
return utf8_p.value.decode('UTF-8')
# ########################################################################
# FriBidi API, Bidi, Types (fribidi-bidi-types.h)
# Character and Paragraph Masks and Types
class Mask:
"""
TODO.
"""
# Mask values
RTL = 0x00000001 # Is right to left
ARABIC = 0x00000002 # Is arabic
# Each character can be only one of the three following:
STRONG = 0x00000010 # Is strong
WEAK = 0x00000020 # Is weak
NEUTRAL = 0x00000040 # Is neutral
SENTINEL = 0x00000080 # Is sentinel
# Sentinels are not valid chars, just identify the start/end of strings.
# Each charcter can be only one of the five following:
LETTER = 0x00000100 # Is letter: L, R, AL
NUMBER = 0x00000200 # Is number: EN, AN
NUMSEPTER = 0x00000400 # Is number separator or terminator: ES, ET, CS
SPACE = 0x00000800 # Is space: BN, BS, SS, WS
EXPLICIT = 0x00001000 # Is expilict mark: LRE, RLE, LRO, RLO, PDF
# Can be set only if Mask.SPACE is also set.
SEPARATOR = 0x00002000 # Is test separator: BS, SS
OVERRIDE = 0x00004000 # Is explicit override: LRO, RLO
# The following must be to make types pairwise different, some of them can
# be removed but are here because of efficiency (make queries faster).
ES = 0x00010000
ET = 0x00020000
CS = 0x00040000
NSM = 0x00080000
BN = 0x00100000
BS = 0x00200000
SS = 0x00400000
WS = 0x00800000
# We reserve a single bit for user's private use: we will never use it.
PRIVATE = 0x01000000
class _Type:
"""
TODO.
"""
# Strong types
LTR = Mask.STRONG + Mask.LETTER # Left-To-Right letter
RTL = Mask.STRONG + Mask.LETTER + Mask.RTL # Right-To-Left letter
AL = Mask.STRONG + Mask.LETTER + Mask.RTL + Mask.ARABIC # Arabic Letter
LRE = Mask.STRONG + Mask.EXPLICIT # Left-to-Right Embedding
RLE = Mask.STRONG + Mask.EXPLICIT + Mask.RTL # Right-to-Left Embedding
LRO = Mask.STRONG + Mask.EXPLICIT + Mask.OVERRIDE # Left-to-Right Override
RLO = Mask.STRONG + Mask.EXPLICIT + Mask.RTL + Mask.OVERRIDE # Right-to-Left Override
# Weak types
PDF = Mask.WEAK + Mask.EXPLICIT # Pop Directional Override
EN = Mask.WEAK + Mask.NUMBER # European Numeral
AN = Mask.WEAK + Mask.NUMBER + Mask.ARABIC # Arabic Numeral
ES = Mask.WEAK + Mask.NUMSEPTER + Mask.ES # European number Separator
ET = Mask.WEAK + Mask.NUMSEPTER + Mask.ET # European number Terminator
CS = Mask.WEAK + Mask.NUMSEPTER + Mask.CS # Common Separator
NSM = Mask.WEAK + Mask.NSM # Non Spacing Mark
BN = Mask.WEAK + Mask.SPACE + Mask.BN # Boundary Neutral
# Neutral types
BS = Mask.NEUTRAL + Mask.SPACE + Mask.SEPARATOR + Mask.BS # Block Separator
SS = Mask.NEUTRAL + Mask.SPACE + Mask.SEPARATOR + Mask.SS # Segment Separator
WS = Mask.NEUTRAL + Mask.SPACE + Mask.WS # WhiteSpace
ON = Mask.NEUTRAL # Other Neutral
# Paragraph-only types
WLTR = Mask.WEAK # Weak Left-To-Right
WRTL = Mask.WEAK | Mask.RTL # Weak Right-To-Left
SENTINEL = Mask.SENTINEL # start or end of text (run list) SENTINEL
# Only used internally
PRIVATE = Mask.PRIVATE # Private types for applications
# More private types can be obtained by summing up from this one
class CharType:
"""
Class of character (direction) types.
Strong types:
LTR Left-To-Right letter
RTL Right-To-Left letter
AL Arabic Letter
LRE Left-to-Right Embedding
RLE Right-to-Left Embedding
LRO Left-to-Right Override
RLO Right-to-Left Override
Weak types:
PDF Pop Directional Override
EN European Numeral
AN Arabic Numeral
ES European number Separator
ET European number Terminator
CS Common Separator
NSM Non Spacing Mark
BN Boundary Neutral
Neutral types:
BS Block Separator
SS Segment Separator
WS WhiteSpace
ON Other Neutral
"""
LTR = _Type.LTR
RTL = _Type.RTL
AL = _Type.AL
EN = _Type.EN
AN = _Type.AN
ES = _Type.ES
ET = _Type.ET
CS = _Type.CS
NSM = _Type.NSM
BN = _Type.BN
BS = _Type.BS
SS = _Type.SS
WS = _Type.WS
ON = _Type.ON
LRE = _Type.LRE
RLE = _Type.RLE
LRO = _Type.LRO
RLO = _Type.RLO
PDF = _Type.PDF
class ParType:
"""
Class of paragraph (direction) types:
LTR Left-to-Right paragraph
RTL Right-to-Left paragraph
ON (Other) Neutral paragraph
WLTR Weak Left-to-Right paragraph
WRTL Weak Right-to-Left paragraph
"""
LTR = _Type.LTR
RTL = _Type.RTL
ON = _Type.ON
WLTR = _Type.WLTR
WRTL = _Type.WRTL
def level_is_rtl(lev):
"""
Return True if `lev' is a Right-to-Left level, False otherwise.
"""
return lev & 1
def level_to_dir(lev):
"""
Return the bidi type corresponding to the direction of the level number.
Return ParType.LTR for evens, and ParType.RTL for odds.
"""
return ParType.RTL if level_is_rtl(lev) else ParType.LTR
def dir_is_rtl(dir):
"""
Return True if `dir' is a Right-to-Left, False otherwise.
"""
return dir & Mask.RTL
def dir_to_level(dir):
"""
Return the minimum level of the direction.
Return 0 for LTR and 1 for RTL.
"""
return 1 if dir_is_rtl(dir) else 0
# TODO: More dir functions (probabely should put into Type class)
# fribidi-bidi-types.h: 283-334
# Functions
def get_bidi_types(unicode_text, text_length=None):
"""
Return characters bidi types.
This function returns the bidi type of a character as defined in Table 3.7
Bidirectional Character Types of the Unicode Bidirectional Algorithm
available at
http://www.unicode.org/reports/tr9/#Bidirectional_Character_Types, using
data provided in file UnicodeData.txt of the Unicode Character Database
available at http://www.unicode.org/Public/UNIDATA/UnicodeData.txt .
"""
# TOD: There are a few macros defined in fribidi-bidi-types.h for querying a bidi type.
if not isinstance(unicode_text, str):
unicode_text = unicode(unicode_text)
if not text_length:
text_length = len(unicode_text)
# Memory allocations
input_utf32_p = _pyunicode_to_utf32_p(unicode_text)
output_chartype_p = _malloc_int32_array(text_length)
# Calling the API
"""
FRIBIDI_ENTRY void fribidi_get_bidi_types (
const FriBidiChar *str, /* input string */
const FriBidiStrIndex len, /* input string length */
FriBidiCharType *btypes /* output bidi types */
);
"""
if libfribidi_version_minor <= 10:
_libfribidi.fribidi_get_types(
input_utf32_p, # input string
text_length, # input string length
output_chartype_p # output bidi types
)
else:
_libfribidi.fribidi_get_bidi_types(
input_utf32_p, # input string
text_length, # input string length
output_chartype_p # output bidi types
)
# Pythonizing the output
return [i for i in output_chartype_p]
# TODO: fribidi_get_bidi_type_name
# ########################################################################
# FriBidi API, Bidi (fribidi-bidi.h)
def get_par_direction(bidi_types_list, text_length=None):
"""
Return base paragraph direction
No weak paragraph direction is returned, only LTR, RTL, or ON.
Input: List of bidi types as returned by get_bidi_types()
This function finds the base direction of a single paragraph,
as defined by rule P2 of the Unicode Bidirectional Algorithm available at
http://www.unicode.org/reports/tr9/#P2.
You typically do not need this function as get_par_embedding_levels() knows
how to compute base direction itself, but you may need this to implement a
more sophisticated paragraph direction handling.
Note that you can pass more than a paragraph to this function and the
direction of the first non-neutral paragraph is returned, which is a very
good heuristic to set direction of the neutral paragraphs at the beginning
of text. For other neutral paragraphs, you better use the direction of the
previous paragraph.
"""
if not text_length:
text_length = len(bidi_types_list)
# Memory allocations
input_bidi_types_p = _malloc_int32_array_from_list(bidi_types_list, text_length)
# Calling the API
'''
FRIBIDI_ENTRY FriBidiParType fribidi_get_par_direction (
const FriBidiCharType *bidi_types, /* input list of bidi types as returned by fribidi_get_bidi_types() */
const FriBidiStrIndex len /* input string length */
);
'''
par_type = _libfribidi.fribidi_get_par_direction(
input_bidi_types_p, # input bidi types
text_length # input string length
)
# Pythonizing the output
return int(par_type)
def get_par_embedding_levels(bidi_types_list, text_length=None,
base_direction=None):
"""
Return the list of embedding levels of characters in the paragraph.
A tuple of list of embedding levels, resolved paragraph direction, and
maximum embedding level will be returned.
Input: List of bidi types as returned by get_bidi_types()
This function finds the bidi embedding levels of a single paragraph,
as defined by the Unicode Bidirectional Algorithm available at
http://www.unicode.org/reports/tr9/. This function implements rules P2 to
I1 inclusive, and parts 1 to 3 of L1, except for rule X9 which is
implemented in remove_bidi_marks(). Part 4 of L1 is implemented in
reorder_line().
"""
# TODO: There are a few macros defined in fribidi-bidi-types.h to work with this embedding levels.
if not text_length:
text_length = len(bidi_types_list)
if base_direction is None:
base_direction=ParType.LTR
# Memory allocations
input_bidi_types_p = _malloc_int32_array_from_list(bidi_types_list, text_length)
pbase_dir_p = ctypes.pointer(ctypes.c_int32(base_direction))
emb_p = _malloc_int8_array(text_length)
# Calling the API
"""
FRIBIDI_ENTRY FriBidiLevel fribidi_get_par_embedding_levels (
const FriBidiCharType *bidi_types, /* input list of bidi types as returned by fribidi_get_bidi_types() */
const FriBidiStrIndex len, /* input string length of the paragraph */
FriBidiParType *pbase_dir, /* requested and resolved paragraph base direction */
FriBidiLevel *embedding_levels /* output list of embedding levels */
) FRIBIDI_GNUC_WARN_UNUSED;
"""
success = _libfribidi.fribidi_get_par_embedding_levels(
input_bidi_types_p, # input list of bidi types as returned by get_bidi_types()
text_length, # input string length of the paragraph
pbase_dir_p, # requested and resolved paragraph base direction
emb_p # output list of embedding levels
)
if not success:
raise Exception('fribidi_get_par_embedding_levels failed')
# Pythonizing the output
max_levels = success - 1
output_levels_list = [i for i in emb_p]
return [output_levels_list, pbase_dir_p[0], max_levels]
def reorder_line(bidi_types_list, text_length=None, line_offset=0,
base_direction=None, with_max_levels=False):
"""
Return visual reordered of a line of logical string
"""
# TODO
"""
This function reorders the characters in a line of text from logical to
final visual order. This function implements part 4 of rule L1, and rules
L2 and L3 of the Unicode Bidirectional Algorithm available at
http://www.unicode.org/reports/tr9/#Reordering_Resolved_Levels.
As a side effect it also sets position maps if not NULL.
You should provide the resolved paragraph direction and embedding levels as
set by fribidi_get_par_embedding_levels(). Also note that the embedding
levels may change a bit. To be exact, the embedding level of any sequence
of white space at the end of line is reset to the paragraph embedding level
(That is part 4 of rule L1).
Note that the bidi types and embedding levels are not reordered. You can
reorder these (or any other) arrays using the map later. The user is
responsible to initialize map to something sensible, like an identity
mapping, or pass NULL if no map is needed.
There is an optional part to this function, which is whether non-spacing
marks for right-to-left parts of the text should be reordered to come after
their base characters in the visual string or not. Most rendering engines
expect this behavior, but console-based systems for example do not like it.
This is controlled by the FRIBIDI_FLAG_REORDER_NSM flag. The flag is on
in FRIBIDI_FLAGS_DEFAULT.
Returns: Maximum level found in this line plus one, or zero if any error
occured (memory allocation failure most probably).
"""
if not text_length:
text_length = len(bidi_types_list)
if base_direction is None:
base_direction=ParType.LTR
# Memory allocations
input_bidi_types_p = _malloc_int32_array_from_list(bidi_types_list, text_length)
pbase_dir_p = ctypes.pointer(ctypes.c_int32(base_direction))
emb_p = _malloc_int8_array(text_length)
# Calling the API
"""
FRIBIDI_ENTRY FriBidiLevel fribidi_reorder_line (
FriBidiFlags flags, /* reorder flags */
const FriBidiCharType *bidi_types, /* input list of bidi types as returned by fribidi_get_bidi_types() */
const FriBidiStrIndex len, /* input length of the line */
const FriBidiStrIndex off, /* input offset of the beginning of the line in the paragraph */
const FriBidiParType base_dir, /* resolved paragraph base direction */
FriBidiLevel *embedding_levels, /* input list of embedding levels, as returned by fribidi_get_par_embedding_levels */
FriBidiChar *visual_str, /* visual string to reorder */
FriBidiStrIndex *map /* a map of string indices which is reordered to reflect where each glyph ends up. */
) FRIBIDI_GNUC_WARN_UNUSED;
"""
success = _libfribidi.fribidi_get_par_embedding_levels(
input_flags, # reorder flags
input_bidi_types_p, # input list of bidi types as returned by get_bidi_types()
text_length, # input string length of the paragraph
line_offset, # input offset of the beginning of the line in the paragraph
pbase_dir_p, # requested and resolved paragraph base direction
emb_p, # output list of embedding levels
embedding_levels_p # input list of embedding levels, as returned by get_par_embedding_levels()
)
if not success:
raise Exception('fribidi_get_par_embedding_levels failed')
# Pythonizing the output
max_levels = success - 1
output_levels_list = [i for i in emb_p]
if with_max_levels:
return [output_levels_list, max_levels]
else:
return output_levels_list
# ########################################################################
# FriBidi API, Misc
def log2vis(unicode_text, text_length=None, base_direction=None,
with_l2v_position=False, with_v2l_position=False,
with_embedding_level=False):
"""
Return a unicode text contaning the visual order of characters in the text.
If paragraph direction is not set (`base_direction'), it will be assumed to
to be letf-to-right (LTR).
If any of with_l2v_position, with_v2l_position, and with_embedding_level
are True, the return value will be a tuple including logical-to-visual
position, visual-to-logical positions, or embedding-level lists
respectively.
"""
if not isinstance(unicode_text, str):
unicode_text = unicode(unicode_text)
if not text_length:
text_length = len(unicode_text)
if base_direction is None:
base_direction=ParType.LTR
# Memory allocations
input_utf32_p = _pyunicode_to_utf32_p(unicode_text)
pbase_dir_p = ctypes.pointer(ctypes.c_int32(base_direction))
output_utf32_p = _malloc_int32_array(text_length+1)
l2v_p = _malloc_int_array(text_length) if with_l2v_position else None
v2l_p = _malloc_int_array(text_length) if with_v2l_position else None
emb_p = _malloc_int8_array(text_length) if with_embedding_level else None
# Calling the API
"""
FRIBIDI_API fribidi_boolean fribidi_log2vis (
/* input */
FriBidiChar *str,
FriBidiStrIndex len,
FriBidiCharType *pbase_dirs,
/* output */
FriBidiChar *visual_str,
FriBidiStrIndex *position_L_to_V_list,
FriBidiStrIndex *position_V_to_L_list,
FriBidiLevel *embedding_level_list
);
"""
successed = _libfribidi.fribidi_log2vis(
# input
input_utf32_p,
text_length,
pbase_dir_p,
# output
output_utf32_p,
l2v_p,
v2l_p,
emb_p
)
if not successed:
raise Exception('fribidi_log2vis failed')
# Pythonizing the output
output_u = _utf32_p_to_pyunicode(output_utf32_p)
if with_l2v_position or with_v2l_position or with_embedding_level:
res = (output_u, )
if with_l2v_position: res += ([i for i in l2v_p], )
if with_v2l_position: res += ([i for i in v2l_p], )
if with_embedding_level: res += ([i for i in emb_p], )
else:
res = output_u
return res
def log2vis_get_embedding_levels(unicode_text, base_direction=None):
"""
Return an array containing the embedding-level of characters in the text.
"""
if not isinstance(unicode_text, str):
unicode_text = unicode(unicode_text)
if base_direction is None:
base_direction=ParType.LTR
text_len = len(unicode_text)
# Memory allocations
input_utf32_p = _pyunicode_to_utf32_p(unicode_text)
pbase_dir_p = ctypes.pointer(ctypes.c_int32(base_direction))
emb_p = _malloc_int8_array(text_len)
# Calling the API
"""
FRIBIDI_API fribidi_boolean fribidi_log2vis_get_embedding_levels (
/* input */
FriBidiChar *str,
FriBidiStrIndex len,
FriBidiCharType *pbase_dir,
/* output */
FriBidiLevel *embedding_level_list
);
"""
successed = _libfribidi.fribidi_log2vis_get_embedding_levels(
# input
input_utf32_p,
text_len,
pbase_dir_p,
# output
emb_p
)
if not successed:
raise Exception('fribidi_log2vis_get_embedding_levels failed')
# Pythonizing the output
res = [i for i in emb_p]
return res
def remove_bidi_marks(unicode_text, text_length=None,
with_position_to=False, with_position_from=False,
with_embedding_level=False):
"""
Return the text with all Bidirectional Marks removed.
If with_position_to, with_position_from, or with_embedding_level are True,
the return value will be a tuple including positions from input text to
output text, positions from output text to input text, or embedding-level
lists respectively.
Note: Seems the optional parameters of fribidi_remove_bidi_marks() doesn't
work or crash. Use them at your own risk.
"""
if not isinstance(unicode_text, str):
unicode_text = unicode(unicode_text)
if not text_length:
text_length = len(unicode_text)
# Memory allocations
input_utf32_p = _pyunicode_to_utf32_p(unicode_text)
pto_p = _malloc_int_array(text_length) if with_position_to else None
pfr_p = _malloc_int_array(text_length) if with_position_from else None
emb_p = _malloc_int8_array(text_length) if with_embedding_level else None
# Calling the API
"""
FRIBIDI_API FriBidiStrIndex fribidi_remove_bidi_marks (
/* input & output */
FriBidiChar *str,
/* input */
FriBidiStrIndex length,
/* output */
FriBidiStrIndex *position_to_this_list,
FriBidiStrIndex *position_from_this_list,
FriBidiLevel *embedding_level_list
);
"""
new_length = _libfribidi.fribidi_remove_bidi_marks(
# input & output
input_utf32_p,
# input
text_length,
# output
pto_p,
pfr_p,
emb_p
)
# Pythonizing the output
output_u = _utf32_p_to_pyunicode(input_utf32_p)
if with_position_to or with_position_from or with_embedding_level:
res = (output_u, )
if with_position_to: res += ([i for i in pto_p], )
if with_position_from: res += ([i for i in pfr_p], )
if with_embedding_level: res += ([i for i in emb_p], )
else:
res = output_u
return res
def get_mirror_chars(unicode_text):
"""
Return TODO
TODO.
* fribidi_get_mirror_char() returns the mirrored character, if input
* character has a mirror, or the input itself.
* if mirrored_ch is NULL, just returns if character has a mirror or not.
"""
if not isinstance(unicode_text, str):
unicode_text = unicode(unicode_text)
res = u''
for unicode_char in unicode_text:
text_length = len(unicode_text)
# Memory allocations
input_utf32_p = _pyunicode_to_utf32_p(unicode_char)
output_utf32_p = _malloc_int32_array(text_length+1)
# Calling the API
"""
FRIBIDI_API fribidi_boolean fribidi_get_mirror_char (
/* Input */
FriBidiChar ch,
/* Output */
FriBidiChar *mirrored_ch
);
"""
_libfribidi.fribidi_get_mirror_char(
# input
input_utf32_p[0],
# output
output_utf32_p
)
# Pythonizing the output
res += _utf32_p_to_pyunicode(output_utf32_p)
return res
def get_mirror_prop(unicode_text):
"""
Return TODO
TODO.
* fribidi_get_mirror_char() returns the mirrored character, if input
* character has a mirror, or the input itself.
* if mirrored_ch is NULL, just returns if character has a mirror or not.
"""
if not isinstance(unicode_text, str):
unicode_text = unicode(unicode_text)
res = []
for unicode_char in unicode_text:
# Memory allocations
input_utf32_p = _pyunicode_to_utf32_p(unicode_char)
# Calling the API
"""
FRIBIDI_API fribidi_boolean fribidi_get_mirror_char (
/* Input */
FriBidiChar ch,
/* Output */
FriBidiChar *mirrored_ch
);
"""
is_mirror = _libfribidi.fribidi_get_mirror_char(
# input
input_utf32_p[0],
# output
None
)
# Pythonizing the output
res.append(is_mirror)
return res
def get_version_info():
"""
Return TODO
TODO.
"""
# TODO
return str(_libfribidi.fribidi_version_info)
# Main
def _main():
"""
Print visual representation of command-line parameters (as a whole).
"""
import sys
text = ' '.join(sys.argv[1:])
print(log2vis(text))
if __name__=='__main__':
_main()