1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
cs2j/CSharpTranslator/antlr3/src/cs2j/CLR/TranslationTemplate.cs

1939 lines
50 KiB
C#
Raw Normal View History

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Xml;
using System.Xml.Serialization;
using RusticiSoftware.Translator.Utils;
// These Template classes are in-memory versions of the xml translation templates
// (we use C# to directly persist to / from files).
// We have overloaded Equals to test value equality for these template objects. For now its only
// used by unit tests (to check that the object survives xml serialization / deserialization
// unscathed). But it might be useful down the road.
// By overloading Equals, we also have to overload GetHashcode (well, its highly reccomended)...
namespace RusticiSoftware.Translator.CLR
{
public enum Javastyle
{
Clean, MarkAuto
}
// Simple <type> <name> pairs to represent formal parameters
public class ParamRepTemplate : IEquatable<ParamRepTemplate>
{
private string _type;
public string Type {
get { return _type; }
set {
_type=value.Replace('<','[').Replace('>',']');
}
}
public string Name { get; set; }
// ref or out param?
[XmlAttribute("byref")]
[System.ComponentModel.DefaultValueAttribute(false)]
public bool IsByRef{ get; set; }
public ParamRepTemplate ()
{
IsByRef = false;
}
public ParamRepTemplate (string t, string a)
{
Type = t;
Name = a;
IsByRef = false;
}
public ParamRepTemplate (string t, string a, bool isbyref)
{
Type = t;
Name = a;
IsByRef = isbyref;
}
#region Equality
public bool Equals (ParamRepTemplate other)
{
if (other == null)
return false;
return Type == other.Type && Name == other.Name && IsByRef == other.IsByRef;
}
public override bool Equals (object obj)
{
ParamRepTemplate temp = obj as ParamRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (ParamRepTemplate a1, ParamRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (ParamRepTemplate a1, ParamRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return (Type ?? String.Empty).GetHashCode () ^ (Name ?? String.Empty).GetHashCode () ^ IsByRef.GetHashCode();
}
#endregion
}
// A namespace alias entry.
public class AliasRepTemplate : IEquatable<AliasRepTemplate>
{
public string Alias { get; set; }
public string Namespace { get; set; }
public AliasRepTemplate ()
{
Alias = null;
Namespace = null;
}
public AliasRepTemplate (string a, string u)
{
Alias = a;
Namespace = u;
}
#region Equality
public bool Equals (AliasRepTemplate other)
{
if (other == null)
return false;
return Alias == other.Alias && Namespace == other.Namespace;
}
public override bool Equals (object obj)
{
AliasRepTemplate temp = obj as AliasRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (AliasRepTemplate a1, AliasRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (AliasRepTemplate a1, AliasRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return (Alias ?? String.Empty).GetHashCode () ^ (Namespace ?? String.Empty).GetHashCode ();
}
#endregion
}
// Never directly create a TranslationBase. Its a common root for translatable language entities
public abstract class TranslationBase : IEquatable<TranslationBase>
{
// Java imports required to make Java translation run
private string[] _imports = null;
2011-01-10 11:45:19 +01:00
[XmlArrayItem("Import")]
2011-01-14 14:38:45 +01:00
public virtual string[] Imports {
get {
// if _java is not set then see if we have default imports, otherwise
// assume imports is already correctly (un)set
if (_imports == null && _java == null) {
return mkImports();
}
return _imports;
}
set { _imports = value; }
}
// The Java translation for this C# entity
protected string _java = null;
public virtual string Java {
get {
if (_java == null) {
return mkJava();
}
else {
return _java;
}
}
set { _java = value; }
}
// Optional, but if present will let mkJava generate better java guess in some cases
private string _surroundingTypeName;
[XmlIgnore]
public string SurroundingTypeName {
get { return _surroundingTypeName; }
set {
_surroundingTypeName=value.Replace('<','[').Replace('>',']');
}
}
public virtual string[] mkImports() {
return null;
}
public string[] mkImports(Javastyle style) {
string[] imports = mkImports();
if (style == Javastyle.MarkAuto) {
for (int i = 0; i < imports.Length; i++) {
imports[i] = imports[i] + " /*auto*/";
}
}
return imports;
}
public abstract string mkJava();
public string mkJava(Javastyle style) {
string unAdornedJava = mkJava();
if (style == Javastyle.MarkAuto) {
return "/*auto (/*" + unAdornedJava + "/*)*/";
}
else {
return unAdornedJava;
}
}
protected TranslationBase ()
{
Imports = null;
}
protected TranslationBase (string java)
{
Imports = null;
Java = java;
}
protected TranslationBase (string[] imps, string java)
{
Imports = imps;
Java = java;
}
2010-10-21 16:31:09 +02:00
protected string mkJavaParams(IList<ParamRepTemplate> pars) {
StringBuilder parStr = new StringBuilder();
parStr.Append("(");
foreach (ParamRepTemplate p in pars) {
parStr.Append("${"+p.Name+"},");
}
if (parStr[parStr.Length-1] == ',') {
parStr.Remove(parStr.Length-1,1);
}
parStr.Append(")");
return parStr.ToString();
}
#region Equality
public bool Equals (TranslationBase other)
{
if (other == null)
return false;
if (Imports != other.Imports) {
if (Imports == null || other.Imports == null || Imports.Length != other.Imports.Length)
return false;
for (int i = 0; i < Imports.Length; i++) {
if (Imports[i] != other.Imports[i])
return false;
}
}
return Java == other.Java;
}
public override bool Equals (object obj)
{
TranslationBase temp = obj as TranslationBase;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (TranslationBase a1, TranslationBase a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (TranslationBase a1, TranslationBase a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = 0;
if (Imports != null) {
foreach (string e in Imports) {
hashCode ^= e.GetHashCode();
}
}
return (Java ?? String.Empty).GetHashCode () ^ hashCode;
}
#endregion
}
public class ConstructorRepTemplate : TranslationBase, IEquatable<ConstructorRepTemplate>
{
private List<ParamRepTemplate> _params = null;
[XmlArrayItem("Param")]
public List<ParamRepTemplate> Params {
get {
if (_params == null)
_params = new List<ParamRepTemplate> ();
return _params;
}
}
public override string mkJava() {
string constructorName = "CONSTRUCTOR";
if (SurroundingTypeName != null) {
constructorName = SurroundingTypeName.Substring(SurroundingTypeName.LastIndexOf('.') + 1);
}
2010-10-21 16:31:09 +02:00
return "new " + constructorName + mkJavaParams(Params);
}
public override string[] mkImports() {
if (SurroundingTypeName != null) {
return new string[] {"CS2JNet." + SurroundingTypeName};
}
else {
return null;
}
}
public ConstructorRepTemplate () : base()
{
}
public ConstructorRepTemplate (List<ParamRepTemplate> pars) : base()
{
_params = pars;
}
public ConstructorRepTemplate (List<ParamRepTemplate> pars, string[] imps, string javaRep) : base(imps, javaRep)
{
_params = pars;
}
#region Equality
public bool Equals (ConstructorRepTemplate other)
{
if (other == null)
return false;
if (Params != other.Params) {
if (Params == null || other.Params == null || Params.Count != other.Params.Count)
return false;
for (int i = 0; i < Params.Count; i++) {
if (Params[i] != other.Params[i])
return false;
}
}
return base.Equals(other);
}
public override bool Equals (object obj)
{
ConstructorRepTemplate temp = obj as ConstructorRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (ConstructorRepTemplate a1, ConstructorRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (ConstructorRepTemplate a1, ConstructorRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = 0;
foreach (ParamRepTemplate o in Params) {
hashCode = hashCode ^ o.GetHashCode() ;
}
return base.GetHashCode () ^ hashCode;
}
#endregion
}
// Method has the same info as a delegate as a constructor plus a name and return type
public class MethodRepTemplate : ConstructorRepTemplate, IEquatable<ConstructorRepTemplate>
{
// Method name
public string Name { get; set; }
[XmlArrayItem("Name")]
public string[] TypeParams { get; set; }
// Return type
private string _return;
public string Return {
get { return _return; }
set {
_return=value.Replace('<','[').Replace('>',']');
}
}
2010-10-19 14:48:32 +02:00
// isStatic method?
[XmlAttribute("static")]
[System.ComponentModel.DefaultValueAttribute(false)]
public bool IsStatic{ get; set; }
public MethodRepTemplate ()
{
2010-10-19 14:48:32 +02:00
IsStatic = false;
}
public MethodRepTemplate (string retType, string methodName, string[] tParams, List<ParamRepTemplate> pars, string[] imps, string javaRep) : base(pars, imps, javaRep)
{
Name = methodName;
TypeParams = tParams;
Return = retType;
2010-10-19 14:48:32 +02:00
IsStatic = false;
}
public MethodRepTemplate (string retType, string methodName, string[] tParams, List<ParamRepTemplate> pars) : this(retType, methodName, tParams, pars, null, null)
{
}
public override string[] mkImports() {
if (IsStatic && SurroundingTypeName != null) {
return new string[] {"CS2JNet." + SurroundingTypeName};
}
else {
return null;
}
}
public override string mkJava() {
StringBuilder methStr = new StringBuilder();
if (IsStatic) {
if (SurroundingTypeName != null) {
methStr.Append(SurroundingTypeName.Substring(SurroundingTypeName.LastIndexOf('.') + 1) + ".");
}
else {
methStr.Append("TYPENAME.");
}
}
else {
methStr.Append("${this}.");
}
methStr.Append(Name);
2010-10-21 16:31:09 +02:00
return methStr.ToString() + mkJavaParams(Params);
}
#region Equality
public bool Equals (MethodRepTemplate other)
{
if (other == null)
return false;
if (TypeParams != other.TypeParams) {
if (TypeParams == null || other.TypeParams == null || TypeParams.Length != other.TypeParams.Length)
return false;
for (int i = 0; i < TypeParams.Length; i++) {
if (TypeParams[i] != other.TypeParams[i])
return false;
}
}
2010-10-19 14:48:32 +02:00
return Return == other.Return && Name == other.Name && IsStatic == other.IsStatic && base.Equals(other);
}
public override bool Equals (object obj)
{
MethodRepTemplate temp = obj as MethodRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (MethodRepTemplate a1, MethodRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (MethodRepTemplate a1, MethodRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = 0;
if (TypeParams != null) {
foreach (string o in TypeParams) {
hashCode = hashCode ^ o.GetHashCode() ;
}
}
2010-10-19 14:48:32 +02:00
return hashCode ^ (Return ?? String.Empty).GetHashCode () ^ (Name ?? String.Empty).GetHashCode () ^ IsStatic.GetHashCode() ^ base.GetHashCode();
}
#endregion
}
// A user-defined cast from one type to another
public class CastRepTemplate : TranslationBase, IEquatable<CastRepTemplate>
{
// From and To are fully qualified types
private string _from;
public string From {
get { return _from; }
set {
_from=value.Replace('<','[').Replace('>',']');
}
}
private string _to;
public string To {
get { return _to; }
set {
_to=value.Replace('<','[').Replace('>',']');
}
}
public CastRepTemplate () : base()
{
}
public CastRepTemplate (string fType, string tType, string[] imps, string java) : base(imps, java)
{
From = fType;
To = tType;
}
public CastRepTemplate (string fType, string tType) : this(fType, tType, null, null)
{
}
2010-10-20 18:51:41 +02:00
public override string[] mkImports() {
if (From == null || To == null) {
return null;
}
else {
return new string[] {"CS2JNet." + From};
2010-10-20 18:51:41 +02:00
}
}
public override string mkJava() {
2010-10-20 18:51:41 +02:00
if (From == null || To == null) {
return null;
}
else {
return From.Substring(From.LastIndexOf('.') + 1) + ".__cast_" + To.Replace('.','_') + "(${expr})";
}
}
#region Equality
public bool Equals (CastRepTemplate other)
{
if (other == null)
return false;
return From == other.From && To == other.To && base.Equals(other);
}
public override bool Equals (object obj)
{
CastRepTemplate temp = obj as CastRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (CastRepTemplate a1, CastRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (CastRepTemplate a1, CastRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return (From ?? String.Empty).GetHashCode() ^ (To ?? String.Empty).GetHashCode() ^ base.GetHashCode();
}
#endregion
}
// A member field definition
public class FieldRepTemplate : TranslationBase, IEquatable<FieldRepTemplate>
{
private string _type;
public string Type {
get { return _type; }
set {
_type=value.Replace('<','[').Replace('>',']');
}
}
public string Name { get; set; }
public FieldRepTemplate () : base()
{
}
public FieldRepTemplate (string fType, string fName, string[] imps, string javaGet) : base(imps, javaGet)
{
Type = fType;
Name = fName;
}
public FieldRepTemplate (string fType, string fName) : this(fType, fName, null, null)
{
}
public override string mkJava() {
return "${this}." + Name;
}
#region Equality
public bool Equals (FieldRepTemplate other)
{
if (other == null)
return false;
return Type == other.Type && Name == other.Name && base.Equals(other);
}
public override bool Equals (object obj)
{
FieldRepTemplate temp = obj as FieldRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (FieldRepTemplate a1, FieldRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (FieldRepTemplate a1, FieldRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return (Type ?? String.Empty).GetHashCode() ^ (Name ?? String.Empty).GetHashCode() ^ base.GetHashCode();
}
#endregion
}
// A property definition. We need separate java translations for getter and setter. If JavaGet is null
// then we can use Java (from TranslationBase) as the translation for gets.
// Imports are shared between getter and setter (might lead to some unneccessary extra imports, but I'm
// guessing that normally imports will be the same for both)
public class PropRepTemplate : FieldRepTemplate, IEquatable<PropRepTemplate>
{
private string _javaGet = null;
[XmlElementAttribute("Get")]
public string JavaGet {
get {
if (!CanRead) return null;
if (_javaGet == null) {
if (_java == null) {
return (CanRead ? "${this}.get" + Name + "()" : null);
}
else {
return _java;
}
}
else {
return _javaGet;
}
}
set { _javaGet = value; }
}
public override string Java
{
get
{
return JavaGet;
}
}
private string _javaSet = null;
[XmlElementAttribute("Set")]
public string JavaSet {
get {
if (_javaSet == null) {
return (CanWrite ? "${this}.set" + Name + "(${value})" : null);
}
else {
return _javaSet;
}
}
set { _javaSet = value; }
}
// canRead?
private bool _canRead = true;
[XmlAttribute("read")]
[System.ComponentModel.DefaultValueAttribute(true)]
public bool CanRead {
get { return _canRead; }
set { _canRead = value; }
}
// canWrite?
private bool _canWrite = true;
[XmlAttribute("write")]
[System.ComponentModel.DefaultValueAttribute(true)]
public bool CanWrite {
get { return _canWrite; }
set { _canWrite = value; }
}
public PropRepTemplate () : base()
{
}
public PropRepTemplate (string fType, string fName, string[] imps, string javaGet, string javaSet) : base(fType, fName, imps, null)
{
JavaGet = javaGet;
JavaSet = javaSet;
}
public PropRepTemplate (string fType, string fName) : this(fType, fName, null, null, null)
{
}
public override string mkJava ()
{
// favour JavaGet
return null;
}
#region Equality
public bool Equals (PropRepTemplate other)
{
if (other == null)
return false;
return JavaGet == other.JavaGet && JavaSet == other.JavaSet && base.Equals(other);
}
public override bool Equals (object obj)
{
PropRepTemplate temp = obj as PropRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (PropRepTemplate a1, PropRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (PropRepTemplate a1, PropRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return (JavaGet ?? String.Empty).GetHashCode () ^ (JavaSet ?? String.Empty).GetHashCode () ^ base.GetHashCode ();
}
#endregion
}
// A member of an enum, may also have a numeric value
public class EnumMemberRepTemplate : TranslationBase, IEquatable<EnumMemberRepTemplate>
{
public string Name { get; set; }
public string Value { get; set; }
public EnumMemberRepTemplate () : this(null)
{
}
public EnumMemberRepTemplate (string n) : this(n, null, null, null)
{
}
public EnumMemberRepTemplate (string n, string v) : this(n, v, null, null)
{
}
public EnumMemberRepTemplate (string n, string v, string[] imps, string java) : base(imps, java)
{
Name = n;
Value = v;
}
public override string mkJava() {
return Name;
}
#region Equality
public bool Equals (EnumMemberRepTemplate other)
{
if (other == null)
return false;
return Name == other.Name && Value == other.Value && base.Equals(other);
}
public override bool Equals (object obj)
{
EnumMemberRepTemplate temp = obj as EnumMemberRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (EnumMemberRepTemplate a1, EnumMemberRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (EnumMemberRepTemplate a1, EnumMemberRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return (Name ?? String.Empty).GetHashCode () ^ (Value ?? String.Empty).GetHashCode () ^ base.GetHashCode ();
}
#endregion
}
// Base Template for classes, interfaces, enums, etc.
[Serializable]
public abstract class TypeRepTemplate : TranslationBase, IEquatable<TypeRepTemplate>
{
// Type Name
[XmlElementAttribute("Name")]
public string TypeName { get; set; }
[XmlArrayItem("Name")]
public string[] TypeParams { get; set; }
2010-10-19 10:40:55 +02:00
// Path to use when resolving types
2010-10-29 19:46:17 +02:00
[XmlArrayItem("Use")]
public string[] Uses { get; set; }
// Aliases for namespaces
[XmlArrayItem("Alias")]
public AliasRepTemplate[] Aliases { get; set; }
public TypeRepTemplate () : base()
{
TypeName = null;
Uses = null;
Aliases = null;
}
protected TypeRepTemplate (string typeName) : this()
{
TypeName = typeName;
}
protected TypeRepTemplate (string tName, string[] tParams, string[] usePath, AliasRepTemplate[] aliases, string[] imports, string javaTemplate) : base(imports, javaTemplate)
{
TypeName = tName;
TypeParams = tParams;
Uses = usePath;
Aliases = aliases;
}
public override string mkJava() {
if (TypeName == null || TypeName == String.Empty) {
return null;
}
return TypeName.Substring(TypeName.LastIndexOf('.') + 1);
}
public override string[] mkImports() {
if (TypeName != null) {
return new string[] {"CS2JNet." + TypeName};
}
else {
return null;
}
}
2011-01-16 23:44:14 +01:00
// Returns true if other is a subclass, or implements our interface
public virtual bool IsA (TypeRepTemplate other, DirectoryHT<TypeRepTemplate> AppEnv) {
return false;
}
#region deserialization
private static object Deserialize (Stream fs, System.Type t)
{
object o = null;
XmlSerializer serializer = new XmlSerializer (t, Constants.TranslationTemplateNamespace);
o = serializer.Deserialize (fs);
return o;
}
private static TypeRepTemplate Deserialize (Stream s)
{
TypeRepTemplate ret = null;
XmlReaderSettings settings = new XmlReaderSettings ();
settings.IgnoreWhitespace = true;
settings.IgnoreComments = true;
XmlReader reader = XmlReader.Create (s, settings);
//XmlTextReader reader = new XmlTextReader(s);
string typeType = null;
// class, interface, enum, etc.
bool found = false;
try {
while (reader.Read () && !found) {
if (reader.NodeType == XmlNodeType.Element) {
switch (reader.LocalName) {
case "Class":
typeType = "RusticiSoftware.Translator.CLR.ClassRepTemplate";
break;
case "Struct":
typeType = "RusticiSoftware.Translator.CLR.StructRepTemplate";
break;
case "Interface":
typeType = "RusticiSoftware.Translator.CLR.InterfaceRepTemplate";
break;
case "Enum":
typeType = "RusticiSoftware.Translator.CLR.EnumRepTemplate";
break;
case "Delegate":
typeType = "RusticiSoftware.Translator.CLR.DelegateRepTemplate";
break;
default:
typeType = "UnknownType";
break;
}
found = true;
}
}
s.Seek (0, SeekOrigin.Begin);
ret = (TypeRepTemplate)Deserialize (s, System.Type.GetType (typeType));
} catch (Exception e) {
Console.WriteLine ("WARNING -- (Deserialize) " + e.Message);
}
return ret;
}
public static TypeRepTemplate newInstance (Stream s)
{
return (TypeRepTemplate)Deserialize (s);
}
#endregion deserialization
// Useful because it builds either an empty ClassRep or InterfaceRep or ...
public abstract TypeRep mkEmptyRep ();
#region Equality
public bool Equals (TypeRepTemplate other)
{
if (other == null)
return false;
if (Uses != other.Uses) {
if (Uses == null || other.Uses == null || Uses.Length != other.Uses.Length)
return false;
for (int i = 0; i < Uses.Length; i++) {
if (Uses[i] != other.Uses[i])
return false;
}
}
if (Aliases != other.Aliases) {
if (Aliases == null || other.Aliases == null || Aliases.Length != other.Aliases.Length)
return false;
for (int i = 0; i < Aliases.Length; i++) {
if (Aliases[i] != other.Aliases[i])
return false;
}
}
if (TypeParams != other.TypeParams) {
if (TypeParams == null || other.TypeParams == null || TypeParams.Length != other.TypeParams.Length)
return false;
for (int i = 0; i < TypeParams.Length; i++) {
if (TypeParams[i] != other.TypeParams[i])
return false;
}
}
return TypeName == other.TypeName && base.Equals(other);
}
public override bool Equals (object obj)
{
TypeRepTemplate temp = obj as TypeRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (TypeRepTemplate a1, TypeRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (TypeRepTemplate a1, TypeRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = base.GetHashCode ();
if (Uses != null) {
foreach (string e in Uses) {
hashCode ^= e.GetHashCode();
}
}
if (Aliases != null) {
foreach (AliasRepTemplate e in Aliases) {
hashCode ^= e.GetHashCode();
}
}
if (TypeParams != null) {
foreach (string e in TypeParams) {
hashCode ^= e.GetHashCode();
}
}
return (Java ?? String.Empty).GetHashCode () ^ hashCode;
}
#endregion
2011-01-12 09:37:43 +01:00
public override String ToString()
{
return this.TypeName;
}
}
[XmlType("Enum")]
public class EnumRepTemplate : TypeRepTemplate, IEquatable<EnumRepTemplate>
{
private List<EnumMemberRepTemplate> _members = null;
[XmlArrayItem("Member")]
public List<EnumMemberRepTemplate> Members {
get {
if (_members == null)
_members = new List<EnumMemberRepTemplate> ();
return _members;
}
}
public EnumRepTemplate () : base()
{
}
public EnumRepTemplate (List<EnumMemberRepTemplate> ms) : base()
{
_members = ms;
}
public override TypeRep mkEmptyRep ()
{
return new EnumRep ();
}
#region Equality
public bool Equals (EnumRepTemplate other)
{
if (other == null)
return false;
if (Members != other.Members) {
if (Members == null || other.Members == null || Members.Count != other.Members.Count)
return false;
for (int i = 0; i < Members.Count; i++) {
if (Members[i] != other.Members[i])
return false;
}
}
return base.Equals(other);
}
public override bool Equals (object obj)
{
EnumRepTemplate temp = obj as EnumRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (EnumRepTemplate a1, EnumRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (EnumRepTemplate a1, EnumRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = base.GetHashCode ();
if (Members != null) {
foreach (EnumMemberRepTemplate e in Members) {
hashCode ^= e.GetHashCode();
}
}
return hashCode;
}
#endregion
}
[XmlType("Delegate")]
public class DelegateRepTemplate : TypeRepTemplate, IEquatable<DelegateRepTemplate>
{
private List<ParamRepTemplate> _params = null;
[XmlArrayItem("Param")]
public List<ParamRepTemplate> Params {
get {
if (_params == null)
_params = new List<ParamRepTemplate> ();
return _params;
}
2010-11-01 18:28:17 +01:00
set {
_params = value;
}
}
private string _return;
public string Return {
get { return _return; }
set {
_return=value.Replace('<','[').Replace('>',']');
}
}
public DelegateRepTemplate () : base()
{
}
public DelegateRepTemplate (string retType, List<ParamRepTemplate> args) : base()
{
Return = retType;
_params = args;
}
2010-10-21 16:31:09 +02:00
public override string mkJava() {
return "${delegate}.Invoke" + mkJavaParams(Params);
}
public override TypeRep mkEmptyRep ()
{
return new DelegateRep ();
}
#region Equality
public bool Equals (DelegateRepTemplate other)
{
if (other == null)
return false;
if (Params != other.Params) {
if (Params == null || other.Params == null || Params.Count != other.Params.Count)
return false;
for (int i = 0; i < Params.Count; i++) {
if (Params[i] != other.Params[i])
return false;
}
}
return Return == other.Return && base.Equals(other);
}
public override bool Equals (object obj)
{
DelegateRepTemplate temp = obj as DelegateRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (DelegateRepTemplate a1, DelegateRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (DelegateRepTemplate a1, DelegateRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = base.GetHashCode ();
if (Params != null) {
foreach (ParamRepTemplate e in Params) {
hashCode ^= e.GetHashCode();
}
}
return (Return ?? String.Empty).GetHashCode() ^ hashCode;
}
#endregion
}
// Base Template for classes, interfaces, etc.
[XmlType("Interface")]
public class InterfaceRepTemplate : TypeRepTemplate, IEquatable<InterfaceRepTemplate>
{
private string[] _inherits;
[XmlArrayItem("Type")]
public string[] Inherits {
2011-01-16 23:44:14 +01:00
get {
if (_inherits == null)
{
_inherits = new string[] { "System.Object" };
}
return _inherits;
}
set {
if (value != null) {
_inherits= new string[value.Length];
for (int i = 0; i < value.Length; i++) {
_inherits[i] = value[i].Replace('<','[').Replace('>',']');
}
}
else {
_inherits = null;
}
}
}
private List<MethodRepTemplate> _methods = null;
[XmlArrayItem("Method")]
public List<MethodRepTemplate> Methods {
get {
if (_methods == null)
_methods = new List<MethodRepTemplate> ();
return _methods;
}
}
private List<PropRepTemplate> _properties = null;
[XmlArrayItem("Property")]
public List<PropRepTemplate> Properties {
get {
if (_properties == null)
_properties = new List<PropRepTemplate> ();
return _properties;
}
}
private List<FieldRepTemplate> _events = null;
[XmlArrayItem("Event")]
public List<FieldRepTemplate> Events {
get {
if (_events == null)
_events = new List<FieldRepTemplate> ();
return _events;
}
}
private List<MethodRepTemplate> _indexers = null;
[XmlArrayItem("Indexer")]
public List<MethodRepTemplate> Indexers {
get {
if (_indexers == null)
_indexers = new List<MethodRepTemplate> ();
return _indexers;
}
}
public InterfaceRepTemplate () : base()
{
Inherits = null;
}
public InterfaceRepTemplate (string typeName) : base(typeName)
{
}
protected InterfaceRepTemplate (string tName, string[] tParams, string[] usePath, AliasRepTemplate[] aliases, string[] inherits, List<MethodRepTemplate> ms, List<PropRepTemplate> ps, List<FieldRepTemplate> es, List<MethodRepTemplate> ixs, string[] imps, string javaTemplate)
: base(tName, tParams, usePath, aliases, imps, javaTemplate)
{
Inherits = inherits;
_methods = ms;
_properties = ps;
_events = es;
_indexers = ixs;
}
2011-01-16 23:44:14 +01:00
// Returns true if we are a subclass of other, or implements its interface
public override bool IsA (TypeRepTemplate other, DirectoryHT<TypeRepTemplate> AppEnv) {
InterfaceRepTemplate i = other as InterfaceRepTemplate;
if (i == null)
{
return false;
}
if (i.TypeName == this.TypeName)
{
return true;
}
if (Inherits != null)
{
foreach (String ibase in Inherits)
{
TypeRepTemplate tbase = AppEnv.Search(ibase, new UnknownRepTemplate(ibase));
if (tbase.IsA(other,AppEnv))
{
return true;
}
}
}
return false;
}
public override TypeRep mkEmptyRep ()
{
return new InterfaceRep ();
}
public virtual ResolveResult Resolve(String name, DirectoryHT<TypeRepTemplate> AppEnv)
2011-01-13 10:38:33 +01:00
{
if (Properties != null)
{
foreach (PropRepTemplate p in Properties)
{
if (p.Name == name)
{
ResolveResult res = new ResolveResult();
res.Result = p;
res.ResultType = AppEnv.Search(Uses, p.Type);
return res;
}
2011-01-13 10:38:33 +01:00
}
}
if (Inherits != null)
{
foreach (String b in Inherits)
{
InterfaceRepTemplate baseType = AppEnv.Search(Uses, b) as InterfaceRepTemplate;
if (baseType != null)
{
ResolveResult ret = baseType.Resolve(name,AppEnv);
if (ret != null)
return ret;
}
2011-01-13 10:38:33 +01:00
}
}
return null;
}
2011-01-14 19:36:09 +01:00
public virtual ResolveResult Resolve(String name, List<TypeRepTemplate> args, DirectoryHT<TypeRepTemplate> AppEnv)
{
if (Methods != null)
{
foreach (MethodRepTemplate m in Methods)
{
if (m.Name == name)
{
bool matchingArgs = true;
2011-01-16 23:44:14 +01:00
// If either params are null then make sure both represent zero length args
2011-01-14 19:36:09 +01:00
if (m.Params == null || args == null)
{
// Are they both zero length?
matchingArgs = (m.Params == null || m.Params.Count == 0) && (args == null || args.Count == 0);
}
else
{
2011-01-16 23:44:14 +01:00
// Are num args the same?
2011-01-14 19:36:09 +01:00
if (m.Params.Count != args.Count)
{
matchingArgs = false;
}
else
{
2011-01-16 23:44:14 +01:00
// check that for each argument in the caller its type 'IsA' the type of the formal argument
2011-01-14 19:36:09 +01:00
for (int idx = 0; idx < m.Params.Count; idx++) {
2011-01-16 23:44:14 +01:00
if (args[idx] == null || !args[idx].IsA(AppEnv.Search(Uses, m.Params[idx].Type, new UnknownRepTemplate(m.Params[idx].Type)),AppEnv))
2011-01-14 19:36:09 +01:00
{
matchingArgs = false;
break;
}
}
}
}
if (matchingArgs)
{
ResolveResult res = new ResolveResult();
res.Result = m;
res.ResultType = AppEnv.Search(Uses, m.Return);
return res;
}
}
}
}
if (Inherits != null)
{
foreach (String b in Inherits)
{
InterfaceRepTemplate baseType = AppEnv.Search(Uses, b) as InterfaceRepTemplate;
if (baseType != null)
{
ResolveResult ret = baseType.Resolve(name,args,AppEnv);
if (ret != null)
return ret;
}
}
}
return null;
}
2011-01-13 10:38:33 +01:00
#region Equality
public bool Equals (InterfaceRepTemplate other)
{
if (other == null)
return false;
if (Inherits != other.Inherits) {
if (Inherits == null || other.Inherits == null || Inherits.Length != other.Inherits.Length)
return false;
for (int i = 0; i < Inherits.Length; i++) {
if (Inherits[i] != other.Inherits[i])
return false;
}
}
if (Methods != other.Methods) {
if (Methods == null || other.Methods == null || Methods.Count != other.Methods.Count)
return false;
for (int i = 0; i < Methods.Count; i++) {
if (Methods[i] != other.Methods[i])
return false;
}
}
if (Properties != other.Properties) {
if (Properties == null || other.Properties == null || Properties.Count != other.Properties.Count)
return false;
for (int i = 0; i < Properties.Count; i++) {
if (Properties[i] != other.Properties[i])
return false;
}
}
if (Events != other.Events) {
if (Events == null || other.Events == null || Events.Count != other.Events.Count)
return false;
for (int i = 0; i < Events.Count; i++) {
if (Events[i] != other.Events[i])
return false;
}
}
if (Indexers != other.Indexers) {
if (Indexers == null || other.Indexers == null || Indexers.Count != other.Indexers.Count)
return false;
for (int i = 0; i < Indexers.Count; i++) {
if (Indexers[i] != other.Indexers[i])
return false;
}
}
return base.Equals(other);
}
public override bool Equals (object obj)
{
InterfaceRepTemplate temp = obj as InterfaceRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (InterfaceRepTemplate a1, InterfaceRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (InterfaceRepTemplate a1, InterfaceRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = base.GetHashCode ();
if (Inherits != null) {
foreach (string e in Inherits) {
hashCode ^= e.GetHashCode();
}
}
if (Methods != null) {
foreach (MethodRepTemplate e in Methods) {
hashCode ^= e.GetHashCode();
}
}
if (Properties != null) {
foreach (PropRepTemplate e in Properties) {
hashCode ^= e.GetHashCode();
}
}
if (Events != null) {
foreach (FieldRepTemplate e in Events) {
hashCode ^= e.GetHashCode();
}
}
if (Indexers != null) {
foreach (MethodRepTemplate e in Indexers) {
hashCode ^= e.GetHashCode();
}
}
return hashCode;
}
#endregion
}
[XmlType("Class")]
public class ClassRepTemplate : InterfaceRepTemplate, IEquatable<ClassRepTemplate>
{
private List<ConstructorRepTemplate> _constructors = null;
[XmlArrayItem("Constructor")]
public List<ConstructorRepTemplate> Constructors {
get {
if (_constructors == null)
_constructors = new List<ConstructorRepTemplate> ();
return _constructors;
}
}
private List<FieldRepTemplate> _fields = null;
[XmlArrayItem("Field")]
public List<FieldRepTemplate> Fields {
get {
if (_fields == null)
_fields = new List<FieldRepTemplate> ();
return _fields;
}
}
private List<CastRepTemplate> _casts = null;
[XmlArrayItem("Cast")]
public List<CastRepTemplate> Casts {
get {
if (_casts == null)
_casts = new List<CastRepTemplate> ();
return _casts;
}
}
private List<MethodRepTemplate> _unaryOps = null;
[XmlArrayItem("UnaryOp")]
public List<MethodRepTemplate> UnaryOps {
get {
if (_unaryOps == null)
_unaryOps = new List<MethodRepTemplate> ();
return _unaryOps;
}
}
private List<MethodRepTemplate> _binaryOps = null;
[XmlArrayItem("BinaryOp")]
public List<MethodRepTemplate> BinaryOps {
get {
if (_binaryOps == null)
_binaryOps = new List<MethodRepTemplate> ();
return _binaryOps;
}
}
public ClassRepTemplate ()
{
}
public ClassRepTemplate (string typeName) : base(typeName)
{
}
public ClassRepTemplate (string tName, string[] tParams, string[] usePath, AliasRepTemplate[] aliases, string[] inherits, List<ConstructorRepTemplate> cs, List<MethodRepTemplate> ms, List<PropRepTemplate> ps, List<FieldRepTemplate> fs, List<FieldRepTemplate> es, List<MethodRepTemplate> ixs, List<CastRepTemplate> cts,
string[] imports, string javaTemplate)
: base(tName, tParams, usePath, aliases, inherits, ms, ps, es, ixs, imports, javaTemplate)
{
_constructors = cs;
_fields = fs;
_casts = cts;
}
public ClassRepTemplate (string tName, string[] tParams, string[] usePath, AliasRepTemplate[] aliases, string[] inherits, List<ConstructorRepTemplate> cs, List<MethodRepTemplate> ms, List<PropRepTemplate> ps, List<FieldRepTemplate> fs, List<FieldRepTemplate> es, List<MethodRepTemplate> ixs, List<CastRepTemplate> cts)
: base(tName, tParams, usePath, aliases, inherits, ms, ps, es, ixs, null, null)
{
_constructors = cs;
_fields = fs;
_casts = cts;
}
public override TypeRep mkEmptyRep ()
{
return new ClassRep ();
}
public override ResolveResult Resolve(String name, DirectoryHT<TypeRepTemplate> AppEnv)
2011-01-13 10:38:33 +01:00
{
if (Fields != null)
{
foreach (FieldRepTemplate f in Fields)
{
if (f.Name == name)
{
ResolveResult res = new ResolveResult();
res.Result = f;
res.ResultType = AppEnv.Search(Uses, f.Type);
return res;
}
2011-01-13 10:38:33 +01:00
}
}
return base.Resolve(name, AppEnv);
}
#region Equality
public bool Equals (ClassRepTemplate other)
{
if (other == null)
return false;
if (Constructors != other.Constructors) {
if (Constructors == null || other.Constructors == null || Constructors.Count != other.Constructors.Count)
return false;
for (int i = 0; i < Constructors.Count; i++) {
if (Constructors[i] != other.Constructors[i])
return false;
}
}
if (Fields != other.Fields) {
if (Fields == null || other.Fields == null || Fields.Count != other.Fields.Count)
return false;
for (int i = 0; i < Fields.Count; i++) {
if (Fields[i] != other.Fields[i])
return false;
}
}
if (Casts != other.Casts) {
if (Casts == null || other.Casts == null || Casts.Count != other.Casts.Count)
return false;
for (int i = 0; i < Casts.Count; i++) {
if (Casts[i] != other.Casts[i])
return false;
}
}
if (UnaryOps != other.UnaryOps) {
if (UnaryOps == null || other.UnaryOps == null || UnaryOps.Count != other.UnaryOps.Count)
return false;
for (int i = 0; i < UnaryOps.Count; i++) {
if (UnaryOps[i] != other.UnaryOps[i])
return false;
}
}
if (BinaryOps != other.BinaryOps) {
if (BinaryOps == null || other.BinaryOps == null || BinaryOps.Count != other.BinaryOps.Count)
return false;
for (int i = 0; i < BinaryOps.Count; i++) {
if (BinaryOps[i] != other.BinaryOps[i])
return false;
}
}
return base.Equals(other);
}
public override bool Equals (object obj)
{
ClassRepTemplate temp = obj as ClassRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (ClassRepTemplate a1, ClassRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (ClassRepTemplate a1, ClassRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
int hashCode = base.GetHashCode ();
if (Constructors != null) {
foreach (ConstructorRepTemplate e in Constructors) {
hashCode ^= e.GetHashCode();
}
}
if (Fields != null) {
foreach (FieldRepTemplate e in Fields) {
hashCode ^= e.GetHashCode();
}
}
if (Casts != null) {
foreach (CastRepTemplate e in Casts) {
hashCode ^= e.GetHashCode();
}
}
return hashCode;
}
#endregion
}
[XmlType("Struct")]
public class StructRepTemplate : ClassRepTemplate, IEquatable<StructRepTemplate>
{
public StructRepTemplate ()
{
}
public StructRepTemplate (string typeName) : base(typeName)
{
}
public StructRepTemplate (string tName, string[] tParams, string[] usePath, AliasRepTemplate[] aliases, string[] inherits, List<ConstructorRepTemplate> cs, List<MethodRepTemplate> ms, List<PropRepTemplate> ps, List<FieldRepTemplate> fs, List<FieldRepTemplate> es, List<MethodRepTemplate> ixs, List<CastRepTemplate> cts,
string[] imports, string javaTemplate) : base(tName, tParams, usePath, aliases, inherits, cs, ms, ps, fs, es, ixs, cts,
imports, javaTemplate)
{
}
public StructRepTemplate (string tName, string[] tParams, string[] usePath, AliasRepTemplate[] aliases, string[] inherits, List<ConstructorRepTemplate> cs, List<MethodRepTemplate> ms, List<PropRepTemplate> ps, List<FieldRepTemplate> fs, List<FieldRepTemplate> es, List<MethodRepTemplate> ixs, List<CastRepTemplate> cts)
: base(tName, tParams, usePath, aliases, inherits, cs, ms, ps, fs, es, ixs, cts, null, null)
{
}
public override TypeRep mkEmptyRep ()
{
return new StructRep ();
}
public override ResolveResult Resolve(String name, DirectoryHT<TypeRepTemplate> AppEnv)
2011-01-13 10:38:33 +01:00
{
return base.Resolve(name, AppEnv);
}
#region Equality
public bool Equals (StructRepTemplate other)
{
return base.Equals(other);
}
public override bool Equals (object obj)
{
StructRepTemplate temp = obj as StructRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (StructRepTemplate a1, StructRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (StructRepTemplate a1, StructRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return base.GetHashCode ();
}
#endregion
}
[XmlType("UnknownType")]
// For now, making as compatible as we can so inheriting from struct
public class UnknownRepTemplate : StructRepTemplate, IEquatable<UnknownRepTemplate>
{
public UnknownRepTemplate ()
{
}
public UnknownRepTemplate (string typeName) : base(typeName)
{
2011-01-16 23:44:14 +01:00
Inherits = new String[] { "System.Object" };
}
2011-01-14 14:38:45 +01:00
public override string[] Imports {
get {
return new string[0];
}
}
public override TypeRep mkEmptyRep ()
{
// hmm, nothing appropriate, and this should be going away ....
return new InterfaceRep ();
}
#region Equality
public bool Equals (UnknownRepTemplate other)
{
return base.Equals(other);
}
public override bool Equals (object obj)
{
UnknownRepTemplate temp = obj as UnknownRepTemplate;
if (!Object.ReferenceEquals (temp, null))
return this.Equals (temp);
return false;
}
public static bool operator == (UnknownRepTemplate a1, UnknownRepTemplate a2)
{
return Object.Equals (a1, a2);
}
public static bool operator != (UnknownRepTemplate a1, UnknownRepTemplate a2)
{
return !(a1 == a2);
}
public override int GetHashCode ()
{
return base.GetHashCode ();
}
#endregion
}
2011-01-13 10:38:33 +01:00
public class ResolveResult
{
public TranslationBase Result
{
get; set;
}
public TypeRepTemplate ResultType
{
get; set;
}
}
2011-01-13 10:38:33 +01:00
}