mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
81 lines
1.9 KiB
Objective-C
81 lines
1.9 KiB
Objective-C
//
|
|
// PBGitRepository.m
|
|
// GitTest
|
|
//
|
|
// Created by Pieter de Bie on 13-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "PBGitRepository.h"
|
|
#import "PBGitCommit.h"
|
|
|
|
#import "NSFileHandleExt.h"
|
|
|
|
@implementation PBGitRepository
|
|
|
|
static NSString* gitPath = @"/opt/pieter/bin/git";
|
|
|
|
+ (PBGitRepository*) repositoryWithPath:(NSString*) path
|
|
{
|
|
PBGitRepository* repo = [[PBGitRepository alloc] init];
|
|
repo.path = path;
|
|
return repo;
|
|
}
|
|
|
|
- (void) addCommit: (id) obj
|
|
{
|
|
self.commits = [self.commits arrayByAddingObject:obj];
|
|
}
|
|
|
|
- (void) setCommits:(NSArray*) obj
|
|
{
|
|
commits = obj;
|
|
}
|
|
|
|
- (NSArray*) commits
|
|
{
|
|
if (commits != nil)
|
|
return commits;
|
|
|
|
NSFileHandle* handle = [self handleForCommand:@"log --pretty=format:%H%x01%s%x01%an HEAD"];
|
|
NSMutableArray * newArray = [NSMutableArray array];
|
|
NSString* currentLine = [handle readLine];
|
|
|
|
while (currentLine.length > 0) {
|
|
NSArray* components = [currentLine componentsSeparatedByString:@"\01"];
|
|
PBGitCommit* newCommit = [[PBGitCommit alloc] initWithRepository: self andSha: [components objectAtIndex:0]];
|
|
newCommit.subject = [components objectAtIndex:1];
|
|
newCommit.author = [components objectAtIndex:2];
|
|
[newArray addObject: newCommit];
|
|
currentLine = [handle readLine];
|
|
}
|
|
|
|
commits = newArray;
|
|
return commits;
|
|
}
|
|
|
|
- (NSFileHandle*) handleForCommand:(NSString *)cmd
|
|
{
|
|
NSString* gitDirArg = [@"--git-dir=" stringByAppendingString:path];
|
|
NSArray* arguments = [NSArray arrayWithObject:gitDirArg];
|
|
arguments = [arguments arrayByAddingObjectsFromArray: [cmd componentsSeparatedByString:@" "]];
|
|
|
|
NSTask* task = [[NSTask alloc] init];
|
|
task.launchPath = gitPath;
|
|
task.arguments = arguments;
|
|
|
|
NSPipe* pipe = [NSPipe pipe];
|
|
task.standardOutput = pipe;
|
|
|
|
NSFileHandle* handle = [NSFileHandle fileHandleWithStandardOutput];
|
|
handle = [pipe fileHandleForReading];
|
|
|
|
[task launch];
|
|
|
|
return handle;
|
|
}
|
|
|
|
@synthesize path;
|
|
|
|
@end
|