Skip to content

Instantly share code, notes, and snippets.

@primalmotion
Created November 3, 2011 22:39
Show Gist options
  • Save primalmotion/1338132 to your computer and use it in GitHub Desktop.
Save primalmotion/1338132 to your computer and use it in GitHub Desktop.
/*
* This file is a part of program xcodecapp-cocoa
* Copyright (C) 2011 Antoine Mercadal ([email protected])
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#import "FSEventCallback.h"
/*!
This is the FSEvent callback
*/
void fsevents_callback(ConstFSEventStreamRef streamRef,
void *userData,
size_t numEvents,
void *eventPaths,
const FSEventStreamEventFlags eventFlags[],
const FSEventStreamEventId eventIds[])
{
TNXCodeCapp *xcc = (TNXCodeCapp *)userData;
size_t i;
for(i = 0; i < numEvents; i++)
{
NSString *path = [(NSArray *)eventPaths objectAtIndex:i];
// kFSEventStreamEventFlagItemRemoved = 0x00000200
if (eventFlags[i] & 0x00000200)
{
[xcc handleFileRemoval:path];
}
else
{
[xcc handleFileModification:path notify:YES];
}
[xcc updateLastEventId:eventIds[i]];
}
}
LINE 178;
- (void)handleFileModification:(NSString*)fullPath notify:(BOOL)shouldNotify
{
if ([self isPathMatchingIgnoredPaths:fullPath] || ![fm fileExistsAtPath:fullPath])
return;
// 10.6 support
BOOL isDir;
[fm fileExistsAtPath:fullPath isDirectory:&isDir]
if (isDir)
{
NSLog(@"We may make it!");
}
NSLog(@"Starting to parse file modification %@", fullPath);
NSArray *arguments = nil;
NSString *successMsg = nil;
NSString *response = nil;
NSString *errorTitle = nil;
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment