mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
116 lines
3.0 KiB
Plaintext
116 lines
3.0 KiB
Plaintext
/*
|
|
* main.j
|
|
* nib2cib
|
|
*
|
|
* Created by Francisco Tolmasky.
|
|
* Copyright 2008, 280 North, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
|
|
@import <AppKit/CPCib.j>
|
|
|
|
@import "NSFoundation.j"
|
|
@import "NSAppKit.j"
|
|
|
|
@import "Nib2CibKeyedUnarchiver.j"
|
|
@import "Converter.j"
|
|
|
|
var FILE = require("file"),
|
|
OS = require("os");
|
|
|
|
|
|
CPLogRegister(CPLogPrint);
|
|
|
|
function printUsage()
|
|
{
|
|
print("usage: nib2cib INPUT_FILE [OUTPUT_FILE] [-F /path/to/required/framework] [-R path/to/resources]");
|
|
OS.exit(1);
|
|
}
|
|
|
|
function loadFrameworks(frameworkPaths, aCallback)
|
|
{
|
|
if (!frameworkPaths || frameworkPaths.length === 0)
|
|
return aCallback();
|
|
|
|
frameworkPaths.forEach(function(aFrameworkPath)
|
|
{
|
|
var infoPlistPath = FILE.join(aFrameworkPath, "Info.plist");
|
|
|
|
if (!FILE.isReadable(infoPlistPath))
|
|
{
|
|
print("'" + aFrameworkPath + "' is not a framework or could not be found.");
|
|
OS.exit(1);
|
|
}
|
|
|
|
print("Loading " + aFrameworkPath);
|
|
|
|
var frameworkBundle = [[CPBundle alloc] initWithPath:infoPlistPath];
|
|
|
|
[frameworkBundle loadWithDelegate:nil];
|
|
|
|
require("browser/timeout").serviceTimeouts();
|
|
});
|
|
|
|
aCallback();
|
|
}
|
|
|
|
function main(args)
|
|
{
|
|
// TODO: args parser
|
|
args.shift();
|
|
|
|
var count = args.length;
|
|
|
|
if (count < 2)
|
|
return printUsage();
|
|
|
|
var index = 0,
|
|
|
|
frameworkPaths = [],
|
|
converter = [[Converter alloc] init];
|
|
|
|
for (; index < count; ++index)
|
|
{
|
|
switch(args[index])
|
|
{
|
|
case "-help":
|
|
case "--help": printUsage();
|
|
break;
|
|
|
|
case "--mac": [converter setFormat:NibFormatMac];
|
|
break;
|
|
|
|
case "-F": frameworkPaths.push(args[++index]);
|
|
break;
|
|
|
|
case "-R": [converter setResourcesPath:args[++index]];
|
|
break;
|
|
|
|
default: if ([converter inputPath])
|
|
[converter setOutputPath:args[index]];
|
|
else
|
|
[converter setInputPath:args[index]];
|
|
}
|
|
}
|
|
|
|
loadFrameworks(frameworkPaths, function()
|
|
{
|
|
[converter convert];
|
|
});
|
|
}
|