7d7f676260
Former-commit-id: 38faa55fb9669e35e7d8448b15c25dc447f25767
202 lines
5.4 KiB
C#
202 lines
5.4 KiB
C#
//
|
|
// resx2sr.cs
|
|
//
|
|
// Authors:
|
|
// Marek Safar <marek.safar@gmail.com>
|
|
//
|
|
// Copyright (C) 2016 Xamarin Inc (http://www.xamarin.com)
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using System.Resources;
|
|
using System.ComponentModel.Design;
|
|
using System.Text.RegularExpressions;
|
|
using Mono.Options;
|
|
|
|
public class Program
|
|
{
|
|
class CmdOptions
|
|
{
|
|
public bool ShowHelp { get; set; }
|
|
public string OutputFile { get; set; }
|
|
}
|
|
|
|
internal static List<string> InputFiles;
|
|
internal static Dictionary<string, object> ExistingKeys;
|
|
|
|
public static int Main (string[] args)
|
|
{
|
|
var options = new CmdOptions ();
|
|
|
|
InputFiles = new List<string> ();
|
|
ExistingKeys = new Dictionary<string, object> ();
|
|
|
|
var p = new OptionSet () {
|
|
{ "o|out=", "Specifies output file name",
|
|
v => options.OutputFile = v },
|
|
{ "i|in=", "Specifies input file name",
|
|
v => InputFiles.Add (v) },
|
|
{ "h|help", "Display available options",
|
|
v => options.ShowHelp = v != null },
|
|
};
|
|
|
|
List<string> extra;
|
|
try {
|
|
extra = p.Parse (args);
|
|
} catch (OptionException e) {
|
|
Console.WriteLine (e.Message);
|
|
Console.WriteLine ("Try 'resx2sr -help' for more information.");
|
|
return 1;
|
|
}
|
|
|
|
if (options.ShowHelp) {
|
|
ShowHelp (p);
|
|
return 0;
|
|
}
|
|
|
|
if (extra.Count < 1) {
|
|
ShowHelp (p);
|
|
return 2;
|
|
}
|
|
|
|
if (!LoadInputFiles ())
|
|
return 4;
|
|
|
|
var resxStrings = new List<Tuple<string, string, string>> ();
|
|
if (!LoadStrings (resxStrings, extra))
|
|
return 3;
|
|
|
|
GenerateFile (resxStrings, options);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void ShowHelp (OptionSet p)
|
|
{
|
|
Console.WriteLine ("Usage: resx2sr [options] input-files");
|
|
Console.WriteLine ("Generates C# file with string constants from resource file");
|
|
Console.WriteLine ();
|
|
Console.WriteLine ("Options:");
|
|
p.WriteOptionDescriptions (Console.Out);
|
|
}
|
|
|
|
static void GenerateFile (List<Tuple<string, string, string>> txtStrings, CmdOptions options)
|
|
{
|
|
// var outputFile = options.OutputFile ?? "SR.cs";
|
|
|
|
using (var str = options.OutputFile == null ? Console.Out : new StreamWriter (options.OutputFile)) {
|
|
str.WriteLine ("//");
|
|
str.WriteLine ("// This file was generated by resx2sr tool");
|
|
str.WriteLine ("//");
|
|
str.WriteLine ();
|
|
|
|
str.WriteLine ("partial class SR");
|
|
str.WriteLine ("{");
|
|
|
|
var dict = new Dictionary<string, string> ();
|
|
|
|
foreach (var entry in txtStrings) {
|
|
|
|
var value = ToCSharpString (entry.Item2);
|
|
string found;
|
|
if (dict.TryGetValue (entry.Item1, out found)) {
|
|
if (found == value)
|
|
continue;
|
|
|
|
str.WriteLine ($"\t// Constant value mismatch");
|
|
} else {
|
|
dict.Add (entry.Item1, value);
|
|
}
|
|
|
|
str.Write ($"\tpublic const string {entry.Item1} = \"{value}\";");
|
|
|
|
if (!string.IsNullOrEmpty (entry.Item3))
|
|
str.Write (" // {entry.Item3}");
|
|
|
|
str.WriteLine ();
|
|
}
|
|
str.WriteLine ("}");
|
|
}
|
|
}
|
|
|
|
static string ToCSharpString (string str)
|
|
{
|
|
str = str.Replace ("\n", "\\n");
|
|
|
|
return str.Replace ("\\", "\\\\").Replace ("\"", "\\\"");
|
|
}
|
|
|
|
static bool LoadStrings (List<Tuple<string, string, string>> resourcesStrings, List<string> files)
|
|
{
|
|
var keys = new Dictionary<string, string> ();
|
|
foreach (var fileName in files) {
|
|
if (!File.Exists (fileName)) {
|
|
Console.Error.WriteLine ($"Error reading resource file '{fileName}'");
|
|
return false;
|
|
}
|
|
|
|
var rr = new ResXResourceReader (fileName);
|
|
rr.UseResXDataNodes = true;
|
|
var dict = rr.GetEnumerator ();
|
|
while (dict.MoveNext ()) {
|
|
var node = (ResXDataNode)dict.Value;
|
|
|
|
if (ExistingKeys.ContainsKey (node.Name))
|
|
continue;
|
|
ExistingKeys.Add (node.Name, null);
|
|
|
|
resourcesStrings.Add (Tuple.Create (node.Name, (string) node.GetValue ((ITypeResolutionService)null), node.Comment));
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool LoadInputFiles ()
|
|
{
|
|
var reg = new Regex (@"\s*public const string (\w+)\s+=\s+");
|
|
var keys = new Dictionary<string, string> ();
|
|
foreach (var fileName in InputFiles) {
|
|
if (!File.Exists (fileName)) {
|
|
Console.Error.WriteLine ($"Error reading input file '{fileName}'");
|
|
return false;
|
|
}
|
|
|
|
using (var reader = new StreamReader (fileName)) {
|
|
string line;
|
|
while ((line = reader.ReadLine ()) != null) {
|
|
var match = reg.Match (line);
|
|
if (!match.Success)
|
|
continue;
|
|
|
|
var key = match.Groups[1].Value;
|
|
if (!ExistingKeys.ContainsKey (key))
|
|
ExistingKeys.Add (key, null);
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
} |