#region License // // The Open Toolkit Library License // // Copyright (c) 2006 - 2011 the Open Toolkit library. // // 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. // #endregion using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using Bind.Structures; namespace Bind { using Delegate = Bind.Structures.Delegate; using Enum = Bind.Structures.Enum; using Type = Bind.Structures.Type; sealed class JavaSpecWriter : ISpecWriter { readonly char[] numbers = "0123456789".ToCharArray(); const string DigitPrefix = "T"; // Prefix for identifiers that start with a digit const string OutputFileHeader = "GL.java"; BindStreamWriter sw_h = new BindStreamWriter(Path.GetTempFileName()); #region WriteBindings public void WriteBindings(IBind generator) { WriteBindings(generator.Delegates, generator.Wrappers, generator.Enums); } void WriteBindings(DelegateCollection delegates, FunctionCollection wrappers, EnumCollection enums) { Console.WriteLine("Writing bindings to {0}", Settings.OutputPath); if (!Directory.Exists(Settings.OutputPath)) Directory.CreateDirectory(Settings.OutputPath); // Hack: Fix 3dfx extension category so it doesn't start with a digit if (wrappers.ContainsKey("3dfx")) { var three_dee_fx = wrappers["3dfx"]; wrappers.Remove("3dfx"); wrappers.Add(DigitPrefix + "3dfx", three_dee_fx); } using (var sw = sw_h) { WriteLicense(sw); sw.WriteLine("package {0}.{1};", Settings.OutputNamespace, Settings.GLClass); sw.WriteLine(); WriteDefinitions(sw, enums, wrappers, Type.CSTypes); WriteEnums(sw, enums); sw.Flush(); sw.Close(); } string output_header = Path.Combine(Settings.OutputPath, OutputFileHeader); Move(sw_h.File, output_header); } void Move(string file, string dest) { if (File.Exists(dest)) File.Delete(dest); File.Move(file, dest); } #endregion #region WriteDefinitions void WriteDefinitions(BindStreamWriter sw, EnumCollection enums, FunctionCollection wrappers, Dictionary CSTypes) { sw.WriteLine("public class {0}", Settings.GLClass); sw.WriteLine("{"); sw.Indent(); foreach (string extension in wrappers.Keys) { if (extension != "Core") { sw.WriteLine("public static class {0}", extension); sw.WriteLine("{"); sw.Indent(); } // Write wrappers foreach (var f in wrappers[extension]) { WriteWrapper(f, sw); } if (extension != "Core") { sw.Unindent(); sw.WriteLine("}"); } } sw.Unindent(); sw.WriteLine("}"); } #endregion #region WriteEnums public void WriteEnums(BindStreamWriter sw, EnumCollection enums) { foreach (Enum @enum in enums.Values) { sw.WriteLine("public enum {0}", @enum.Name); sw.WriteLine("{"); sw.Indent(); foreach (var c in @enum.ConstantCollection.Values) { sw.WriteLine(String.Format("{0} = {1}{2},", c.Name, !String.IsNullOrEmpty(c.Reference) ? (c.Reference + Settings.NamespaceSeparator) : "", c.Value)); } sw.Unindent(); sw.WriteLine("}"); sw.WriteLine(); } } #endregion #region WriteWrappers static void WriteWrapper(Function f, BindStreamWriter sw) { var valid = true; var generic_parameters = GenerateGenericTypeString(f); var parameters = GenerateParameterString(f, out valid); if (!valid) return; if (!String.IsNullOrEmpty(generic_parameters)) sw.WriteLine("public static <{0}> {1} {2}({3})", generic_parameters, f.ReturnType, f.TrimmedName, parameters); else sw.WriteLine("public static {0} {1}({2})", f.ReturnType, f.TrimmedName, parameters); sw.WriteLine("{"); sw.Indent(); WriteMethodBody(sw, f); sw.Unindent(); sw.WriteLine("}"); } static void WriteMethodBody(BindStreamWriter sw, Function f) { //var callstring = f.Parameters.CallString(); //if (f.ReturnType != null && !f.ReturnType.ToString().ToLower().Contains("void")) // sw.WriteLine("return GLES20.{0}{1};", f.WrappedDelegate.Name, callstring); //else // sw.WriteLine("GLES20.{0}{1};", f.WrappedDelegate.Name, callstring); } #region GenerateParameterString static string GenerateParameterString(Function f, out bool valid) { if (f == null) throw new ArgumentNullException("f"); valid = true; var sb = new StringBuilder(); if (f.Parameters.Count > 0) { foreach (var p in f.Parameters) { if (p.Reference) { if (p.Flow == FlowDirection.Out) sb.Append("Out<"); else sb.Append("Ref<"); // Hack: primitive types cannot be used as type parameters in Java. // Ensure the first letter is upper-case in order to use the boxed versions // of primitive types (i.e. "Byte" rather than "byte" etc). sb.Append(Char.ToUpper(p.CurrentType[0]) + p.CurrentType.Substring(1)); sb.Append(">"); } else if (p.Pointer > 0 && p.Array > 0) { sb.Append(p.CurrentType); if (p.Array > 0) sb.Append("[]"); } else if (p.Pointer > 0) { // Java does not support pointers // Todo: maybe use one of the java.nio.* pointer classes? valid = false; return String.Empty; } else { sb.Append(p.CurrentType); } sb.Append(" "); sb.Append(p.Name); sb.Append(", "); } if (f.Parameters.Count > 0) sb.Remove(sb.Length - 2, 2); } return sb.ToString(); } #endregion #region GenerateGenericTypeString static string GenerateGenericTypeString(Function f) { var parameters = f.Parameters.Where(p => p.Generic); if (parameters.Count() > 0) { var sb = new StringBuilder(); foreach (var p in f.Parameters.Where(p => p.Generic)) { sb.Append(p.CurrentType); sb.Append(", "); } if (parameters.Count() > 0) sb.Remove(sb.Length - 2, 2); return sb.ToString(); } return String.Empty; } #endregion static DocProcessor processor = new DocProcessor(Path.Combine(Settings.DocPath, Settings.DocFile)); static Dictionary docfiles; void WriteDocumentation(BindStreamWriter sw, Function f) { if (docfiles == null) { docfiles = new Dictionary(); foreach (string file in Directory.GetFiles(Settings.DocPath)) { docfiles.Add(Path.GetFileName(file), file); } } string docfile = null; try { docfile = Settings.FunctionPrefix + f.WrappedDelegate.Name + ".xml"; if (!docfiles.ContainsKey(docfile)) docfile = Settings.FunctionPrefix + f.TrimmedName + ".xml"; if (!docfiles.ContainsKey(docfile)) docfile = Settings.FunctionPrefix + f.TrimmedName.TrimEnd(numbers) + ".xml"; string doc = null; if (docfiles.ContainsKey(docfile)) { doc = processor.ProcessFile(docfiles[docfile]); } if (doc == null) { doc = "/// "; } int summary_start = doc.IndexOf("") + "".Length; string warning = "[deprecated: v{0}]"; string category = "[requires: {0}]"; if (f.Deprecated) { warning = String.Format(warning, f.DeprecatedVersion); doc = doc.Insert(summary_start, warning); } if (f.Extension != "Core" && !String.IsNullOrEmpty(f.Category)) { category = String.Format(category, f.Category); doc = doc.Insert(summary_start, category); } else if (!String.IsNullOrEmpty(f.Version)) { if (f.Category.StartsWith("VERSION")) category = String.Format(category, "v" + f.Version); else category = String.Format(category, "v" + f.Version + " and " + f.Category); doc = doc.Insert(summary_start, category); } sw.WriteLine(doc); } catch (Exception e) { Console.WriteLine("[Warning] Error processing file {0}: {1}", docfile, e.ToString()); } } #endregion #region WriteLicense public void WriteLicense(BindStreamWriter sw) { sw.WriteLine(File.ReadAllText(Path.Combine(Settings.InputPath, Settings.LicenseFile))); sw.WriteLine(); } #endregion } }