/** This tool converts a text property list to a serialised representation. Copyright (C) 1999 Free Software Foundation, Inc. Written by: Richard Frith-Macdonald Created: may 1999 This file is part of the GNUstep Project This library 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. You should have received a copy of the GNU General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include #include #include #include #include #include #include #include #include #include /**

This tool converts a text property list to a binary serialised representation.

*/ int main(int argc, char** argv, char **env) { NSAutoreleasePool *pool; NSProcessInfo *proc; NSArray *args; unsigned i; #ifdef GS_PASS_ARGUMENTS [NSProcessInfo initializeWithArguments:argv count:argc environment:env]; #endif pool = [NSAutoreleasePool new]; proc = [NSProcessInfo processInfo]; if (proc == nil) { NSLog(@"plser: unable to get process information!\n"); [pool release]; exit(EXIT_SUCCESS); } args = [proc arguments]; if ([args count] <= 1) { GSPrintf(stderr, @"No file names given to serialize.\n"); } else { for (i = 1; i < [args count]; i++) { NSString *file = [args objectAtIndex: i]; NS_DURING { NSData *myData; NSString *myString; id result; myString = [NSString stringWithContentsOfFile: file]; result = [myString propertyList]; if (result == nil) GSPrintf(stderr, @"Loading '%@' - nil property list\n", file); else { NSFileHandle *out; myData = [NSSerializer serializePropertyList: result]; out = [NSFileHandle fileHandleWithStandardOutput]; [out writeData: myData]; [out synchronizeFile]; } } NS_HANDLER { GSPrintf(stderr, @"Loading '%@' - %@\n", file, [localException reason]); } NS_ENDHANDLER } } [pool release]; return 0; }