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/branches/UNSTABLE_0_4@19257 72102866-910b-0410-8b05-ffd578937521
401 lines
9.4 KiB
Objective-C
401 lines
9.4 KiB
Objective-C
/*
|
|
GNUstep ProjectCenter - http://www.gnustep.org
|
|
|
|
Copyright (C) 2001 Free Software Foundation
|
|
|
|
Author: Philippe C.D. Robert <phr@3dkit.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.
|
|
*/
|
|
|
|
#include "PCToolProject.h"
|
|
#include "PCToolProj.h"
|
|
|
|
#include <ProjectCenter/PCMakefileFactory.h>
|
|
|
|
@implementation PCToolProject
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Init and free
|
|
//----------------------------------------------------------------------------
|
|
|
|
- (id)init
|
|
{
|
|
if ((self = [super init]))
|
|
{
|
|
rootKeys = [[NSArray arrayWithObjects:
|
|
PCClasses,
|
|
PCHeaders,
|
|
PCOtherSources,
|
|
PCImages,
|
|
PCOtherResources,
|
|
PCSubprojects,
|
|
PCDocuFiles,
|
|
PCSupportingFiles,
|
|
PCLibraries,
|
|
PCNonProject,
|
|
nil] retain];
|
|
|
|
rootCategories = [[NSArray arrayWithObjects:
|
|
@"Classes",
|
|
@"Headers",
|
|
@"Other Sources",
|
|
@"Images",
|
|
@"Other Resources",
|
|
@"Subprojects",
|
|
@"Documentation",
|
|
@"Supporting Files",
|
|
@"Libraries",
|
|
@"Non Project Files",
|
|
nil] retain];
|
|
|
|
rootEntries = [[NSDictionary
|
|
dictionaryWithObjects:rootCategories forKeys:rootKeys] retain];
|
|
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)assignInfoDict:(NSMutableDictionary *)dict
|
|
{
|
|
infoDict = [dict mutableCopy];
|
|
}
|
|
|
|
- (void)loadInfoFileAtPath:(NSString *)path
|
|
{
|
|
NSString *infoFile = nil;
|
|
|
|
infoFile = [path stringByAppendingPathComponent:@"Info-gnustep.plist"];
|
|
if ([[NSFileManager defaultManager] fileExistsAtPath:infoFile])
|
|
{
|
|
infoDict = [[NSMutableDictionary alloc] initWithContentsOfFile:infoFile];
|
|
}
|
|
else
|
|
{
|
|
infoDict = [[NSMutableDictionary alloc] init];
|
|
}
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
[rootCategories release];
|
|
[rootKeys release];
|
|
[rootEntries release];
|
|
|
|
[super dealloc];
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Project
|
|
//----------------------------------------------------------------------------
|
|
|
|
- (Class)builderClass
|
|
{
|
|
return [PCToolProj class];
|
|
}
|
|
|
|
- (NSString *)projectDescription
|
|
{
|
|
return @"Project that handles GNUstep/ObjC based tools.";
|
|
}
|
|
|
|
- (BOOL)isExecutable
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (NSString *)execToolName
|
|
{
|
|
return [NSString stringWithString:@"opentool"];
|
|
}
|
|
|
|
- (NSArray *)fileTypesForCategoryKey:(NSString *)category
|
|
{
|
|
if ([category isEqualToString:PCClasses])
|
|
{
|
|
return [NSArray arrayWithObjects:@"m",nil];
|
|
}
|
|
else if ([category isEqualToString:PCHeaders])
|
|
{
|
|
return [NSArray arrayWithObjects:@"h",nil];
|
|
}
|
|
else if ([category isEqualToString:PCOtherSources])
|
|
{
|
|
return [NSArray arrayWithObjects:@"c",@"C",@"m",nil];
|
|
}
|
|
else if ([category isEqualToString:PCImages])
|
|
{
|
|
return [NSImage imageFileTypes];
|
|
}
|
|
else if ([category isEqualToString:PCSubprojects])
|
|
{
|
|
return [NSArray arrayWithObjects:@"subproj",nil];
|
|
}
|
|
else if ([category isEqualToString:PCLibraries])
|
|
{
|
|
return [NSArray arrayWithObjects:@"so",@"a",@"lib",nil];
|
|
}
|
|
|
|
return nil;
|
|
}
|
|
|
|
- (NSString *)dirForCategory:(NSString *)category
|
|
{
|
|
if ([category isEqualToString:PCImages])
|
|
{
|
|
return [projectPath stringByAppendingPathComponent:@"Images"];
|
|
}
|
|
else if ([category isEqualToString:PCDocuFiles])
|
|
{
|
|
return [projectPath stringByAppendingPathComponent:@"Documentation"];
|
|
}
|
|
|
|
return projectPath;
|
|
}
|
|
|
|
- (NSArray *)buildTargets
|
|
{
|
|
return [NSArray arrayWithObjects:
|
|
@"tool", @"debug", @"profile", @"dist", nil];
|
|
}
|
|
|
|
- (NSArray *)sourceFileKeys
|
|
{
|
|
return [NSArray arrayWithObjects:PCClasses,PCOtherSources,nil];
|
|
}
|
|
|
|
- (NSArray *)resourceFileKeys
|
|
{
|
|
return [NSArray arrayWithObjects:PCOtherResources,PCImages,nil];
|
|
}
|
|
|
|
- (NSArray *)otherKeys
|
|
{
|
|
return [NSArray arrayWithObjects:PCDocuFiles,PCSupportingFiles,nil];
|
|
}
|
|
|
|
- (NSArray *)allowableSubprojectTypes
|
|
{
|
|
return [NSArray arrayWithObjects:
|
|
@"Bundle", @"Library", nil];
|
|
}
|
|
|
|
- (NSArray *)defaultLocalizableKeys
|
|
{
|
|
return [NSArray arrayWithObjects:PCOtherResources,PCDocuFiles,nil];
|
|
}
|
|
|
|
- (NSArray *)localizableKeys
|
|
{
|
|
return [NSArray arrayWithObjects:PCOtherResources,PCDocuFiles,nil];
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation PCToolProject (GeneratedFiles)
|
|
|
|
- (void)writeInfoEntry:(NSString *)name forKey:(NSString *)key
|
|
{
|
|
id entry = [projectDict objectForKey:key];
|
|
|
|
if (entry == nil)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if ([entry isKindOfClass:[NSString class]] && [entry isEqualToString:@""])
|
|
{
|
|
[infoDict removeObjectForKey:name];
|
|
return;
|
|
}
|
|
|
|
if ([entry isKindOfClass:[NSArray class]] && [entry count] <= 0)
|
|
{
|
|
[infoDict removeObjectForKey:name];
|
|
return;
|
|
}
|
|
|
|
[infoDict setObject:entry forKey:name];
|
|
}
|
|
|
|
- (BOOL)writeInfoFile
|
|
{
|
|
NSString *infoFile = nil;
|
|
|
|
[self writeInfoEntry:@"ToolName" forKey:PCProjectName];
|
|
[self writeInfoEntry:@"ToolDescription" forKey:PCDescription];
|
|
[self writeInfoEntry:@"ToolIcon" forKey:PCToolIcon];
|
|
[self writeInfoEntry:@"ToolRelease" forKey:PCRelease];
|
|
[self writeInfoEntry:@"FullVersionID" forKey:PCVersion];
|
|
[self writeInfoEntry:@"Authors" forKey:PCAuthors];
|
|
[self writeInfoEntry:@"URL" forKey:PCURL];
|
|
[self writeInfoEntry:@"Copyright" forKey:PCCopyright];
|
|
[self writeInfoEntry:@"CopyrightDescription" forKey:PCCopyrightDescription];
|
|
|
|
infoFile = [projectPath stringByAppendingPathComponent:@"Info-gnustep.plist"];
|
|
|
|
return [infoDict writeToFile:infoFile atomically:YES];
|
|
}
|
|
|
|
|
|
- (BOOL)writeMakefile
|
|
{
|
|
PCMakefileFactory *mf = [PCMakefileFactory sharedFactory];
|
|
int i,j;
|
|
NSString *mfl = nil;
|
|
NSData *mfd = nil;
|
|
|
|
// Info-gnustep.plist
|
|
[self writeInfoFile];
|
|
|
|
// Save the GNUmakefile backup
|
|
[super writeMakefile];
|
|
|
|
// Save GNUmakefile.preamble
|
|
[mf createPreambleForProject:self];
|
|
|
|
// Create the new file
|
|
[mf createMakefileForProject:projectName];
|
|
|
|
// Head
|
|
[self appendHead:mf];
|
|
|
|
// Libraries
|
|
[self appendLibraries:mf];
|
|
|
|
// Subprojects
|
|
if ([[projectDict objectForKey:PCSubprojects] count] > 0)
|
|
{
|
|
[mf appendSubprojects:[projectDict objectForKey:PCSubprojects]];
|
|
}
|
|
|
|
// Resources
|
|
[mf appendResources];
|
|
for (i = 0; i < [[self resourceFileKeys] count]; i++)
|
|
{
|
|
NSString *k = [[self resourceFileKeys] objectAtIndex:i];
|
|
NSMutableArray *resources = [[projectDict objectForKey:k] mutableCopy];
|
|
|
|
if ([k isEqualToString:PCImages])
|
|
{
|
|
for (j=0; j<[resources count]; j++)
|
|
{
|
|
[resources replaceObjectAtIndex:j
|
|
withObject:[NSString stringWithFormat:@"Images/%@",
|
|
[resources objectAtIndex:j]]];
|
|
}
|
|
}
|
|
|
|
[mf appendResourceItems:resources];
|
|
[resources release];
|
|
}
|
|
|
|
[mf appendHeaders:[projectDict objectForKey:PCHeaders]];
|
|
[mf appendClasses:[projectDict objectForKey:PCClasses]];
|
|
[mf appendOtherSources:[projectDict objectForKey:PCOtherSources]];
|
|
|
|
// Tail
|
|
[self appendTail:mf];
|
|
|
|
// Write the new file to disc!
|
|
mfl = [projectPath stringByAppendingPathComponent:@"GNUmakefile"];
|
|
if ((mfd = [mf encodedMakefile]))
|
|
{
|
|
if ([mfd writeToFile:mfl atomically:YES])
|
|
{
|
|
return YES;
|
|
}
|
|
}
|
|
|
|
return NO;
|
|
}
|
|
|
|
- (void)appendHead:(PCMakefileFactory *)mff
|
|
{
|
|
[mff appendString:@"\n#\n# Tool\n#\n"];
|
|
[mff appendString:[NSString stringWithFormat:@"PACKAGE_NAME = %@\n",
|
|
projectName]];
|
|
[mff appendString:[NSString stringWithFormat:@"TOOL_NAME = %@\n",
|
|
projectName]];
|
|
[mff appendString:[NSString stringWithFormat:@"%@_TOOL_ICON = %@\n",
|
|
projectName, [projectDict objectForKey:PCToolIcon]]];
|
|
}
|
|
|
|
- (void)appendLibraries:(PCMakefileFactory *)mff
|
|
{
|
|
NSArray *libs = [projectDict objectForKey:PCLibraries];
|
|
|
|
[mff appendString:@"\n#\n# Libraries\n#\n"];
|
|
|
|
[mff
|
|
appendString:[NSString stringWithFormat:@"%@_TOOL_LIBS += ",projectName]];
|
|
|
|
if (libs && [libs count])
|
|
{
|
|
NSString *tmp;
|
|
NSEnumerator *enumerator = [libs objectEnumerator];
|
|
|
|
while ((tmp = [enumerator nextObject]))
|
|
{
|
|
if (![tmp isEqualToString:@"gnustep-base"] &&
|
|
![tmp isEqualToString:@"gnustep-gui"])
|
|
{
|
|
[mff appendString:[NSString stringWithFormat:@"-l%@ ",tmp]];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void)appendTail:(PCMakefileFactory *)mff
|
|
{
|
|
[mff appendString:@"\n\n#\n# Makefiles\n#\n"];
|
|
[mff appendString:@"-include GNUmakefile.preamble\n"];
|
|
[mff appendString:@"include $(GNUSTEP_MAKEFILES)/aggregate.make\n"];
|
|
[mff appendString:@"include $(GNUSTEP_MAKEFILES)/tool.make\n"];
|
|
[mff appendString:@"-include GNUmakefile.postamble\n"];
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation PCToolProject (Inspector)
|
|
|
|
- (NSView *)projectAttributesView
|
|
{
|
|
if (projectAttributesView == nil)
|
|
{
|
|
if ([NSBundle loadNibNamed:@"Inspector" owner:self] == NO)
|
|
{
|
|
NSLog(@"PCLibraryProject: error loading Inspector NIB!");
|
|
return nil;
|
|
}
|
|
[projectAttributesView retain];
|
|
[self updateInspectorValues:nil];
|
|
}
|
|
|
|
return projectAttributesView;
|
|
}
|
|
|
|
- (void)updateInspectorValues:(NSNotification *)aNotif
|
|
{
|
|
[projectTypeField setStringValue:@"Tool"];
|
|
[projectNameField setStringValue:projectName];
|
|
[projectLanguageField setStringValue:[projectDict objectForKey:@"LANGUAGE"]];
|
|
}
|
|
|
|
@end
|
|
|