/* * Converter.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 @import @import @import @import @import @import "NSFoundation.j" @import "NSAppKit.j" @class Nib2Cib @global java var path = require("path"); var fs = require("fs"); var child_process = require("child_process"); /* var FILE = require("file"), OS = require("os"), */ var SharedConverter = nil; NibFormatUndetermined = 0; NibFormatMac = 1; NibFormatIPhone = 2; ConverterModeLegacy = 0; ConverterModeNew = 1; ConverterConversionException = @"ConverterConversionException"; @implementation Converter : CPObject { CPString inputPath @accessors(readonly); CPString outputPath @accessors; } + (Converter)sharedConverter { return SharedConverter; } - (id)initWithInputPath:(CPString)anInputPath outputPath:(CPString)anOutputPath { self = [super init]; if (self) { if (!SharedConverter) SharedConverter = self; inputPath = anInputPath; outputPath = anOutputPath; } return self; } - (CPData)convert { // Assume its a Mac file. var inferredFormat = NibFormatMac; // Some .xibs are iPhone nibs, check the actual contents in this case. if (path.extname(inputPath) !== ".nib" && fs.lstatSync(inputPath).isFile() && fs.readFileSync(inputPath, { encoding: "utf8" }).indexOf("\s*CF\$UID\s*\<\/key\>/g, "CP$UID"); plistContents = plistContents.replace(new RegExp("\\\\s*CF\\$UID\\s*\\<\\/key\\>", "g"), "CP$UID"); plistContents = plistContents.replace(new RegExp("[\\u0000-\\u0008\\u000B\\u000C\\u000E-\\u001F]<\\/string>", "g"), function(c) { CPLog.warn("Warning: converting character 0x" + c.charCodeAt(8).toString(16) + " to base64 representation"); return "" + CFData.encodeBase64String(c.charAt(8)) + ""; }); } finally { if (temporaryNibFilePath !== "" && isWritable(temporaryNibFilePath)) fs.rmSync(temporaryNibFilePath); //FILE.remove(temporaryNibFilePath); if (temporaryPlistFilePath !== "" && isWritable(temporaryPlistFilePath)) fs.rmSync(temporaryPlistFilePath); //FILE.remove(temporaryPlistFilePath); } return [CPData dataWithRawString:plistContents]; } @end //@import "Converter+Mac.j"