forked from facebookarchive/AsyncDisplayKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTextInput.mm
150 lines (116 loc) · 4.2 KB
/
ASTextInput.mm
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
//
// ASTextInput.mm
// Texture
//
// Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
// Changes after 4/13/2017 are: Copyright (c) Pinterest, Inc. All rights reserved.
// Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
//
#import <AsyncDisplayKit/ASTextInput.h>
#import <AsyncDisplayKit/ASTextUtilities.h>
@implementation ASTextPosition
+ (instancetype)positionWithOffset:(NSInteger)offset NS_RETURNS_RETAINED {
return [self positionWithOffset:offset affinity:ASTextAffinityForward];
}
+ (instancetype)positionWithOffset:(NSInteger)offset affinity:(ASTextAffinity)affinity NS_RETURNS_RETAINED {
ASTextPosition *p = [self new];
p->_offset = offset;
p->_affinity = affinity;
return p;
}
- (instancetype)copyWithZone:(NSZone *)zone {
return [self.class positionWithOffset:_offset affinity:_affinity];
}
- (NSString *)description {
return [NSString stringWithFormat:@"<%@: %p> (%@%@)", self.class, self, @(_offset), _affinity == ASTextAffinityForward ? @"F":@"B"];
}
- (NSUInteger)hash {
return _offset * 2 + (_affinity == ASTextAffinityForward ? 1 : 0);
}
- (BOOL)isEqual:(ASTextPosition *)object {
if (!object) return NO;
return _offset == object.offset && _affinity == object.affinity;
}
- (NSComparisonResult)compare:(ASTextPosition *)otherPosition {
if (!otherPosition) return NSOrderedAscending;
if (_offset < otherPosition.offset) return NSOrderedAscending;
if (_offset > otherPosition.offset) return NSOrderedDescending;
if (_affinity == ASTextAffinityBackward && otherPosition.affinity == ASTextAffinityForward) return NSOrderedAscending;
if (_affinity == ASTextAffinityForward && otherPosition.affinity == ASTextAffinityBackward) return NSOrderedDescending;
return NSOrderedSame;
}
@end
@implementation ASTextRange {
ASTextPosition *_start;
ASTextPosition *_end;
}
- (instancetype)init {
self = [super init];
if (!self) return nil;
_start = [ASTextPosition positionWithOffset:0];
_end = [ASTextPosition positionWithOffset:0];
return self;
}
- (ASTextPosition *)start {
return _start;
}
- (ASTextPosition *)end {
return _end;
}
- (BOOL)isEmpty {
return _start.offset == _end.offset;
}
- (NSRange)asRange {
return NSMakeRange(_start.offset, _end.offset - _start.offset);
}
+ (instancetype)rangeWithRange:(NSRange)range NS_RETURNS_RETAINED {
return [self rangeWithRange:range affinity:ASTextAffinityForward];
}
+ (instancetype)rangeWithRange:(NSRange)range affinity:(ASTextAffinity)affinity NS_RETURNS_RETAINED {
ASTextPosition *start = [ASTextPosition positionWithOffset:range.location affinity:affinity];
ASTextPosition *end = [ASTextPosition positionWithOffset:range.location + range.length affinity:affinity];
return [self rangeWithStart:start end:end];
}
+ (instancetype)rangeWithStart:(ASTextPosition *)start end:(ASTextPosition *)end NS_RETURNS_RETAINED {
if (!start || !end) return nil;
if ([start compare:end] == NSOrderedDescending) {
ASTEXT_SWAP(start, end);
}
ASTextRange *range = [ASTextRange new];
range->_start = start;
range->_end = end;
return range;
}
+ (instancetype)defaultRange NS_RETURNS_RETAINED {
return [self new];
}
- (instancetype)copyWithZone:(NSZone *)zone {
return [self.class rangeWithStart:_start end:_end];
}
- (NSString *)description {
return [NSString stringWithFormat:@"<%@: %p> (%@, %@)%@", self.class, self, @(_start.offset), @(_end.offset - _start.offset), _end.affinity == ASTextAffinityForward ? @"F":@"B"];
}
- (NSUInteger)hash {
return (sizeof(NSUInteger) == 8 ? OSSwapInt64(_start.hash) : OSSwapInt32(_start.hash)) + _end.hash;
}
- (BOOL)isEqual:(ASTextRange *)object {
if (!object) return NO;
return [_start isEqual:object.start] && [_end isEqual:object.end];
}
@end
@implementation ASTextSelectionRect
@synthesize rect = _rect;
@synthesize writingDirection = _writingDirection;
@synthesize containsStart = _containsStart;
@synthesize containsEnd = _containsEnd;
@synthesize isVertical = _isVertical;
- (id)copyWithZone:(NSZone *)zone {
ASTextSelectionRect *one = [self.class new];
one.rect = _rect;
one.writingDirection = _writingDirection;
one.containsStart = _containsStart;
one.containsEnd = _containsEnd;
one.isVertical = _isVertical;
return one;
}
@end