-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathDiffMatchPatchCFUtilities.c
executable file
·697 lines (571 loc) · 24.9 KB
/
DiffMatchPatchCFUtilities.c
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
/*
* Diff Match and Patch
*
* Copyright 2010 geheimwerk.de.
* http://code.google.com/p/google-diff-match-patch/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: fraser@google.com (Neil Fraser)
* ObjC port: jan@geheimwerk.de (Jan Weiß)
*/
#include <CoreFoundation/CoreFoundation.h>
#include "DiffMatchPatchCFUtilities.h"
#include "MinMaxMacros.h"
#include <regex.h>
#include <limits.h>
#include <AssertMacros.h>
Boolean diff_regExMatch(CFStringRef text, const regex_t *re);
CFArrayRef diff_halfMatchICreate(CFStringRef longtext, CFStringRef shorttext, CFIndex i);
void diff_mungeHelper(CFStringRef token, CFMutableArrayRef tokenArray, CFMutableDictionaryRef tokenHash, CFMutableStringRef chars);
// Utility functions
CFStringRef diff_CFStringCreateFromUnichar(UniChar ch) {
CFStringRef c = CFStringCreateWithCharacters(kCFAllocatorDefault, &ch, 1);
return c;
}
Boolean diff_regExMatch(CFStringRef text, const regex_t *re) {
//TODO(jan): Using regex.h is far from optimal. Find an alternative.
Boolean isMatch;
const char *bytes;
char *localBuffer = NULL;
char *textCString = NULL;
// We are only interested in line endings anyway so ASCII is fine.
CFStringEncoding encoding = kCFStringEncodingASCII;
bytes = CFStringGetCStringPtr(text, encoding);
if (bytes == NULL) {
Boolean success;
CFIndex length;
CFIndex usedBufferLength;
CFIndex textLength = CFStringGetLength(text);
CFRange rangeToProcess = CFRangeMake(0, textLength);
success = (CFStringGetBytes(text, rangeToProcess, encoding, '?', false, NULL, LONG_MAX, &usedBufferLength) > 0);
if (success) {
length = usedBufferLength + 1;
localBuffer = calloc(length, sizeof(char));
success = (CFStringGetBytes(text, rangeToProcess, encoding, '?', false, (UInt8 *)localBuffer, length, NULL) > 0);
if (success) {
textCString = localBuffer;
}
}
} else {
textCString = (char *)bytes;
}
if (textCString != NULL) {
isMatch = (regexec(re, textCString, 0, NULL, 0) == 0);
} else {
isMatch = false;
//check(0);
}
if (localBuffer != NULL) {
free(localBuffer);
}
return isMatch;
}
/**
* Determine the common prefix of two strings.
* @param text1 First string.
* @param text2 Second string.
* @return The number of characters common to the start of each string.
*/
CFIndex diff_commonPrefix(CFStringRef text1, CFStringRef text2) {
// Performance analysis: http://neil.fraser.name/news/2007/10/09/
CFIndex text1_length = CFStringGetLength(text1);
CFIndex text2_length = CFStringGetLength(text2);
CFStringInlineBuffer text1_inlineBuffer, text2_inlineBuffer;
CFStringInitInlineBuffer(text1, &text1_inlineBuffer, CFRangeMake(0, text1_length));
CFStringInitInlineBuffer(text2, &text2_inlineBuffer, CFRangeMake(0, text2_length));
UniChar char1, char2;
CFIndex n = MIN(text1_length, text2_length);
for (CFIndex i = 0; i < n; i++) {
char1 = CFStringGetCharacterFromInlineBuffer(&text1_inlineBuffer, i);
char2 = CFStringGetCharacterFromInlineBuffer(&text2_inlineBuffer, i);
if (char1 != char2) {
return i;
}
}
return n;
}
/**
* Determine the common suffix of two strings.
* @param text1 First string.
* @param text2 Second string.
* @return The number of characters common to the end of each string.
*/
CFIndex diff_commonSuffix(CFStringRef text1, CFStringRef text2) {
// Performance analysis: http://neil.fraser.name/news/2007/10/09/
CFIndex text1_length = CFStringGetLength(text1);
CFIndex text2_length = CFStringGetLength(text2);
CFStringInlineBuffer text1_inlineBuffer, text2_inlineBuffer;
CFStringInitInlineBuffer(text1, &text1_inlineBuffer, CFRangeMake(0, text1_length));
CFStringInitInlineBuffer(text2, &text2_inlineBuffer, CFRangeMake(0, text2_length));
UniChar char1, char2;
CFIndex n = MIN(text1_length, text2_length);
for (CFIndex i = 1; i <= n; i++) {
char1 = CFStringGetCharacterFromInlineBuffer(&text1_inlineBuffer, (text1_length - i));
char2 = CFStringGetCharacterFromInlineBuffer(&text2_inlineBuffer, (text2_length - i));
if (char1 != char2) {
return i - 1;
}
}
return n;
}
/**
* Determine if the suffix of one CFStringRef is the prefix of another.
* @param text1 First CFStringRef.
* @param text2 Second CFStringRef.
* @return The number of characters common to the end of the first
* CFStringRef and the start of the second CFStringRef.
*/
CFIndex diff_commonOverlap(CFStringRef text1, CFStringRef text2) {
CFIndex common_overlap = 0;
// Cache the text lengths to prevent multiple calls.
CFIndex text1_length = CFStringGetLength(text1);
CFIndex text2_length = CFStringGetLength(text2);
// Eliminate the nil case.
if (text1_length == 0 || text2_length == 0) {
return 0;
}
// Truncate the longer CFStringRef.
CFStringRef text1_trunc;
CFStringRef text2_trunc;
CFIndex text1_trunc_length;
if (text1_length > text2_length) {
text1_trunc_length = text2_length;
text1_trunc = diff_CFStringCreateRightSubstring(text1, text1_length, text1_trunc_length);
text2_trunc = CFRetain(text2);
} else if (text1_length < text2_length) {
text1_trunc_length = text1_length;
text1_trunc = CFRetain(text1);
CFIndex text2_trunc_length = text1_length;
text2_trunc = diff_CFStringCreateLeftSubstring(text2, text2_trunc_length);
} else {
text1_trunc_length = text1_length;
text1_trunc = CFRetain(text1);
text2_trunc = CFRetain(text2);
}
CFIndex text_length = MIN(text1_length, text2_length);
// Quick check for the worst case.
if (CFStringCompare(text1_trunc, text2_trunc, 0) == kCFCompareEqualTo) {
common_overlap = text_length;
} else {
// Start by looking for a single character match
// and increase length until no match is found.
// Performance analysis: http://neil.fraser.name/news/2010/11/04/
CFIndex best = 0;
CFIndex length = 1;
while (true) {
CFStringRef pattern = diff_CFStringCreateRightSubstring(text1_trunc, text1_trunc_length, length);
CFRange foundRange = CFStringFind(text2_trunc, pattern, 0);
CFRelease(pattern);
CFIndex found = foundRange.location;
if (found == kCFNotFound) {
common_overlap = best;
break;
}
length += found;
CFStringRef text1_sub = diff_CFStringCreateRightSubstring(text1_trunc, text1_trunc_length, length);
CFStringRef text2_sub = diff_CFStringCreateLeftSubstring(text2_trunc, length);
if (found == 0 || (CFStringCompare(text1_sub, text2_sub, 0) == kCFCompareEqualTo)) {
best = length;
length++;
}
CFRelease(text1_sub);
CFRelease(text2_sub);
}
}
CFRelease(text1_trunc);
CFRelease(text2_trunc);
return common_overlap;
}
/**
* Do the two texts share a Substring which is at least half the length of
* the longer text?
* This speedup can produce non-minimal diffs.
* @param text1 First CFStringRef.
* @param text2 Second CFStringRef.
* @param diffTimeout Time limit for diff.
* @return Five element CFStringRef array, containing the prefix of text1, the
* suffix of text1, the prefix of text2, the suffix of text2 and the
* common middle. Or NULL if there was no match.
*/
CFArrayRef diff_halfMatchCreate(CFStringRef text1, CFStringRef text2, const float diffTimeout) {
if (diffTimeout <= 0) {
// Don't risk returning a non-optimal diff if we have unlimited time.
return NULL;
}
CFStringRef longtext = CFStringGetLength(text1) > CFStringGetLength(text2) ? text1 : text2;
CFStringRef shorttext = CFStringGetLength(text1) > CFStringGetLength(text2) ? text2 : text1;
if (CFStringGetLength(longtext) < 4 || CFStringGetLength(shorttext) * 2 < CFStringGetLength(longtext)) {
return NULL; // Pointless.
}
// First check if the second quarter is the seed for a half-match.
CFArrayRef hm1 = diff_halfMatchICreate(longtext, shorttext,
(CFStringGetLength(longtext) + 3) / 4);
// Check again based on the third quarter.
CFArrayRef hm2 = diff_halfMatchICreate(longtext, shorttext,
(CFStringGetLength(longtext) + 1) / 2);
CFArrayRef hm;
if (hm1 == NULL && hm2 == NULL) {
return NULL;
} else if (hm2 == NULL) {
hm = CFRetain(hm1);
} else if (hm1 == NULL) {
hm = CFRetain(hm2);
} else {
// Both matched. Select the longest.
hm = CFStringGetLength(CFArrayGetValueAtIndex(hm1, 4)) > CFStringGetLength(CFArrayGetValueAtIndex(hm2, 4)) ? CFRetain(hm1) : CFRetain(hm2);
}
if (hm1 != NULL) {
CFRelease(hm1);
}
if (hm2 != NULL) {
CFRelease(hm2);
}
// A half-match was found, sort out the return data.
if (CFStringGetLength(text1) > CFStringGetLength(text2)) {
return hm;
//return new CFStringRef[]{hm[0], hm[1], hm[2], hm[3], hm[4]};
} else {
// { hm[0], hm[1], hm[2], hm[3], hm[4] }
// => { hm[2], hm[3], hm[0], hm[1], hm[4] }
CFMutableArrayRef hm_mutable = CFArrayCreateMutableCopy(kCFAllocatorDefault, CFArrayGetCount(hm), hm);
CFRelease(hm);
CFArrayExchangeValuesAtIndices(hm_mutable, 0, 2);
CFArrayExchangeValuesAtIndices(hm_mutable, 1, 3);
return hm_mutable;
}
}
/**
* Does a Substring of shorttext exist within longtext such that the
* Substring is at least half the length of longtext?
* @param longtext Longer CFStringRef.
* @param shorttext Shorter CFStringRef.
* @param i Start index of quarter length Substring within longtext.
* @return Five element CFStringRef array, containing the prefix of longtext, the
* suffix of longtext, the prefix of shorttext, the suffix of shorttext
* and the common middle. Or NULL if there was no match.
*/
CFArrayRef diff_halfMatchICreate(CFStringRef longtext, CFStringRef shorttext, CFIndex i) {
// Start with a 1/4 length Substring at position i as a seed.
CFStringRef seed = diff_CFStringCreateSubstring(longtext, i, CFStringGetLength(longtext) / 4);
CFIndex j = -1;
CFStringRef best_common = CFSTR("");
CFStringRef best_longtext_a = CFSTR(""), best_longtext_b = CFSTR("");
CFStringRef best_shorttext_a = CFSTR(""), best_shorttext_b = CFSTR("");
CFStringRef longtext_substring, shorttext_substring;
CFIndex shorttext_length = CFStringGetLength(shorttext);
CFRange resultRange;
CFRange rangeToSearch;
rangeToSearch.length = shorttext_length - (j + 1);
rangeToSearch.location = j + 1;
while (j < CFStringGetLength(shorttext)
&& (CFStringFindWithOptions(shorttext, seed, rangeToSearch, 0, &resultRange) == true)) {
j = resultRange.location;
rangeToSearch.length = shorttext_length - (j + 1);
rangeToSearch.location = j + 1;
longtext_substring = diff_CFStringCreateSubstringWithStartIndex(longtext, i);
shorttext_substring = diff_CFStringCreateSubstringWithStartIndex(shorttext, j);
CFIndex prefixLength = diff_commonPrefix(longtext_substring, shorttext_substring);
CFRelease(longtext_substring);
CFRelease(shorttext_substring);
longtext_substring = diff_CFStringCreateLeftSubstring(longtext, i);
shorttext_substring = diff_CFStringCreateLeftSubstring(shorttext, j);
CFIndex suffixLength = diff_commonSuffix(longtext_substring, shorttext_substring);
CFRelease(longtext_substring);
CFRelease(shorttext_substring);
if (CFStringGetLength(best_common) < suffixLength + prefixLength) {
CFRelease(best_common);
CFRelease(best_longtext_a);
CFRelease(best_longtext_b);
CFRelease(best_shorttext_a);
CFRelease(best_shorttext_b);
best_common = diff_CFStringCreateSubstring(shorttext, j - suffixLength, suffixLength + prefixLength);
best_longtext_a = diff_CFStringCreateLeftSubstring(longtext, i - suffixLength);
best_longtext_b = diff_CFStringCreateSubstringWithStartIndex(longtext, i + prefixLength);
best_shorttext_a = diff_CFStringCreateLeftSubstring(shorttext, j - suffixLength);
best_shorttext_b = diff_CFStringCreateSubstringWithStartIndex(shorttext, j + prefixLength);
}
}
CFRelease(seed);
CFArrayRef halfMatchIArray;
if (CFStringGetLength(best_common) * 2 >= CFStringGetLength(longtext)) {
const CFStringRef values[] = { best_longtext_a, best_longtext_b,
best_shorttext_a, best_shorttext_b, best_common };
halfMatchIArray = CFArrayCreate(kCFAllocatorDefault, (const void **)values, (sizeof(values) / sizeof(values[0])), &kCFTypeArrayCallBacks);
} else {
halfMatchIArray = NULL;
}
CFRelease(best_common);
CFRelease(best_longtext_a);
CFRelease(best_longtext_b);
CFRelease(best_shorttext_a);
CFRelease(best_shorttext_b);
return halfMatchIArray;
}
void diff_mungeHelper(CFStringRef token, CFMutableArrayRef tokenArray, CFMutableDictionaryRef tokenHash, CFMutableStringRef chars) {
#define diff_UniCharMax (~(UniChar)0x00)
CFIndex hash;
if (CFDictionaryGetValueIfPresent(tokenHash, token, (const void **)&hash)) {
const UniChar hashChar = (UniChar)hash;
CFStringAppendCharacters(chars, &hashChar, 1);
} else {
CFArrayAppendValue(tokenArray, token);
hash = CFArrayGetCount(tokenArray) - 1;
__Check_String(hash <= diff_UniCharMax, "Hash value has exceeded UniCharMax!");
CFDictionaryAddValue(tokenHash, token, (void *)hash);
const UniChar hashChar = (UniChar)hash;
CFStringAppendCharacters(chars, &hashChar, 1);
}
#undef diff_UniCharMax
}
CF_INLINE void diff_mungeTokenForRange(CFStringRef text, CFRange tokenRange, CFMutableStringRef chars, CFMutableDictionaryRef tokenHash, CFMutableArrayRef tokenArray) {
CFStringRef token = CFStringCreateWithSubstring(kCFAllocatorDefault, text, tokenRange);
diff_mungeHelper(token, tokenArray, tokenHash, chars);
CFRelease(token);
}
/**
* Split a text into a list of strings. Reduce the texts to a CFStringRef of
* hashes where each Unicode character represents one line.
* @param text CFString to encode.
* @param lineArray CFMutableArray of unique strings.
* @param lineHash Map of strings to indices.
* @return Encoded CFStringRef.
*/
CFStringRef diff_linesToCharsMungeCFStringCreate(CFStringRef text, CFMutableArrayRef lineArray, CFMutableDictionaryRef lineHash) {
#define lineStart lineStartRange.location
#define lineEnd lineEndRange.location
CFRange lineStartRange;
CFRange lineEndRange;
lineStart = 0;
lineEnd = -1;
CFStringRef line;
CFMutableStringRef chars = CFStringCreateMutable(kCFAllocatorDefault, 0);
CFIndex textLength = CFStringGetLength(text);
// Walk the text, pulling out a Substring for each line.
// CFStringCreateArrayBySeparatingStrings(kCFAllocatorDefault, text, CFSTR("\n")) would temporarily double our memory footprint.
// Modifying text would create many large strings.
while (lineEnd < textLength - 1) {
lineStartRange.length = textLength - lineStart;
if (CFStringFindWithOptions(text, CFSTR("\n"), lineStartRange, 0, &lineEndRange) == false) {
lineEnd = textLength - 1;
} /* else {
lineEnd = lineEndRange.location;
}*/
line = diff_CFStringCreateJavaSubstring(text, lineStart, lineEnd + 1);
lineStart = lineEnd + 1;
diff_mungeHelper(line, lineArray, lineHash, chars);
CFRelease(line);
}
return chars;
#undef diff_UniCharMax
#undef lineStart
#undef lineEnd
}
/**
* Split a text into a list of strings. Reduce the texts to a CFStringRef of
* hashes where where each Unicode character represents one token (or boundary between tokens).
* @param text CFString to encode.
* @param tokenArray CFMutableArray of unique strings.
* @param tokenHash Map of strings to indices.
* @return Encoded CFStringRef.
*/
CFStringRef diff_tokensToCharsMungeCFStringCreate(CFStringRef text, CFMutableArrayRef tokenArray, CFMutableDictionaryRef tokenHash, CFOptionFlags tokenizerOptions) {
CFMutableStringRef chars = CFStringCreateMutable(kCFAllocatorDefault, 0);
CFIndex textLength = CFStringGetLength(text);
//CFLocaleRef currentLocale = CFLocaleCopyCurrent();
CFRange tokenizerRange = CFRangeMake(0, textLength);
CFStringTokenizerRef tokenizer = CFStringTokenizerCreate(kCFAllocatorDefault, text, tokenizerRange, tokenizerOptions, NULL);
//CFRelease(currentLocale);
// Set tokenizer to the start of the string.
CFStringTokenizerTokenType tokenType = CFStringTokenizerGoToTokenAtIndex(tokenizer, 0);
// Walk the text, pulling out a substring for each token (or boundary between tokens).
// A token is either a word, sentence, paragraph or line depending on what tokenizerOptions is set to.
CFRange tokenRange;
CFIndex prevTokenRangeMax = 0;
while (tokenType != kCFStringTokenizerTokenNone) {
tokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer);
if (tokenRange.location > prevTokenRangeMax) {
// This probably is a bug in the tokenizer: for some reason, gaps in the tokenization can appear.
// One particular example is the tokenizer skipping a line feed ('\n') directly after a string of Chinese characters
CFRange gapRange = CFRangeMake(prevTokenRangeMax, (tokenRange.location - prevTokenRangeMax));
diff_mungeTokenForRange(text, gapRange, chars, tokenHash, tokenArray);
}
diff_mungeTokenForRange(text, tokenRange, chars, tokenHash, tokenArray);
tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer);
prevTokenRangeMax = (tokenRange.location + tokenRange.length);
}
CFRelease(tokenizer);
return chars;
}
/**
* Split a text into a list of strings. Reduce the texts to a CFStringRef of
* hashes where where each Unicode character represents the substring for a CFRange.
* @param text CFString to encode.
* @param substringArray CFMutableArray of unique strings.
* @param substringHash Map of strings to indices.
* @param ranges C array of CFRange structs determining the subranges to hash.
* @param ranges_count Count of the CFRange structs contained in ranges.
* @return Encoded CFStringRef.
*/
CFStringRef diff_rangesToCharsMungeCFStringCreate(CFStringRef text, CFMutableArrayRef substringArray, CFMutableDictionaryRef substringHash, CFRange *ranges, size_t ranges_count) {
CFMutableStringRef chars = CFStringCreateMutable(kCFAllocatorDefault, 0);
for (size_t i = 0; i < ranges_count; i++) {
CFRange substringRange = ranges[i];
diff_mungeTokenForRange(text, substringRange, chars, substringHash, substringArray);
}
return chars;
}
/**
* Split a text into a list of strings. Reduce the texts to a CFStringRef of
* hashes where where each Unicode character represents one word (or boundary between words).
* @param text CFString to encode.
* @param lineArray CFMutableArray of unique strings.
* @param lineHash Map of strings to indices.
* @return Encoded CFStringRef.
*/
CFStringRef diff_wordsToCharsMungeCFStringCreate(CFStringRef text, CFMutableArrayRef tokenArray, CFMutableDictionaryRef tokenHash) {
return diff_tokensToCharsMungeCFStringCreate(text, tokenArray, tokenHash, kCFStringTokenizerUnitWordBoundary);
}
/**
* Split a text into a list of strings. Reduce the texts to a CFStringRef of
* hashes where where each Unicode character represents one sentence.
* @param text CFString to encode.
* @param lineArray CFMutableArray of unique strings.
* @param lineHash Map of strings to indices.
* @return Encoded CFStringRef.
*/
CFStringRef diff_sentencesToCharsMungeCFStringCreate(CFStringRef text, CFMutableArrayRef tokenArray, CFMutableDictionaryRef tokenHash) {
return diff_tokensToCharsMungeCFStringCreate(text, tokenArray, tokenHash, kCFStringTokenizerUnitSentence);
}
/**
* Split a text into a list of strings. Reduce the texts to a CFStringRef of
* hashes where where each Unicode character represents one paragraph.
* @param text CFString to encode.
* @param lineArray CFMutableArray of unique strings.
* @param lineHash Map of strings to indices.
* @return Encoded CFStringRef.
*/
CFStringRef diff_paragraphsToCharsMungeCFStringCreate(CFStringRef text, CFMutableArrayRef tokenArray, CFMutableDictionaryRef tokenHash) {
return diff_tokensToCharsMungeCFStringCreate(text, tokenArray, tokenHash, kCFStringTokenizerUnitParagraph);
}
/**
* Split a text into a list of strings. Reduce the texts to a CFStringRef of
* hashes where each Unicode character represents one text fragment delimitered by line breaks (including the trailing line break characters if any).
* In this context “line break” does not refere to “something you get when you press the return-key”.
* Instead it the refers to “line break boundaries” as defined in “UAX #14: Unicode Line Breaking Algorithm” (http://www.unicode.org/reports/tr14/).
* @param text CFString to encode.
* @param lineArray CFMutableArray of unique strings.
* @param lineHash Map of strings to indices.
* @return Encoded CFStringRef.
*/
CFStringRef diff_lineBreakDelimiteredToCharsMungeCFStringCreate(CFStringRef text, CFMutableArrayRef tokenArray, CFMutableDictionaryRef tokenHash) {
return diff_tokensToCharsMungeCFStringCreate(text, tokenArray, tokenHash, kCFStringTokenizerUnitLineBreak);
}
CFStringRef diff_charsToTokenCFStringCreate(CFStringRef charsString, CFArrayRef tokenArray) {
#define hashAtIndex(A) hash_chars[(A)]
CFMutableStringRef text = CFStringCreateMutable(kCFAllocatorDefault, 0);
CFIndex hash_count = CFStringGetLength(charsString);
const UniChar *hash_chars;
UniChar *hash_buffer = NULL;
diff_CFStringPrepareUniCharBuffer(charsString, &hash_chars, &hash_buffer, CFRangeMake(0, hash_count));
for (CFIndex i = 0; i < hash_count; i++) {
CFIndex tokenHash = (CFIndex)hashAtIndex(i);
CFStringRef token = CFArrayGetValueAtIndex(tokenArray, tokenHash);
CFStringAppend(text, token);
}
if (hash_buffer != NULL) free(hash_buffer);
return text;
#undef hashAtIndex
}
/**
* Given two strings, compute a score representing whether the internal
* boundary falls on logical boundaries.
* Scores range from 6 (best) to 0 (worst).
* @param one First CFStringRef.
* @param two Second CFStringRef.
* @return The score.
*/
CFIndex diff_cleanupSemanticScore(CFStringRef one, CFStringRef two) {
static Boolean firstRun = true;
static CFCharacterSetRef alphaNumericSet = NULL;
static CFCharacterSetRef whiteSpaceSet = NULL;
static CFCharacterSetRef controlSet = NULL;
static regex_t blankLineEndRegEx;
static regex_t blankLineStartRegEx;
if (firstRun) {
alphaNumericSet = CFCharacterSetGetPredefined(kCFCharacterSetAlphaNumeric);
whiteSpaceSet = CFCharacterSetGetPredefined(kCFCharacterSetWhitespaceAndNewline);
controlSet = CFCharacterSetGetPredefined(kCFCharacterSetControl);
// Define some regex patterns for matching boundaries.
#ifdef DEBUG_CLEANUP_SEMANTIC_SCORE
int status;
status =
#endif
regcomp(&blankLineEndRegEx, "\n\r?\n$", REG_EXTENDED | REG_NOSUB);
#ifdef DEBUG_CLEANUP_SEMANTIC_SCORE
check(status == 0);
status =
#endif
regcomp(&blankLineStartRegEx, "^\r?\n\r?\n", REG_EXTENDED | REG_NOSUB);
#ifdef DEBUG_CLEANUP_SEMANTIC_SCORE
check(status == 0);
#endif
firstRun = false;
}
if (CFStringGetLength(one) == 0 || CFStringGetLength(two) == 0) {
// Edges are the best.
return 6;
}
// Each port of this function behaves slightly differently due to
// subtle differences in each language's definition of things like
// 'whitespace'. Since this function's purpose is largely cosmetic,
// the choice has been made to use each language's native features
// rather than force total conformity.
UniChar char1 =
CFStringGetCharacterAtIndex(one, (CFStringGetLength(one) - 1));
UniChar char2 =
CFStringGetCharacterAtIndex(two, 0);
Boolean nonAlphaNumeric1 =
!CFCharacterSetIsCharacterMember(alphaNumericSet, char1);
Boolean nonAlphaNumeric2 =
!CFCharacterSetIsCharacterMember(alphaNumericSet, char2);
Boolean whitespace1 =
nonAlphaNumeric1 && CFCharacterSetIsCharacterMember(whiteSpaceSet, char1);
Boolean whitespace2 =
nonAlphaNumeric2 && CFCharacterSetIsCharacterMember(whiteSpaceSet, char2);
Boolean lineBreak1 =
whitespace1 && CFCharacterSetIsCharacterMember(controlSet, char1);
Boolean lineBreak2 =
whitespace2 && CFCharacterSetIsCharacterMember(controlSet, char2);
Boolean blankLine1 =
lineBreak1 && diff_regExMatch(one, &blankLineEndRegEx);
Boolean blankLine2 =
lineBreak2 && diff_regExMatch(two, &blankLineStartRegEx);
if (blankLine1 || blankLine2) {
// Five points for blank lines.
return 5;
} else if (lineBreak1 || lineBreak2) {
// Four points for line breaks.
return 4;
} else if (nonAlphaNumeric1 && !whitespace1 && whitespace2) {
// Three points for end of sentences.
return 3;
} else if (whitespace1 || whitespace2) {
// Two points for whitespace.
return 2;
} else if (nonAlphaNumeric1 || nonAlphaNumeric2) {
// One point for non-alphanumeric.
return 1;
}
return 0;
}