mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 06:35:29 +00:00
238 lines
7.9 KiB
C#
238 lines
7.9 KiB
C#
|
#region License
|
|||
|
//
|
|||
|
// The Open Toolkit Library License
|
|||
|
//
|
|||
|
// Copyright (c) 2006 - 2010 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 CppSpecWriter : ISpecWriter
|
|||
|
{
|
|||
|
readonly char[] numbers = "0123456789".ToCharArray();
|
|||
|
|
|||
|
#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);
|
|||
|
|
|||
|
string temp_core_file = Path.GetTempFileName();
|
|||
|
|
|||
|
// Enums
|
|||
|
using (BindStreamWriter sw = new BindStreamWriter(temp_core_file))
|
|||
|
{
|
|||
|
WriteLicense(sw);
|
|||
|
|
|||
|
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
|||
|
sw.WriteLine("{");
|
|||
|
sw.Indent();
|
|||
|
|
|||
|
sw.Indent();
|
|||
|
WriteEnums(sw, enums);
|
|||
|
sw.Unindent();
|
|||
|
|
|||
|
WriteDelegates(sw, delegates);
|
|||
|
|
|||
|
sw.Unindent();
|
|||
|
sw.WriteLine("}");
|
|||
|
}
|
|||
|
|
|||
|
string output_core = Path.Combine(Settings.OutputPath, Settings.ImportsFile);
|
|||
|
if (File.Exists(output_core))
|
|||
|
File.Delete(output_core);
|
|||
|
File.Move(temp_core_file, output_core);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region WriteDelegates
|
|||
|
|
|||
|
public void WriteDelegates(BindStreamWriter sw, DelegateCollection delegates)
|
|||
|
{
|
|||
|
Trace.WriteLine(String.Format("Writing delegates to:\t{0}", Settings.OutputNamespace));
|
|||
|
|
|||
|
foreach (Delegate d in delegates.Values)
|
|||
|
{
|
|||
|
sw.WriteLine("extern {0};", d.ToString());
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region WriteImports
|
|||
|
|
|||
|
public void WriteImports(BindStreamWriter sw, DelegateCollection delegates)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region WriteWrappers
|
|||
|
|
|||
|
public void WriteWrappers(BindStreamWriter sw, FunctionCollection wrappers, Dictionary<string, string> CSTypes)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
static DocProcessor processor = new DocProcessor(Path.Combine(Settings.DocPath, Settings.DocFile));
|
|||
|
static Dictionary<string, string> docfiles;
|
|||
|
void WriteDocumentation(BindStreamWriter sw, Function f)
|
|||
|
{
|
|||
|
if (docfiles == null)
|
|||
|
{
|
|||
|
docfiles = new Dictionary<string, string>();
|
|||
|
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 = "/// <summary></summary>";
|
|||
|
}
|
|||
|
|
|||
|
int summary_start = doc.IndexOf("<summary>") + "<summary>".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 WriteTypes
|
|||
|
|
|||
|
public void WriteTypes(BindStreamWriter sw, Dictionary<string, string> CSTypes)
|
|||
|
{
|
|||
|
sw.WriteLine();
|
|||
|
foreach (string s in CSTypes.Keys)
|
|||
|
{
|
|||
|
sw.WriteLine("typedef {0} {1};", s, CSTypes[s]);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region WriteEnums
|
|||
|
|
|||
|
public void WriteEnums(BindStreamWriter sw, EnumCollection enums)
|
|||
|
{
|
|||
|
//sw.WriteLine("#pragma warning disable 3019"); // CLSCompliant attribute
|
|||
|
sw.WriteLine("#pragma warning disable 1591"); // Missing doc comments
|
|||
|
sw.WriteLine();
|
|||
|
|
|||
|
Trace.WriteLine(String.Format("Writing enums to:\t{0}", Settings.EnumsOutput));
|
|||
|
|
|||
|
sw.WriteLine("namespace gl");
|
|||
|
sw.WriteLine("{");
|
|||
|
sw.Indent();
|
|||
|
|
|||
|
foreach (Enum @enum in enums.Values)
|
|||
|
{
|
|||
|
sw.Write("enum ");
|
|||
|
sw.Write(@enum.Name);
|
|||
|
sw.Write("{");
|
|||
|
sw.Indent();
|
|||
|
foreach (var c in @enum.ConstantCollection)
|
|||
|
sw.WriteLine(c);
|
|||
|
sw.Unindent();
|
|||
|
sw.WriteLine("};");
|
|||
|
sw.WriteLine();
|
|||
|
}
|
|||
|
|
|||
|
sw.Unindent();
|
|||
|
sw.WriteLine("}");
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region WriteLicense
|
|||
|
|
|||
|
public void WriteLicense(BindStreamWriter sw)
|
|||
|
{
|
|||
|
sw.WriteLine(File.ReadAllText(Path.Combine(Settings.InputPath, Settings.LicenseFile)));
|
|||
|
sw.WriteLine();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|