apps-projectcenter/Modules/Projects/ResourceSet/PCResourceSetProject.m
2025-01-26 19:09:57 +01:00

232 lines
6.3 KiB
Objective-C

/*
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
Copyright (C) 2004-2017 Free Software Foundation
Authors: Serg Stoyan
Riccardo Mottola
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., 31 Milk Street #960789 Boston, MA 02196 USA.
*/
#import <ProjectCenter/PCMakefileFactory.h>
#import "PCResourceSetProject.h"
@implementation PCResourceSetProject
//----------------------------------------------------------------------------
// Init and free
//----------------------------------------------------------------------------
- (id)init
{
if ((self = [super init]))
{
rootKeys = [[NSArray arrayWithObjects:
PCOtherResources,
PCSupportingFiles,
PCNonProject,
nil] retain];
rootCategories = [[NSArray arrayWithObjects:
@"Other Resources",
@"Supporting Files",
@"Non Project Files",
nil] retain];
rootEntries = [[NSDictionary
dictionaryWithObjects:rootCategories forKeys:rootKeys] retain];
}
return self;
}
- (void)dealloc
{
[rootCategories release];
[rootKeys release];
[rootEntries release];
if (projectAttributesView) [projectAttributesView release];
[super dealloc];
}
//----------------------------------------------------------------------------
// --- PCProject overridings
//----------------------------------------------------------------------------
- (Class)builderClass
{
return [PCResourceSetProject class];
}
// ----------------------------------------------------------------------------
// --- ProjectType protocol
// ----------------------------------------------------------------------------
- (PCProject *)createProjectAt:(NSString *)path withOption:projOption
{
NSBundle *projectBundle = nil;
NSString *_file = nil;
NSAssert(path,@"No valid project path provided!");
projectBundle = [NSBundle bundleForClass:[self class]];
_file = [projectBundle pathForResource:@"PC" ofType:@"project"];
[projectDict initWithContentsOfFile:_file];
// Customise the project
[self setProjectPath:path];
[self setProjectName:[path lastPathComponent]];
if ([[projectName pathExtension] isEqualToString:@"subproj"])
{
projectName = [projectName stringByDeletingPathExtension];
}
[projectDict setObject:projectName forKey:PCProjectName];
[projectDict setObject:[[NSCalendarDate date] description]
forKey:PCCreationDate];
[projectDict setObject:NSFullUserName() forKey:PCProjectCreator];
[projectDict setObject:NSFullUserName() forKey:PCProjectMaintainer];
[projectDict setObject:[NSUserDefaults userLanguages] forKey:PCUserLanguages];
// GNUmakefile.postamble
[[PCMakefileFactory sharedFactory] createPostambleForProject:self];
// Save the project to disc
[self writeMakefile];
[self save];
return self;
}
@end
@implementation PCResourceSetProject (GeneratedFiles)
- (BOOL)writeMakefile
{
PCMakefileFactory *mf = [PCMakefileFactory sharedFactory];
NSUInteger i,count;
NSString *mfl = nil;
NSData *mfd = nil;
NSString *key = nil;
NSMutableArray *resources = nil;
NSArray *localizedResources = nil;
NSLog(@" write makefile!");
// Save the GNUmakefile backup
[super writeMakefile];
// Save GNUmakefile.preamble
[mf createPreambleForProject:self];
// Create the new file
[mf createMakefileForProject:self];
// Head
[self appendHead:mf];
// Resources
count = [[self resourceFileKeys] count];
resources = [[NSMutableArray alloc] initWithCapacity:1];
// Gather all resource files into one array
for (i = 0; i < count; i++)
{
key = [[self resourceFileKeys] objectAtIndex:i];
[resources addObjectsFromArray:[projectDict objectForKey:key]];
}
// Remove localized resource files from gathered array
localizedResources = [projectDict objectForKey:PCLocalizedResources];
for (i = [resources count]; i > 0; i--)
{
if ([localizedResources containsObject:[resources objectAtIndex:i-1]])
{
[resources removeObjectAtIndex:i-1];
}
}
[mf appendResources:resources inDir:@"Resources"];
[resources release];
// Localization
[mf appendLocalizedResources:localizedResources
forLanguages:[projectDict objectForKey:PCUserLanguages]];
// 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# Resource Set\n#\n"];
[mff appendString:[NSString stringWithFormat:@"RESOURCE_SET_NAME = %@\n",
projectName]];
// updated variable and path as suggested by makefile migration
// TODO: perhaps paths hould be created with system path separator
[mff appendString:
[NSString stringWithFormat:@"%@_INSTALL_DIR = $(GNUSTEP_LIBRARY)/Libraries/Resources/%@\n",projectName, projectName]];
}
- (void)appendTail:(PCMakefileFactory *)mff
{
[mff appendString:@"\n\n#\n# Makefiles\n#\n"];
[mff appendString:@"-include GNUmakefile.preamble\n"];
[mff appendString:@"include $(GNUSTEP_MAKEFILES)/resource-set.make\n"];
[mff appendString:@"-include GNUmakefile.postamble\n"];
}
@end
@implementation PCResourceSetProject (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
{
}
@end