Advertisement
brokaw

CFStringTokenizer Bug (23680636)

Nov 28th, 2015
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. //  main.m
  3. //  TokenizerTest
  4. //
  5. //  Created by Steve Brokaw on 11/28/15.
  6. //  Copyright © 2015 Steven Brokaw. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11. NSInteger countSentences(CFStringRef);
  12.  
  13. int main(int argc, const char * argv[]) {
  14.     @autoreleasepool {
  15.         // insert code here...
  16.         /*
  17.         The problematic sentences are below. I've noticed if you add an additional space
  18.         between the two, they are propertly tokenized into two sentences. But not every upper
  19.         case string needs two spaces. Below is the entire Gettysburg Address. Everything
  20.         except for these two sentences is tokenized correctly.
  21.          */
  22.         CFStringRef lower = CFSTR("The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here.");
  23.         NSInteger lowerCount = countSentences(lower);
  24.  
  25.         CFMutableStringRef upper = CFStringCreateMutableCopy(kCFAllocatorDefault, CFStringGetLength(lower), lower);
  26.         CFLocaleRef locale = CFLocaleCopyCurrent();
  27.         CFStringUppercase(upper, locale);
  28.         NSInteger upperCount = countSentences(upper);
  29.  
  30.         if (upperCount != lowerCount) {
  31.             NSLog(@"Upper case count differs by %li", lowerCount - upperCount);
  32.         }
  33.         CFRelease(upper);
  34.         CFRelease(lower);
  35.  
  36.         lower = CFSTR("Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battlefield of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate, we can not consecrate, we can not hallow this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us—that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion—that we here highly resolve that these dead shall not have died in vain—that this nation, under God, shall have a new birth of freedom—and that government of the people, by the people, for the people, shall not perish from the earth.");
  37.         lowerCount = countSentences(lower);
  38.  
  39.         upper = CFStringCreateMutableCopy(kCFAllocatorDefault, CFStringGetLength(lower), lower);
  40.         CFStringUppercase(upper, locale);
  41.         CFRelease(locale);
  42.         upperCount = countSentences(upper);
  43.  
  44.         if (upperCount != lowerCount) {
  45.             NSLog(@"Upper case count differs by %li", lowerCount - upperCount);
  46.         }
  47.     }
  48.     return 0;
  49. }
  50.  
  51. NSInteger countSentences(CFStringRef str) {
  52.     CFLocaleRef locale = CFLocaleCopyCurrent();
  53.  
  54.     CFStringTokenizerRef sentenceTokenizer =
  55.         CFStringTokenizerCreate(kCFAllocatorDefault,
  56.                                 str,
  57.                                 CFRangeMake(0, CFStringGetLength(str)),
  58.                                 kCFStringTokenizerUnitSentence,
  59.                                 locale);
  60.     CFRelease(locale);
  61.     NSInteger tokenCount = 0;
  62.     while ((kCFStringTokenizerTokenNormal & CFStringTokenizerAdvanceToNextToken(sentenceTokenizer))) {
  63.         CFRange r = CFStringTokenizerGetCurrentTokenRange(sentenceTokenizer);
  64.         CFStringRef sentence = CFStringCreateWithSubstring(kCFAllocatorDefault, str, r);
  65.         NSLog(@"Sentence %li: %@", (long)++tokenCount, sentence);
  66.         CFRelease(sentence);
  67.     }
  68.     NSLog(@"Total Sentences: %li", tokenCount);
  69.     return tokenCount;
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement