forked from thetron/StringScore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSString+Score.m
138 lines (107 loc) · 5.58 KB
/
NSString+Score.m
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
//
// NSString+Score.m
//
// Created by Nicholas Bruning on 5/12/11.
// Copyright (c) 2011 Involved Pty Ltd. All rights reserved.
//
//score reference: http://jsfiddle.net/JrLVD/
#import "NSString+Score.h"
@implementation NSString (Score)
- (CGFloat) scoreAgainst:(NSString *)otherString{
return [self scoreAgainst:otherString fuzziness:nil];
}
- (CGFloat) scoreAgainst:(NSString *)otherString fuzziness:(NSNumber *)fuzziness{
return [self scoreAgainst:otherString fuzziness:fuzziness options:NSStringScoreOptionNone];
}
- (CGFloat) scoreAgainst:(NSString *)anotherString fuzziness:(NSNumber *)fuzziness options:(NSStringScoreOption)options{
NSMutableCharacterSet *workingInvalidCharacterSet = [NSCharacterSet lowercaseLetterCharacterSet];
[workingInvalidCharacterSet formUnionWithCharacterSet:[NSCharacterSet uppercaseLetterCharacterSet]];
[workingInvalidCharacterSet addCharactersInString:@" "];
NSCharacterSet *invalidCharacterSet = [workingInvalidCharacterSet invertedSet];
NSString *string = [[[self decomposedStringWithCanonicalMapping] componentsSeparatedByCharactersInSet:invalidCharacterSet] componentsJoinedByString:@""];
NSString *otherString = [[[anotherString decomposedStringWithCanonicalMapping] componentsSeparatedByCharactersInSet:invalidCharacterSet] componentsJoinedByString:@""];
// If the string is equal to the abbreviation, perfect match.
if([string isEqualToString:otherString]) return (CGFloat) 1.0f;
//if it's not a perfect match and is empty return 0
if([otherString length] == 0) return (CGFloat) 0.0f;
CGFloat totalCharacterScore = 0;
NSUInteger otherStringLength = [otherString length];
NSUInteger stringLength = [string length];
BOOL startOfStringBonus = NO;
CGFloat otherStringScore;
CGFloat fuzzies = 1;
CGFloat finalScore;
// Walk through abbreviation and add up scores.
for(uint index = 0; index < otherStringLength; index++){
CGFloat characterScore = 0.1;
NSInteger indexInString = NSNotFound;
NSString *chr;
NSRange rangeChrLowercase;
NSRange rangeChrUppercase;
chr = [otherString substringWithRange:NSMakeRange(index, 1)];
//make these next few lines leverage NSNotfound, methinks.
rangeChrLowercase = [string rangeOfString:[chr lowercaseString]];
rangeChrUppercase = [string rangeOfString:[chr uppercaseString]];
if(rangeChrLowercase.location == NSNotFound && rangeChrUppercase.location == NSNotFound){
if(fuzziness){
fuzzies += 1 - [fuzziness floatValue];
} else {
return 0; // this is an error!
}
} else if (rangeChrLowercase.location != NSNotFound && rangeChrUppercase.location != NSNotFound){
indexInString = MIN(rangeChrLowercase.location, rangeChrUppercase.location);
} else if(rangeChrLowercase.location != NSNotFound || rangeChrUppercase.location != NSNotFound){
indexInString = rangeChrLowercase.location != NSNotFound ? rangeChrLowercase.location : rangeChrUppercase.location;
} else {
indexInString = MIN(rangeChrLowercase.location, rangeChrUppercase.location);
}
// Set base score for matching chr
// Same case bonus.
if(indexInString != NSNotFound && [[string substringWithRange:NSMakeRange(indexInString, 1)] isEqualToString:chr]){
characterScore += 0.1;
}
// Consecutive letter & start-of-string bonus
if(indexInString == 0){
// Increase the score when matching first character of the remainder of the string
characterScore += 0.6;
if(index == 0){
// If match is the first character of the string
// & the first character of abbreviation, add a
// start-of-string match bonus.
startOfStringBonus = YES;
}
} else if(indexInString != NSNotFound) {
// Acronym Bonus
// Weighing Logic: Typing the first character of an acronym is as if you
// preceded it with two perfect character matches.
if( [[string substringWithRange:NSMakeRange(indexInString - 1, 1)] isEqualToString:@" "] ){
characterScore += 0.8;
}
}
// Left trim the already matched part of the string
// (forces sequential matching).
if(indexInString != NSNotFound){
string = [string substringFromIndex:indexInString + 1];
}
totalCharacterScore += characterScore;
}
if(NSStringScoreOptionFavorSmallerWords == (options & NSStringScoreOptionFavorSmallerWords)){
// Weigh smaller words higher
return totalCharacterScore / stringLength;
}
otherStringScore = totalCharacterScore / otherStringLength;
if(NSStringScoreOptionReducedLongStringPenalty == (options & NSStringScoreOptionReducedLongStringPenalty)){
// Reduce the penalty for longer words
CGFloat percentageOfMatchedString = otherStringLength / stringLength;
CGFloat wordScore = otherStringScore * percentageOfMatchedString;
finalScore = (wordScore + otherStringScore) / 2;
} else {
finalScore = ((otherStringScore * ((CGFloat)(otherStringLength) / (CGFloat)(stringLength))) + otherStringScore) / 2;
}
finalScore = finalScore / fuzzies;
if(startOfStringBonus && finalScore + 0.15 < 1){
finalScore += 0.15;
}
return finalScore;
}
@end