apps-projectcenter/Framework/PCFileCreator.m
Sergii Stoian 87bc0ef57b * Framework/PCProjectManager.[mh]: Cleaning up code that manages
non-project editors. Use PCEditorManager instead. Remove
PCFileManager's dalegate code(FileManagerDelegates category).
(-newFile): Call PCFileCreator's method newFileInProject:.
* Framework/PCFileManager.[mh]: Move code related to creation of
new file in project from here
* Framework/PCFileCreator.[mh]: to here.
(-createFile): Add additional check before adding file to 
project	(fixes bug #17493).
* Framework/English.lproj/NewFile.gorm: Set owner to PCFileCreator.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@26024 72102866-910b-0410-8b05-ffd578937521
2008-02-04 23:51:28 +00:00

435 lines
12 KiB
Objective-C

/*
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
Copyright (C) 2001-2004 Free Software Foundation
Authors: Philippe C.D. Robert
Serg Stoyan
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 <ProjectCenter/PCDefines.h>
#include <ProjectCenter/PCProject.h>
#include <ProjectCenter/PCFileManager.h>
#include <ProjectCenter/PCFileCreator.h>
#include <ProjectCenter/PCLogController.h>
static PCFileCreator *_creator = nil;
static NSDictionary *dict = nil;
@implementation PCFileCreator
+ (id)sharedCreator
{
if (_creator == nil)
{
NSDictionary *classDict;
NSDictionary *headerDict;
NSDictionary *ccDict;
NSDictionary *chDict;
NSDictionary *protocolDict;
NSDictionary *gsmarkupDict;
NSString *descr;
_creator = [[[self class] alloc] init];
// Setting up the dictionary needed for registration!
descr = [NSString stringWithString:@"Generic Objective-C class.\n\nThis is a plain subclass of NSObject which includes only Foundation.h."];
classDict = [NSDictionary dictionaryWithObjectsAndKeys:
_creator,@"Creator",
PCClasses,@"ProjectKey",
descr,@"TypeDescription",
nil];
descr = [NSString stringWithString:@"Generic Objective-C header.\n\nThis is a plain interface subclassing NSObject. The file includes Foundation.h"];
headerDict =[NSDictionary dictionaryWithObjectsAndKeys:
_creator,@"Creator",
PCHeaders,@"ProjectKey",
descr,@"TypeDescription",
nil];
descr = [NSString stringWithString:@"Generic ANSI-C implementation file.\n\nThis file contains no Objective-C dependency in any form."];
ccDict = [NSDictionary dictionaryWithObjectsAndKeys:
_creator,@"Creator",
PCOtherSources,@"ProjectKey",
descr,@"TypeDescription",
nil];
descr = [NSString stringWithString:@"Generic ANSI-C header.\n\nThis file contains no Objective-C dependency in any form."];
chDict = [NSDictionary dictionaryWithObjectsAndKeys:
_creator,@"Creator",
PCHeaders,@"ProjectKey",
descr,@"TypeDescription",
nil];
descr = [NSString stringWithString:@"Generic Objective-C protocol.\n\nThis is common Objective-C protocol, comparable i.e. to a Java interface."];
protocolDict = [NSDictionary dictionaryWithObjectsAndKeys:
_creator,@"Creator",
PCHeaders,@"ProjectKey",
descr,@"TypeDescription",
nil];
descr = [NSString stringWithString:@"Generic GSMarkup File.\n\nThis is the interface description of GNUstep Renaissance."];
gsmarkupDict =[NSDictionary dictionaryWithObjectsAndKeys:
_creator,@"Creator",
PCGSMarkupFiles,@"ProjectKey",
descr,@"TypeDescription",
nil];
dict = [[NSDictionary alloc] initWithObjectsAndKeys:
ccDict, CFile,
chDict, CHeader,
protocolDict, ProtocolFile,
headerDict, ObjCHeader,
classDict, ObjCClass,
gsmarkupDict, GSMarkupFile,
nil];
}
return _creator;
}
- (id)init
{
self = [super init];
activeProject = nil;
return self;
}
- (void)dealloc
{
RELEASE(newFilePanel);
RELEASE(dict);
[super dealloc];
}
- (NSDictionary *)creatorDictionary
{
return dict;
}
- (void)newFileInProject:(PCProject *)aProject
{
// Set to nil after panel closing
activeProject = aProject;
[self showNewFilePanel];
}
- (NSDictionary *)createFileOfType:(NSString *)type
path:(NSString *)path
project:(PCProject *)aProject
{
PCFileManager *pcfm = [PCFileManager defaultManager];
NSString *_file = nil;
NSString *newFile = nil;
NSMutableDictionary *files = nil;
NSBundle *bundle = nil;
// A class and possibly a header
files = [NSMutableDictionary dictionaryWithCapacity:2];
PCLogStatus(self, @"create %@ at %@", type, path);
bundle = [NSBundle bundleForClass:[self class]];
newFile = [path copy];
// Remove file extension from "path"
if (![[path pathExtension] isEqualToString: @""])
{
path = [path stringByDeletingPathExtension];
}
/*
* Objective-C Class
*/
if ([type isEqualToString:ObjCClass])
{
_file = [bundle pathForResource:@"class" ofType:@"template"];
newFile = [path stringByAppendingPathExtension:@"m"];
[pcfm copyFile:_file toFile:newFile];
[self replaceTagsInFileAtPath:newFile withProject:aProject];
[files setObject:ObjCClass forKey:newFile];
}
/*
* Objective-C Header
* When creating Objective C Class file also create Objective C Header file
*/
if ([type isEqualToString:ObjCHeader] ||
[type isEqualToString:ObjCClass])
{
_file = [bundle pathForResource:@"header" ofType:@"template"];
newFile = [path stringByAppendingPathExtension:@"h"];
[pcfm copyFile:_file toFile:newFile];
[self replaceTagsInFileAtPath:newFile withProject:aProject];
[files setObject:ObjCHeader forKey:newFile];
}
/*
* C File
*/
if ([type isEqualToString:CFile])
{
_file = [bundle pathForResource:@"cfile" ofType:@"template"];
newFile = [path stringByAppendingPathExtension:@"c"];
[pcfm copyFile:_file toFile:newFile];
[self replaceTagsInFileAtPath:newFile withProject:aProject];
[files setObject:CFile forKey:newFile];
}
/*
* C Header
* When creating C file also create C Header file
*/
if ([type isEqualToString:CHeader] ||
[type isEqualToString:CFile])
{
_file = [bundle pathForResource:@"cheader" ofType:@"template"];
newFile = [path stringByAppendingPathExtension:@"h"];
[pcfm copyFile:_file toFile:newFile];
[self replaceTagsInFileAtPath:newFile withProject:aProject];
[files setObject:CHeader forKey:newFile];
}
/*
* GSMarkup
*/
else if ([type isEqualToString:GSMarkupFile])
{
_file = [bundle pathForResource:@"gsmarkup" ofType:@"template"];
newFile = [path stringByAppendingPathExtension:@"gsmarkup"];
[pcfm copyFile:_file toFile:newFile];
[files setObject:GSMarkupFile forKey:newFile];
}
/*
* Objective-C Protocol
*/
else if ([type isEqualToString:ProtocolFile])
{
_file = [bundle pathForResource:@"protocol" ofType:@"template"];
newFile = [path stringByAppendingPathExtension:@"h"];
[pcfm copyFile:_file toFile:newFile];
[self replaceTagsInFileAtPath:newFile withProject:aProject];
[files setObject:ProtocolFile forKey:newFile];
}
/*
* Notify the browser!
*/
[[NSNotificationCenter defaultCenter]
postNotificationName:@"ProjectDictDidChangeNotification"
object:self];
return files;
}
- (void)replaceTagsInFileAtPath:(NSString *)newFile
withProject:(PCProject *)aProject
{
NSString *projectName = [aProject projectName];
NSString *date = [[NSCalendarDate calendarDate] description];
int year = [[NSCalendarDate calendarDate] yearOfCommonEra];
NSString *aFile = [newFile lastPathComponent];
NSString *UCfn = [[aFile stringByDeletingPathExtension] uppercaseString];
NSString *fn = [aFile stringByDeletingPathExtension];
NSRange subRange;
file = [[NSMutableString stringWithContentsOfFile:newFile] retain];
while ((subRange = [file rangeOfString:@"$FULLFILENAME$"]).length)
{
[file replaceCharactersInRange:subRange withString:aFile];
}
while ((subRange = [file rangeOfString:@"$FILENAME$"]).length)
{
[file replaceCharactersInRange:subRange withString:fn];
}
while ((subRange = [file rangeOfString:@"$UCFILENAME$"]).length)
{
[file replaceCharactersInRange:subRange withString:UCfn];
}
while ((subRange = [file rangeOfString:@"$USERNAME$"]).length)
{
[file replaceCharactersInRange:subRange withString:NSUserName()];
}
while ((subRange = [file rangeOfString:@"$FULLUSERNAME$"]).length)
{
[file replaceCharactersInRange:subRange withString:NSFullUserName()];
}
while ((subRange = [file rangeOfString:@"$PROJECTNAME$"]).length)
{
[file replaceCharactersInRange:subRange withString:projectName];
}
while ((subRange = [file rangeOfString:@"$DATE$"]).length)
{
[file replaceCharactersInRange:subRange withString:date];
}
while ((subRange = [file rangeOfString:@"$YEAR$"]).length)
{
[file replaceCharactersInRange:subRange
withString:[[NSNumber numberWithInt:year] stringValue]];
}
[file writeToFile:newFile atomically:YES];
[file autorelease];
}
@end
@implementation PCFileCreator (UInterface)
// ============================================================================
// ==== "New File in Project" Panel
// ============================================================================
- (void)showNewFilePanel
{
if (!newFilePanel)
{
if ([NSBundle loadNibNamed:@"NewFile" owner:self] == NO)
{
PCLogError(self, @"error loading NewFile NIB!");
return;
}
[newFilePanel setFrameAutosaveName:@"NewFile"];
if (![newFilePanel setFrameUsingName: @"NewFile"])
{
[newFilePanel center];
}
[newFilePanel center];
[nfImage setImage:[NSApp applicationIconImage]];
[nfTypePB setRefusesFirstResponder:YES];
[nfTypePB removeAllItems];
[nfTypePB addItemsWithTitles:
[[dict allKeys]
sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)]];
[nfTypePB selectItemAtIndex:0];
[nfCancleButton setRefusesFirstResponder:YES];
[nfCreateButton setRefusesFirstResponder:YES];
[newFilePanel setDefaultButtonCell:[nfCreateButton cell]];
}
[self newFilePopupChanged:nfTypePB];
[newFilePanel makeKeyAndOrderFront:self];
[nfNameField setStringValue:@""];
[newFilePanel makeFirstResponder:nfNameField];
}
- (void)closeNewFilePanel:(id)sender
{
[newFilePanel orderOut:self];
activeProject = nil;
}
- (void)createFile:(id)sender
{
[self createFile];
[self closeNewFilePanel:self];
activeProject = nil;
}
- (void)newFilePopupChanged:(id)sender
{
NSString *type = [sender titleOfSelectedItem];
NSDictionary *creator = [dict objectForKey:type];
if (type)
{
[nfDescriptionTV setString:[creator objectForKey:@"TypeDescription"]];
}
}
- (void)controlTextDidChange:(NSNotification *)aNotif
{
if ([aNotif object] != nfNameField)
{
return;
}
// TODO: Add check for valid file names
if ([[nfNameField stringValue] length] > 0)
{
[nfCreateButton setEnabled:YES];
}
else
{
[nfCreateButton setEnabled:NO];
}
}
- (void)createFile
{
NSString *path = nil;
NSString *fileName = [nfNameField stringValue];
NSString *fileType = [nfTypePB titleOfSelectedItem];
NSDictionary *fileDict = [dict objectForKey:fileType];
NSString *projectKey = [fileDict objectForKey:@"ProjectKey"];
// PCLogInfo(self, @"[createFile] %@", fileName);
if ([activeProject doesAcceptFile:fileName forKey:projectKey])
{
path = [[activeProject projectPath]
stringByAppendingPathComponent:fileName];
}
// PCLogInfo(self, @"creating file at %@", path);
// Create file
if (path)
{
NSDictionary *newFiles = nil;
NSEnumerator *enumerator;
NSString *aFile;
// Do it finally...
newFiles = [self createFileOfType:fileType
path:path
project:activeProject];
// Add files to a project
enumerator = [[newFiles allKeys] objectEnumerator];
while ((aFile = [enumerator nextObject]))
{
fileType = [newFiles objectForKey:aFile];
fileDict = [dict objectForKey:fileType];
projectKey = [fileDict objectForKey:@"ProjectKey"];
if ([activeProject doesAcceptFile:aFile forKey:projectKey])
{
[activeProject addFiles:[NSArray arrayWithObject:aFile]
forKey:projectKey
notify:YES];
}
}
}
}
@end