1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
|
// CFDGDocument.mm
// this file is part of Context Free
// ---------------------
// Copyright (C) 2005-2007 Mark Lentczner - markl@glyphic.com
// Copyright (C) 2008 John Horigan - john@glyphic.com
//
// 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 2
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// John Horigan can be contacted at john@glyphic.com or at
// John Horigan, 1209 Villa St., Mountain View, CA 94041-1123, USA
//
// Mark Lentczner can be contacted at markl@glyphic.com or at
// Mark Lentczner, 1209 Villa St., Mountain View, CA 94041-1123, USA
//
//
#import "CFDGDocument.h"
#import "GView.h"
#import "GalleryUploader.h"
#include <fstream>
#include <sstream>
#include "cfdg.h"
namespace {
using namespace std;
class DocSystem : public AbstractSystem
{
public:
DocSystem(CFDGDocument* doc) : mDoc(doc) { }
virtual void message(bool error, const char* fmt, ...);
virtual void syntaxError(const string& path, int line);
virtual istream* openFileForRead(const string& path);
virtual istream* tempFileForRead(const string& path);
virtual ostream* tempFileForWrite(string& prefixInNameOut);
virtual string relativeFilePath(const string& base, const string& rel);
virtual void stats(const Stats& s);
private:
CFDGDocument* mDoc;
CFDGDocument* findDocFor(const string& path);
};
CFDGDocument*
DocSystem::findDocFor(const string& path)
{
if (path.empty())
return mDoc;
NSString* pathStr =
[NSString stringWithCString: path.data() length: path.length()];
return [[NSDocumentController sharedDocumentController]
documentForFileName: pathStr];
}
void
DocSystem::message(bool, const char* fmt, ...)
{
char buf[256];
{
va_list args;
va_start(args, fmt);
vsnprintf(buf, sizeof(buf), fmt, args);
buf[sizeof(buf)-1] = '\0';
va_end(args);
}
[mDoc performSelectorOnMainThread: @selector(noteStatus:)
withObject: [NSString stringWithCString: buf]
waitUntilDone: NO];
}
void
DocSystem::stats(const Stats& s)
{
NSValue* value = [NSValue value: &s withObjCType: @encode(Stats)];
[mDoc performSelectorOnMainThread: @selector(noteStats:)
withObject: value waitUntilDone: NO];
}
void
DocSystem::syntaxError(const string& path, int line)
{
// note: this only happens during Parse,
// and that only happens in the main thread
CFDGDocument* doc = findDocFor(path);
if (doc)
[doc highlightLine: line];
}
istream*
DocSystem::openFileForRead(const string& path)
{
CFDGDocument* doc = findDocFor(path);
if (doc) {
NSData* data = [doc getContent];
basic_stringstream<char>* s = new stringstream;
s->write((const char*)[data bytes], [data length]);
s->seekp(0, ios::beg);
return s;
}
return new ifstream(path.c_str(), ios::in);
}
istream*
DocSystem::tempFileForRead(const string& path)
{
return new ifstream(path.c_str(), ios::in | ios::binary);
}
ostream*
DocSystem::tempFileForWrite(string& prefixInNameOut)
{
string t = prefixInNameOut + "XXXXXX";
NSString* prefix =
[NSString stringWithCString: t.data() length: t.length()];
NSString* path =
[NSTemporaryDirectory() stringByAppendingPathComponent: prefix];
ofstream* f = 0;
char* b = strdup([path cString]);
if (mktemp(b)) {
f = new ofstream;
f->open(b, ios::binary | ios::trunc | ios::out);
prefixInNameOut = b;
}
delete b;
return f;
}
string
DocSystem::relativeFilePath(const string& base, const string& rel)
{
NSString* baseStr =
[NSString stringWithCString: base.data() length: base.length()];
NSString* relStr =
[NSString stringWithCString: rel.data() length: rel.length()];
NSString* newStr =
[[baseStr stringByDeletingLastPathComponent]
stringByAppendingPathComponent: relStr];
NSFileManager* fm = [NSFileManager defaultManager];
if (![fm fileExistsAtPath: newStr]) {
NSString* libStr =
[[[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent: @"Examples"]
stringByAppendingPathComponent: relStr];
if ([fm fileExistsAtPath: libStr])
newStr = libStr;
}
return string([newStr cString]);
}
};
NSString* CFDGDocumentType = @"ContextFree Design Grammar";
@implementation CFDGDocument
+ (NSString*) documentType
{
return CFDGDocumentType;
}
- (id)init
{
self = [super init];
if (self) {
mSystem = new DocSystem(self);
mContent = nil;
mUploader = nil;
mDisplayName = nil;
}
return self;
}
- (void)dealloc
{
delete mSystem; mSystem = 0;
[mContent release]; mContent = nil;
[mUploader release]; mUploader = nil;
[super dealloc];
}
- (NSString *)windowNibName {
return @"CFDGDocument";
}
- (void)showWindows
{
[super showWindows];
if ([[mEditor string] length] == 0)
return;
BOOL render = [[NSUserDefaults standardUserDefaults]
boolForKey: @"RenderOnDocumentOpen"];
if (render)
[self startRender: self];
}
- (void)close
{
mStatus = nil;
mGView = nil;
[self stopRender: self];
[super close];
}
- (CFDG*)buildEngine
{
[mEditor setTextColor: nil];
const char* fileName = [[self fileName] cString];
if (!fileName) fileName = "";
static NSLock* parseLock = [[NSLock alloc] init];
CFDG* result = 0;
if ([parseLock lockBeforeDate: [NSDate dateWithTimeIntervalSinceNow: 2.0]]) {
result = CFDG::ParseFile(fileName, mSystem, [mGView variation]);
[parseLock unlock];
}
return result;
}
- (void)noteStatus:(NSString*)s
{
if (mStatus != nil) {
[mStatus setStringValue: s];
[mStatus setToolTip: s];
}
}
- (void)noteStats:(NSValue*)v
{
if (mGView != nil) {
[mGView noteStats: v];
}
}
- (void)highlightLine:(int)targetLine
{
NSString* text = [mEditor string];
NSRange lineRange;
unsigned int lineCount;
unsigned int endOfLine;
lineRange.location = 0;
lineRange.length = 0;
lineCount = 1; // lineRange(0,0) is the start of line 1!
while ((int)lineCount < targetLine) {
// find start of next line
[text getLineStart: nil end: &endOfLine contentsEnd: nil
forRange: lineRange];
lineRange.location = endOfLine;
lineCount += 1;
}
// now find the range of the whole line
[text getLineStart: nil end: &endOfLine contentsEnd: nil
forRange: lineRange];
lineRange.length = endOfLine - lineRange.location;
[mEditor setTextColor: [NSColor redColor] range: lineRange];
[mEditor setSelectedRange: lineRange];
[mEditor scrollRangeToVisible: lineRange];
}
- (NSData *)dataRepresentationOfType:(NSString *)type {
NSAssert([type isEqualToString: CFDGDocumentType], @"Unknown type");
return [self getContent];
}
- (BOOL)loadDataRepresentation:(NSData *)data ofType:(NSString *)type
{
NSAssert([type isEqualToString: CFDGDocumentType], @"Unknown type");
mContent = [data retain];
[self showContent];
return YES;
}
- (void)windowControllerDidLoadNib:(NSWindowController *)windowController
{
[self showContent];
}
- (IBAction)toggleRenderView:(id)sender
{
}
- (IBAction) startRender:(id)sender { [mGView startRender: sender]; }
- (IBAction) repeatRender:(id)sender{ [mGView repeatRender: sender]; }
- (IBAction) finishRender:(id)sender{ [mGView finishRender: sender]; }
- (IBAction) stopRender:(id)sender { [mGView stopRender: sender]; }
- (IBAction) saveImage:(id)sender { [mGView saveImage: sender]; }
- (IBAction) saveAsSVG:(id)sender { [mGView saveAsSVG: sender]; }
- (IBAction) saveAsMovie:(id)sender { [mGView saveAsMovie: sender]; }
- (IBAction) toggleLegacyVariations:(id)sender
{ [mGView toggleLegacyVariations: sender]; }
- (BOOL)validateMenuItem:(NSMenuItem *)anItem;
{
SEL action = [anItem action];
if (action == @selector(startRender:)
|| action == @selector(repeatRender:)
|| action == @selector(finishRender:)
|| action == @selector(stopRender:)
|| action == @selector(saveImage:)
|| action == @selector(saveAsSVG:)
|| action == @selector(saveAsMovie:)
|| action == @selector(showHiresRenderSheet:)
|| action == @selector(uploadToGallery:)
|| action == @selector(toggleLegacyVariations:)
|| action == @selector(showSvgRenderSheet:))
{
return [mGView validateMenuItem: anItem];
}
return [super validateMenuItem: anItem];
}
- (IBAction) showHiresRenderSheet:(id)sender
{
[NSApp beginSheet: mHiresSheet
modalForWindow: [[[self windowControllers] lastObject] window]
modalDelegate: nil didEndSelector: nil contextInfo: nil];
}
- (IBAction) startHiresRender:(id)sender
{
if (![mHiresSheet makeFirstResponder: nil])
return;
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
float hiresWidth = [defaults floatForKey: @"HiresWidth"];
float hiresHeight = [defaults floatForKey: @"HiresHeight"];
float hiresMinSize = [defaults floatForKey: @"HiresMinimumSize"];
[mGView startHiresRender: NSMakeSize(hiresWidth, hiresHeight)
minimum: hiresMinSize];
[self cancelHiresRender:sender];
}
- (IBAction) cancelHiresRender:(id)sender
{
[NSApp endSheet: mHiresSheet];
[mHiresSheet orderOut: sender];
}
- (IBAction) uploadToGallery:(id)sender
{
if (!mUploader) {
mUploader= [[GalleryUploader alloc]
initForDocument: self andView: mGView];
}
[mUploader show: self];
}
- (void)showContent
{
if (mEditor) {
NSString* s = [[NSString alloc]
initWithData: mContent encoding: NSUTF8StringEncoding];
[mEditor setString: s];
[s release];
}
}
- (NSData*)getContent
{
[mContent release];
mContent = [[[mEditor string]
dataUsingEncoding: NSUTF8StringEncoding] retain];
return mContent;
}
- (void)readFromExample:(NSString*)path
{
[self loadDataRepresentation: [NSData dataWithContentsOfFile: path]
ofType:CFDGDocumentType];
[mDisplayName release];
mDisplayName = [[[path lastPathComponent]
stringByDeletingPathExtension] retain];
}
- (NSString*)displayName
{
if (mDisplayName) return mDisplayName;
return [super displayName];
}
- (void)setFileName:(NSString*)path
{
[mDisplayName release];
mDisplayName = nil;
[super setFileName: path];
}
// Delegate methods from the editor
- (void) textDidChange: (NSNotification *) notification
{
[self stopRender: self];
[mGView reuseVariation];
}
@end
|