mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 11:21:29 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16497 72102866-910b-0410-8b05-ffd578937521
708 lines
20 KiB
Objective-C
708 lines
20 KiB
Objective-C
/*
|
|
GNUstep ProjectCenter - http://www.gnustep.org
|
|
|
|
Copyright (C) 2000-2002 Free Software Foundation
|
|
|
|
Author: Philippe C.D. Robert <probert@siggraph.org>
|
|
|
|
This file is part of GNUstep.
|
|
|
|
This application 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 2 of the License, or (at your option) any later version.
|
|
|
|
This application 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#include "PCProjectBuilder.h"
|
|
#include "PCDefines.h"
|
|
#include "PCProject.h"
|
|
#include "PCProject+ComponentHandling.h"
|
|
#include "PCProjectManager.h"
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
#ifndef IMAGE
|
|
#define IMAGE(X) [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:(X)]] autorelease]
|
|
#endif
|
|
|
|
#ifndef NOTIFICATION_CENTER
|
|
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
|
#endif
|
|
|
|
#define DEFAULT_RPM_ROOT @"/usr/src/redhat/"
|
|
|
|
@interface PCProjectBuilder (CreateUI)
|
|
|
|
- (void)_createComponentView;
|
|
- (void) _createOptionsPanel;
|
|
|
|
@end
|
|
|
|
@implementation PCProjectBuilder (CreateUI)
|
|
|
|
- (void) _createComponentView
|
|
{
|
|
NSSplitView *split;
|
|
NSScrollView *scrollView1;
|
|
NSScrollView *scrollView2;
|
|
NSMatrix *matrix;
|
|
NSRect _w_frame;
|
|
NSButtonCell *buttonCell = [[[NSButtonCell alloc] init] autorelease];
|
|
NSBox *box;
|
|
id button;
|
|
id textField;
|
|
|
|
buildPanel = [[NSPanel alloc]
|
|
initWithContentRect: NSMakeRect (0, 300, 480, 322)
|
|
styleMask: (NSTitledWindowMask
|
|
| NSClosableWindowMask
|
|
| NSResizableWindowMask)
|
|
backing: NSBackingStoreRetained
|
|
defer: YES];
|
|
[buildPanel setMinSize: NSMakeSize(400, 300)];
|
|
[buildPanel setTitle: [NSString
|
|
stringWithFormat: @"%@ - Project Build", [currentProject projectName]]];
|
|
|
|
componentView = [[NSBox alloc] initWithFrame: NSMakeRect(8, -1, 464, 322)];
|
|
[componentView setTitlePosition: NSNoTitle];
|
|
[componentView setBorderType: NSNoBorder];
|
|
[componentView setAutoresizingMask: NSViewWidthSizable
|
|
| NSViewHeightSizable];
|
|
[componentView setContentViewMargins: NSMakeSize (0.0, 0.0)];
|
|
[[buildPanel contentView] addSubview: componentView];
|
|
RELEASE (componentView);
|
|
|
|
/*
|
|
*
|
|
*/
|
|
scrollView1 = [[NSScrollView alloc]
|
|
initWithFrame:NSMakeRect (0, 0, 464, 120)];
|
|
|
|
[scrollView1 setHasHorizontalScroller:NO];
|
|
[scrollView1 setHasVerticalScroller:YES];
|
|
[scrollView1 setBorderType: NSBezelBorder];
|
|
[scrollView1 setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
|
|
|
|
errorOutput = [[NSTextView alloc]
|
|
initWithFrame: [[scrollView1 contentView] frame]];
|
|
|
|
[errorOutput setRichText: NO];
|
|
[errorOutput setEditable: NO];
|
|
[errorOutput setSelectable: YES];
|
|
[errorOutput setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
|
|
[errorOutput setBackgroundColor: [NSColor colorWithDeviceRed: 0.85
|
|
green: 0.73
|
|
blue: 0.57
|
|
alpha: 1.0]];
|
|
[errorOutput setHorizontallyResizable: NO];
|
|
[errorOutput setVerticallyResizable: YES];
|
|
[errorOutput setMinSize: NSMakeSize (0, 0)];
|
|
[errorOutput setMaxSize: NSMakeSize (1E7, 1E7)];
|
|
[[errorOutput textContainer] setContainerSize:
|
|
NSMakeSize ([errorOutput frame].size.width, 1e7)];
|
|
|
|
[[errorOutput textContainer] setWidthTracksTextView:YES];
|
|
|
|
[scrollView1 setDocumentView:errorOutput];
|
|
|
|
/*
|
|
*/
|
|
scrollView2 = [[NSScrollView alloc]
|
|
initWithFrame:NSMakeRect (0, 0, 480, 133)];
|
|
|
|
[scrollView2 setHasHorizontalScroller: NO];
|
|
[scrollView2 setHasVerticalScroller: YES];
|
|
[scrollView2 setBorderType: NSBezelBorder];
|
|
[scrollView2 setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
|
|
|
|
logOutput = [[NSTextView alloc]
|
|
initWithFrame:[[scrollView2 contentView] frame]];
|
|
|
|
[logOutput setRichText:NO];
|
|
[logOutput setEditable:NO];
|
|
[logOutput setSelectable:YES];
|
|
[logOutput setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
|
|
[logOutput setBackgroundColor: [NSColor lightGrayColor]];
|
|
[[logOutput textContainer] setWidthTracksTextView:YES];
|
|
[[logOutput textContainer] setHeightTracksTextView:YES];
|
|
[logOutput setHorizontallyResizable: NO];
|
|
[logOutput setVerticallyResizable: YES];
|
|
[logOutput setMinSize: NSMakeSize (0, 0)];
|
|
[logOutput setMaxSize: NSMakeSize (1E7, 1E7)];
|
|
[[logOutput textContainer] setContainerSize:
|
|
NSMakeSize ([logOutput frame].size.width, 1e7)];
|
|
[[logOutput textContainer] setWidthTracksTextView:YES];
|
|
|
|
[scrollView2 setDocumentView:logOutput];
|
|
|
|
split = [[NSSplitView alloc] initWithFrame: NSMakeRect (-1, -1, 464, 253)];
|
|
[split setAutoresizingMask: (NSViewWidthSizable | NSViewHeightSizable)];
|
|
[split addSubview: scrollView1];
|
|
[split addSubview: scrollView2];
|
|
[split adjustSubviews];
|
|
|
|
[componentView addSubview: split];
|
|
|
|
RELEASE (scrollView1);
|
|
RELEASE (scrollView2);
|
|
RELEASE (split);
|
|
|
|
/*
|
|
* 4 build Buttons
|
|
*/
|
|
_w_frame = NSMakeRect(0, 270, 176, 44);
|
|
matrix = [[NSMatrix alloc] initWithFrame: _w_frame
|
|
mode: NSHighlightModeMatrix
|
|
prototype: buttonCell
|
|
numberOfRows: 1
|
|
numberOfColumns: 4];
|
|
[matrix sizeToCells];
|
|
[matrix setSelectionByRect: YES];
|
|
[matrix setAutoresizingMask: (NSViewMaxXMargin | NSViewMinYMargin)];
|
|
[matrix setTarget: self];
|
|
[matrix setAction: @selector (build:)];
|
|
[componentView addSubview: matrix];
|
|
|
|
RELEASE (matrix);
|
|
|
|
button = [matrix cellAtRow: 0 column: 0];
|
|
[button setTag: 0];
|
|
[button setImagePosition: NSImageOnly];
|
|
[button setFont: [NSFont systemFontOfSize: 10.0]];
|
|
[button setImage: IMAGE(@"ProjectCenter_make")];
|
|
[button setButtonType: NSMomentaryPushButton];
|
|
[button setTitle: @"Build"];
|
|
|
|
button = [matrix cellAtRow: 0 column: 1];
|
|
[button setTag: 1];
|
|
[button setImagePosition: NSImageOnly];
|
|
[button setFont: [NSFont systemFontOfSize: 10.0]];
|
|
[button setImage: IMAGE(@"ProjectCenter_clean")];
|
|
[button setButtonType: NSMomentaryPushButton];
|
|
[button setTitle: @"Clean"];
|
|
|
|
button = [matrix cellAtRow: 0 column: 2];
|
|
[button setTag: 2];
|
|
[button setImagePosition: NSImageOnly];
|
|
[button setFont: [NSFont systemFontOfSize: 10.0]];
|
|
[button setImage: IMAGE(@"ProjectCenter_install")];
|
|
[button setButtonType: NSMomentaryPushButton];
|
|
[button setTitle: @"Install"];
|
|
|
|
button = [matrix cellAtRow: 0 column: 3];
|
|
[button setTag: 3];
|
|
[button setImagePosition: NSImageOnly];
|
|
[button setFont: [NSFont systemFontOfSize: 10.0]];
|
|
[button setImage: IMAGE(@"ProjectCenter_prefs")];
|
|
[button setButtonType: NSMomentaryPushButton];
|
|
[button setTitle: @"Options"];
|
|
|
|
/*
|
|
* Target
|
|
*/
|
|
textField = [[NSTextField alloc]
|
|
initWithFrame: NSMakeRect (188, 293, 48, 21)];
|
|
[textField setAlignment: NSRightTextAlignment];
|
|
[textField setBordered: NO];
|
|
[textField setBezeled: NO];
|
|
[textField setEditable: NO];
|
|
[textField setSelectable: NO];
|
|
[textField setDrawsBackground: NO];
|
|
[textField setStringValue:@"Target:"];
|
|
[textField setAutoresizingMask: (NSViewMaxXMargin | NSViewMinYMargin)];
|
|
[componentView addSubview: textField];
|
|
|
|
RELEASE(textField);
|
|
|
|
/*
|
|
* Target message
|
|
*/
|
|
targetField = [[NSTextField alloc]
|
|
initWithFrame:NSMakeRect(239, 293, 220, 21)];
|
|
[targetField setAlignment: NSLeftTextAlignment];
|
|
[targetField setBordered: NO];
|
|
[targetField setEditable: NO];
|
|
[targetField setBezeled: NO];
|
|
[targetField setSelectable: NO];
|
|
[targetField setDrawsBackground: NO];
|
|
[targetField setStringValue: @"Default with args ' '"];
|
|
[targetField setAutoresizingMask: (NSViewMaxXMargin |
|
|
NSViewWidthSizable |
|
|
NSViewMinYMargin)];
|
|
[componentView addSubview:targetField];
|
|
|
|
RELEASE (targetField);
|
|
|
|
/*
|
|
* Status
|
|
*/
|
|
textField = [[NSTextField alloc]
|
|
initWithFrame: NSMakeRect (188, 270, 48, 21)];
|
|
[textField setAlignment: NSRightTextAlignment];
|
|
[textField setBordered: NO];
|
|
[textField setSelectable: NO];
|
|
[textField setEditable: NO];
|
|
[textField setBezeled: NO];
|
|
[textField setDrawsBackground: NO];
|
|
[textField setStringValue:@"Status:"];
|
|
[textField setAutoresizingMask: (NSViewMaxXMargin | NSViewMinYMargin)];
|
|
[componentView addSubview:textField];
|
|
|
|
RELEASE(textField);
|
|
|
|
/*
|
|
* Status message
|
|
*/
|
|
|
|
buildStatusField = [[NSTextField alloc]
|
|
initWithFrame: NSMakeRect (239, 270, 220, 21)];
|
|
[buildStatusField setAlignment: NSLeftTextAlignment];
|
|
[buildStatusField setBordered: NO];
|
|
[buildStatusField setEditable: NO];
|
|
[buildStatusField setSelectable: NO];
|
|
[buildStatusField setBezeled: NO];
|
|
[buildStatusField setDrawsBackground: NO];
|
|
[buildStatusField setStringValue: @"Waiting..."];
|
|
[buildStatusField setAutoresizingMask: (NSViewMaxXMargin |
|
|
NSViewWidthSizable |
|
|
NSViewMinYMargin)];
|
|
[componentView addSubview: buildStatusField];
|
|
|
|
RELEASE(buildStatusField);
|
|
|
|
[componentView sizeToFit];
|
|
}
|
|
|
|
- (void) _createOptionsPanel
|
|
{
|
|
NSView *cView = nil;
|
|
NSTextField *textField = nil;
|
|
|
|
optionsPanel = [[NSPanel alloc]
|
|
initWithContentRect: NSMakeRect (100, 100, 300, 120)
|
|
styleMask: NSTitledWindowMask | NSClosableWindowMask
|
|
backing: NSBackingStoreBuffered
|
|
defer: YES];
|
|
[optionsPanel setDelegate: self];
|
|
[optionsPanel setReleasedWhenClosed: NO];
|
|
[optionsPanel setTitle: @"Build Options"];
|
|
cView = [optionsPanel contentView];
|
|
|
|
// Args
|
|
textField = [[NSTextField alloc] initWithFrame: NSMakeRect (8,91,60,21)];
|
|
[textField setAlignment: NSRightTextAlignment];
|
|
[textField setBordered: NO];
|
|
[textField setEditable: NO];
|
|
[textField setBezeled: NO];
|
|
[textField setDrawsBackground: NO];
|
|
[textField setStringValue: @"Arguments:"];
|
|
[cView addSubview: textField];
|
|
|
|
RELEASE (textField);
|
|
|
|
// Args message
|
|
buildTargetArgsField = [[NSTextField alloc]
|
|
initWithFrame: NSMakeRect (70, 91, 220, 21)];
|
|
[buildTargetArgsField setAlignment: NSLeftTextAlignment];
|
|
[buildTargetArgsField setBordered: NO];
|
|
[buildTargetArgsField setEditable: YES];
|
|
[buildTargetArgsField setBezeled: YES];
|
|
[buildTargetArgsField setDrawsBackground: YES];
|
|
[buildTargetArgsField setStringValue: @""];
|
|
[buildTargetArgsField setDelegate: self];
|
|
[buildTargetArgsField setTarget: self];
|
|
[buildTargetArgsField setAction: @selector (setArguments:)];
|
|
[cView addSubview: buildTargetArgsField];
|
|
|
|
// RELEASE (buildTargetArgsField);
|
|
|
|
// Host
|
|
textField = [[NSTextField alloc] initWithFrame: NSMakeRect (8,67,60,21)];
|
|
[textField setAlignment: NSRightTextAlignment];
|
|
[textField setBordered: NO];
|
|
[textField setEditable: NO];
|
|
[textField setBezeled: NO];
|
|
[textField setDrawsBackground: NO];
|
|
[textField setStringValue: @"Host:"];
|
|
[cView addSubview: textField];
|
|
|
|
RELEASE (textField);
|
|
|
|
// Host message
|
|
buildTargetHostField = [[NSTextField alloc]
|
|
initWithFrame: NSMakeRect (70, 67, 220, 21)];
|
|
[buildTargetHostField setAlignment: NSLeftTextAlignment];
|
|
[buildTargetHostField setBordered: NO];
|
|
[buildTargetHostField setEditable: YES];
|
|
[buildTargetHostField setBezeled: YES];
|
|
[buildTargetHostField setDrawsBackground: YES];
|
|
[buildTargetHostField setStringValue: @"localhost"];
|
|
[buildTargetHostField setDelegate: self];
|
|
[buildTargetHostField setTarget: self];
|
|
[buildTargetHostField setAction: @selector (setHost:)];
|
|
[cView addSubview: buildTargetHostField];
|
|
|
|
// RELEASE (buildTargetArgsField);
|
|
|
|
// Target
|
|
textField = [[NSTextField alloc]
|
|
initWithFrame: NSMakeRect (8, 40, 60, 21)];
|
|
[textField setAlignment: NSRightTextAlignment];
|
|
[textField setBordered: NO];
|
|
[textField setBezeled: NO];
|
|
[textField setEditable: NO];
|
|
[textField setSelectable: NO];
|
|
[textField setDrawsBackground: NO];
|
|
[textField setStringValue: @"Target:"];
|
|
[textField setAutoresizingMask: (NSViewMaxXMargin | NSViewMinYMargin)];
|
|
[cView addSubview: textField];
|
|
|
|
RELEASE(textField);
|
|
|
|
// Target popup
|
|
popup = [[NSPopUpButton alloc]
|
|
initWithFrame: NSMakeRect (70, 40, 220, 21)];
|
|
[popup addItemWithTitle: @"Default"];
|
|
[popup addItemWithTitle: @"Debug"];
|
|
[popup addItemWithTitle: @"Profile"];
|
|
[popup addItemWithTitle: @"Tarball"];
|
|
[popup addItemWithTitle: @"RPM"];
|
|
[popup setTarget: self];
|
|
[popup setAction: @selector (popupChanged:)];
|
|
[popup setAutoresizingMask: (NSViewMaxXMargin | NSViewMinYMargin)];
|
|
[cView addSubview: popup];
|
|
|
|
RELEASE (popup);
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation PCProjectBuilder
|
|
|
|
- (id)initWithProject: (PCProject *)aProject
|
|
{
|
|
NSAssert(aProject, @"No project specified!");
|
|
|
|
if ((self = [super init]))
|
|
{
|
|
makePath = [[aProject projectDict] objectForKey: PCBuildTool];
|
|
|
|
if( [makePath isEqualToString: @""] )
|
|
{
|
|
makePath = [NSString stringWithString: @"/usr/bin/make"];
|
|
}
|
|
|
|
RETAIN(makePath);
|
|
currentProject = aProject;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void) dealloc
|
|
{
|
|
[buildPanel release];
|
|
[makePath release];
|
|
|
|
[super dealloc];
|
|
}
|
|
|
|
- (void) orderFront
|
|
{
|
|
if (!buildPanel)
|
|
{
|
|
[self _createComponentView];
|
|
}
|
|
[buildPanel orderFront: nil];
|
|
}
|
|
|
|
- (NSView *) componentView;
|
|
{
|
|
if (!componentView) {
|
|
[self _createComponentView];
|
|
}
|
|
|
|
return componentView;
|
|
}
|
|
|
|
// TODO: make it a separate thread
|
|
- (void) build: (id)sender
|
|
{
|
|
NSTask *makeTask;
|
|
NSMutableArray *args;
|
|
NSPipe *logPipe;
|
|
NSPipe *errorPipe;
|
|
NSDictionary *optionDict;
|
|
NSString *status;
|
|
SEL postProcess = NULL;
|
|
NSDictionary *env = [[NSProcessInfo processInfo] environment];
|
|
|
|
if( [[currentProject projectWindow] isDocumentEdited] )
|
|
{
|
|
if (NSRunAlertPanel(@"Project Changed!",
|
|
@"Should it be saved first?",
|
|
@"Yes",@"No",nil) == NSAlertDefaultReturn)
|
|
{
|
|
[currentProject save];
|
|
}
|
|
}
|
|
|
|
logPipe = [NSPipe pipe];
|
|
readHandle = [[logPipe fileHandleForReading] retain];
|
|
|
|
errorPipe = [NSPipe pipe];
|
|
errorReadHandle = [[errorPipe fileHandleForReading] retain];
|
|
|
|
makeTask = [[NSTask alloc] init];
|
|
|
|
optionDict = [currentProject buildOptions];
|
|
args = [NSMutableArray array];
|
|
|
|
switch ([[sender selectedCell] tag])
|
|
{
|
|
case 0:
|
|
status = [NSString stringWithString:@"Building..."];
|
|
switch( [popup indexOfSelectedItem] )
|
|
{
|
|
case 0:
|
|
break;
|
|
|
|
case 1:
|
|
[args addObject: @"debug=yes"];
|
|
break;
|
|
|
|
case 2:
|
|
[args addObject: @"profile=yes"];
|
|
[args addObject: @"static=yes"];
|
|
break;
|
|
|
|
case 3:
|
|
[args addObject:@"dist"];
|
|
break;
|
|
|
|
case 4:
|
|
[args addObject:@"rpm"];
|
|
postProcess = @selector(copyPackageTo:);
|
|
|
|
if ( [currentProject writeSpecFile] == NO )
|
|
{
|
|
return;
|
|
}
|
|
|
|
if( [env objectForKey:@"RPM_TOPDIR"] == nil )
|
|
{
|
|
NSRunAlertPanel(@"Attention!",
|
|
@"First set the environment variable 'RPM_TOPDIR'!",
|
|
@"OK",nil,nil);
|
|
return;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
break;
|
|
case 1:
|
|
if (NSRunAlertPanel(@"Clean Project?",
|
|
@"Do you really want to clean project '%@'?",
|
|
@"Yes",
|
|
@"No",
|
|
nil,
|
|
[currentProject projectName])
|
|
== NSAlertAlternateReturn)
|
|
{
|
|
return;
|
|
}
|
|
status = [NSString stringWithString:@"Cleaning..."];
|
|
[args addObject:@"distclean"];
|
|
break;
|
|
case 2:
|
|
status = [NSString stringWithString:@"Installing..."];
|
|
[args addObject:@"install"];
|
|
break;
|
|
case 3:
|
|
if (!optionsPanel)
|
|
{
|
|
[self _createOptionsPanel];
|
|
}
|
|
[optionsPanel orderFront: nil];
|
|
return;
|
|
}
|
|
|
|
[buildStatusField setStringValue:status];
|
|
|
|
[NOTIFICATION_CENTER addObserver: self
|
|
selector: @selector (logStdOut:)
|
|
name: NSFileHandleDataAvailableNotification
|
|
object: readHandle];
|
|
|
|
[NOTIFICATION_CENTER addObserver: self
|
|
selector: @selector (logErrOut:)
|
|
name: NSFileHandleDataAvailableNotification
|
|
object: errorReadHandle];
|
|
|
|
[NOTIFICATION_CENTER addObserver: self
|
|
selector: @selector (buildDidTerminate:)
|
|
name: NSTaskDidTerminateNotification
|
|
object: makeTask];
|
|
|
|
[makeTask setArguments: args];
|
|
[makeTask setCurrentDirectoryPath: [currentProject projectPath]];
|
|
[makeTask setLaunchPath: makePath];
|
|
|
|
[makeTask setStandardOutput: logPipe];
|
|
[makeTask setStandardError: errorPipe];
|
|
|
|
[logOutput setString: @""];
|
|
[readHandle waitForDataInBackgroundAndNotify];
|
|
|
|
[errorOutput setString: @""];
|
|
[errorReadHandle waitForDataInBackgroundAndNotify];
|
|
|
|
[makeTask launch];
|
|
[makeTask waitUntilExit];
|
|
|
|
if (postProcess)
|
|
{
|
|
[self performSelector: postProcess];
|
|
postProcess = NULL;
|
|
}
|
|
|
|
[buildStatusField setStringValue:@"Waiting..."];
|
|
|
|
[NOTIFICATION_CENTER removeObserver: self
|
|
name: NSFileHandleDataAvailableNotification
|
|
object: readHandle];
|
|
|
|
[NOTIFICATION_CENTER removeObserver: self
|
|
name: NSFileHandleDataAvailableNotification
|
|
object: errorReadHandle];
|
|
|
|
[NOTIFICATION_CENTER removeObserver: self
|
|
name: NSTaskDidTerminateNotification
|
|
object: makeTask];
|
|
|
|
RELEASE (readHandle);
|
|
RELEASE (errorReadHandle);
|
|
AUTORELEASE (makeTask);
|
|
}
|
|
|
|
- (void)popupChanged:(id)sender
|
|
{
|
|
NSString *target = [targetField stringValue];
|
|
|
|
target = [NSString stringWithFormat:
|
|
@"%@ with args ' %@ '",
|
|
[popup titleOfSelectedItem],
|
|
[buildTargetArgsField stringValue]];
|
|
|
|
[targetField setStringValue: target];
|
|
}
|
|
|
|
- (void)logStdOut: (NSNotification *)aNotif
|
|
{
|
|
NSData *data;
|
|
|
|
if ((data = [readHandle availableData]))
|
|
{
|
|
[self logData: data error: NO];
|
|
}
|
|
|
|
[readHandle waitForDataInBackgroundAndNotifyForModes: nil];
|
|
}
|
|
|
|
- (void)logErrOut: (NSNotification *)aNotif
|
|
{
|
|
NSData *data;
|
|
|
|
if ((data = [errorReadHandle availableData]))
|
|
{
|
|
[self logData:data error:YES];
|
|
}
|
|
|
|
[errorReadHandle waitForDataInBackgroundAndNotifyForModes:nil];
|
|
}
|
|
|
|
- (void)buildDidTerminate:(NSNotification *)aNotif
|
|
{
|
|
int status = [[aNotif object] terminationStatus];
|
|
|
|
if (status == 0) {
|
|
[self logString:@"*** Build Succeeded!\n" error:NO newLine:YES];
|
|
}
|
|
else {
|
|
[self logString:@"*** Build Failed!" error:YES newLine:YES];
|
|
[[logOutput window] orderFront:self];
|
|
}
|
|
}
|
|
|
|
- (void)copyPackageTo:(NSString *)path
|
|
{
|
|
NSString *source = nil;
|
|
NSString *dest = nil;
|
|
NSString *rpm = nil;
|
|
NSString *srcrpm = nil;
|
|
|
|
// Copy the rpm files to the source directory
|
|
if (source)
|
|
{
|
|
[[NSFileManager defaultManager] copyPath:srcrpm toPath:dest handler:nil];
|
|
[[NSFileManager defaultManager] copyPath:rpm toPath:dest handler:nil];
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation PCProjectBuilder (BuildLogging)
|
|
|
|
- (void)logString: (NSString *)string error: (BOOL)yn
|
|
{
|
|
[self logString: string error: yn newLine: YES];
|
|
}
|
|
|
|
- (void)logString:(NSString *)str error:(BOOL)yn newLine:(BOOL)newLine
|
|
{
|
|
NSTextView *out = (yn) ? errorOutput : logOutput;
|
|
|
|
[out replaceCharactersInRange:
|
|
NSMakeRange ([[out string] length],0) withString: str];
|
|
|
|
if (newLine)
|
|
{
|
|
[out replaceCharactersInRange:
|
|
NSMakeRange ([[out string] length], 0) withString: @"\n"];
|
|
}
|
|
else
|
|
{
|
|
[out replaceCharactersInRange:
|
|
NSMakeRange ([[out string] length], 0) withString: @" "];
|
|
}
|
|
|
|
[out scrollRangeToVisible: NSMakeRange([[out string] length], 0)];
|
|
}
|
|
|
|
- (void)logData: (NSData *)data error: (BOOL)yn
|
|
{
|
|
NSString *s = [[NSString alloc] initWithData: data
|
|
encoding: [NSString defaultCStringEncoding]];
|
|
|
|
[self logString: s error: yn newLine: NO];
|
|
[s autorelease];
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
|