-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathGTIndexEntry.m
143 lines (112 loc) · 4.01 KB
/
GTIndexEntry.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
139
140
141
142
143
//
// GTIndexEntry.m
// ObjectiveGitFramework
//
// Created by Timothy Clem on 2/28/11.
//
// The MIT License
//
// Copyright (c) 2011 Tim Clem
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
#import "GTIndexEntry.h"
#import "NSError+Git.h"
#import "NSString+Git.h"
#import "GTOID.h"
#import "GTRepository.h"
#import "GTIndex.h"
#import "git2.h"
@interface GTIndexEntry ()
@property (nonatomic, assign, readonly) const git_index_entry *git_index_entry;
@end
@implementation GTIndexEntry
#pragma mark NSObject
- (NSString *)description {
return [NSString stringWithFormat:@"<%@: %p> path: %@", self.class, self, self.path];
}
#pragma mark Lifecycle
- (instancetype)init {
NSAssert(NO, @"Call to an unavailable initializer.");
return nil;
}
- (instancetype)initWithGitIndexEntry:(const git_index_entry *)entry index:(GTIndex *)index error:(NSError **)error {
NSParameterAssert(entry != NULL);
self = [super init];
if (self == nil) return nil;
_git_index_entry = entry;
_index = index;
return self;
}
- (instancetype)initWithGitIndexEntry:(const git_index_entry *)entry {
return [self initWithGitIndexEntry:entry index:nil error:NULL];
}
#pragma mark Properties
- (NSString *)path {
NSString *path = @(self.git_index_entry->path);
NSAssert(path, @"path is nil");
return path;
}
- (int)flags {
return (self.git_index_entry->flags & 0xFFFF) | (self.git_index_entry->flags_extended << 16);
}
- (BOOL)isStaged {
return (self.git_index_entry->flags & GIT_IDXENTRY_STAGEMASK) >> GIT_IDXENTRY_STAGESHIFT;
}
- (GTIndexEntryStatus)status {
if ((self.flags & (GIT_IDXENTRY_UPDATE << 16)) != 0) {
return GTIndexEntryStatusUpdated;
} else if ((self.flags & (GIT_IDXENTRY_UPTODATE << 16)) != 0) {
return GTIndexEntryStatusUpToDate;
} else if ((self.flags & (GIT_IDXENTRY_CONFLICTED << 16)) != 0) {
return GTIndexEntryStatusConflicted;
} else if ((self.flags & (GIT_IDXENTRY_ADDED << 16)) != 0) {
return GTIndexEntryStatusAdded;
} else if ((self.flags & (GIT_IDXENTRY_REMOVE << 16)) != 0) {
return GTIndexEntryStatusRemoved;
}
return GTIndexEntryStatusUpToDate;
}
- (GTOID *)OID {
return [GTOID oidWithGitOid:&self.git_index_entry->id];
}
#pragma mark API
- (GTRepository *)repository {
return self.index.repository;
}
- (GTObject *)GTObject:(NSError **)error {
return [GTObject objectWithIndexEntry:self error:error];
}
@end
@implementation GTObject (GTIndexEntry)
+ (instancetype)objectWithIndexEntry:(GTIndexEntry *)indexEntry error:(NSError **)error {
return [[self alloc] initWithIndexEntry:indexEntry error:error];
}
- (instancetype)initWithIndexEntry:(GTIndexEntry *)indexEntry error:(NSError **)error {
git_object *obj;
int gitError = git_object_lookup(&obj, indexEntry.repository.git_repository, indexEntry.OID.git_oid, (git_otype)GTObjectTypeAny);
if (gitError < GIT_OK) {
if (error != NULL) {
*error = [NSError git_errorFor:gitError description:@"Failed to get object for index entry."];
}
return nil;
}
return [self initWithObj:obj inRepository:indexEntry.repository];
}
@end