mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-05 22:47:00 +00:00
apply resharper's code style
This commit is contained in:
parent
1697db9d7f
commit
7fad829dd2
776 changed files with 14393 additions and 24502 deletions
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
|
||||
</startup>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
|
||||
</startup>
|
||||
</configuration>
|
||||
|
|
@ -1,36 +1,38 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json.Schema;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace TeleSharp.Generator
|
||||
{
|
||||
class Method
|
||||
internal class Method
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string method { get; set; }
|
||||
|
||||
[Newtonsoft.Json.JsonProperty("params")]
|
||||
public List<Param> Params { get; set; }
|
||||
public string type { get; set; }
|
||||
|
||||
public string type { get; set; }
|
||||
}
|
||||
class Param
|
||||
|
||||
internal class Param
|
||||
{
|
||||
public string name { get; set; }
|
||||
public string type { get; set; }
|
||||
}
|
||||
class Constructor
|
||||
|
||||
internal class Constructor
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string predicate { get; set; }
|
||||
|
||||
[Newtonsoft.Json.JsonProperty("params")]
|
||||
public List<Param> Params { get; set; }
|
||||
|
||||
public string type { get; set; }
|
||||
}
|
||||
class Schema
|
||||
|
||||
internal class Schema
|
||||
{
|
||||
public List<Constructor> constructors { get; set; }
|
||||
public List<Method> methods { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,35 +1,44 @@
|
|||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.CodeDom;
|
||||
using System.Reflection;
|
||||
using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace TeleSharp.Generator
|
||||
{
|
||||
class Program
|
||||
internal class Program
|
||||
{
|
||||
static List<String> keywords = new List<string>(new string[] { "abstract", "as", "base", "bool", "break", "byte", "case", "catch", "char", "checked", "class", "const", "continue", "decimal", "default", "delegate", "do", "double", "else", "enum", "event", "explicit", "extern", "false", "finally", "fixed", "float", "for", "foreach", "goto", "if", "implicit", "in", "in", "int", "interface", "internal", "is", "lock", "long", "namespace", "new", "null", "object", "operator", "out", "out", "override", "params", "private", "protected", "public", "readonly", "ref", "return", "sbyte", "sealed", "short", "sizeof", "stackalloc", "static", "string", "struct", "switch", "this", "throw", "true", "try", "typeof", "uint", "ulong", "unchecked", "unsafe", "ushort", "using", "virtual", "void", "volatile", "while", "add", "alias", "ascending", "async", "await", "descending", "dynamic", "from", "get", "global", "group", "into", "join", "let", "orderby", "partial", "partial", "remove", "select", "set", "value", "var", "where", "where", "yield" });
|
||||
static List<String> interfacesList = new List<string>();
|
||||
static List<String> classesList = new List<string>();
|
||||
static void Main(string[] args)
|
||||
private static readonly List<string> keywords = new List<string>(new[]
|
||||
{
|
||||
"abstract", "as", "base", "bool", "break", "byte", "case", "catch", "char", "checked", "class", "const",
|
||||
"continue", "decimal", "default", "delegate", "do", "double", "else", "enum", "event", "explicit", "extern",
|
||||
"false", "finally", "fixed", "float", "for", "foreach", "goto", "if", "implicit", "in", "in", "int",
|
||||
"interface", "internal", "is", "lock", "long", "namespace", "new", "null", "object", "operator", "out",
|
||||
"out", "override", "params", "private", "protected", "public", "readonly", "ref", "return", "sbyte",
|
||||
"sealed", "short", "sizeof", "stackalloc", "static", "string", "struct", "switch", "this", "throw", "true",
|
||||
"try", "typeof", "uint", "ulong", "unchecked", "unsafe", "ushort", "using", "virtual", "void", "volatile",
|
||||
"while", "add", "alias", "ascending", "async", "await", "descending", "dynamic", "from", "get", "global",
|
||||
"group", "into", "join", "let", "orderby", "partial", "partial", "remove", "select", "set", "value", "var",
|
||||
"where", "where", "yield"
|
||||
});
|
||||
|
||||
string AbsStyle = File.ReadAllText("ConstructorAbs.tmp");
|
||||
string NormalStyle = File.ReadAllText("Constructor.tmp");
|
||||
string MethodStyle = File.ReadAllText("Method.tmp");
|
||||
private static readonly List<string> interfacesList = new List<string>();
|
||||
private static readonly List<string> classesList = new List<string>();
|
||||
|
||||
private static void Main(string[] args)
|
||||
{
|
||||
var AbsStyle = File.ReadAllText("ConstructorAbs.tmp");
|
||||
var NormalStyle = File.ReadAllText("Constructor.tmp");
|
||||
var MethodStyle = File.ReadAllText("Method.tmp");
|
||||
//string method = File.ReadAllText("constructor.tt");
|
||||
string Json = "";
|
||||
var Json = "";
|
||||
string url;
|
||||
if (args.Count() == 0) url = "tl-schema.json"; else url = args[0];
|
||||
if (args.Count() == 0) url = "tl-schema.json";
|
||||
else url = args[0];
|
||||
|
||||
Json = File.ReadAllText(url);
|
||||
FileStream file = File.OpenWrite("Result.cs");
|
||||
StreamWriter sw = new StreamWriter(file);
|
||||
var file = File.OpenWrite("Result.cs");
|
||||
var sw = new StreamWriter(file);
|
||||
Schema schema = JsonConvert.DeserializeObject<Schema>(Json);
|
||||
foreach (var c in schema.constructors)
|
||||
{
|
||||
|
|
@ -41,14 +50,19 @@ namespace TeleSharp.Generator
|
|||
var list = schema.constructors.Where(x => x.type == c.type);
|
||||
if (list.Count() > 1)
|
||||
{
|
||||
string path = (GetNameSpace(c.type).Replace("TeleSharp.TL", "TL\\").Replace(".", "") + "\\" + GetNameofClass(c.type, true) + ".cs").Replace("\\\\", "\\");
|
||||
FileStream classFile = MakeFile(path);
|
||||
using (StreamWriter writer = new StreamWriter(classFile))
|
||||
var path = (GetNameSpace(c.type).Replace("TeleSharp.TL", "TL\\").Replace(".", "") + "\\" +
|
||||
GetNameofClass(c.type, true) + ".cs").Replace("\\\\", "\\");
|
||||
var classFile = MakeFile(path);
|
||||
using (var writer = new StreamWriter(classFile))
|
||||
{
|
||||
string nspace = (GetNameSpace(c.type).Replace("TeleSharp.TL", "TL\\").Replace(".", "")).Replace("\\\\", "\\").Replace("\\", ".");
|
||||
var nspace = GetNameSpace(c.type)
|
||||
.Replace("TeleSharp.TL", "TL\\")
|
||||
.Replace(".", "")
|
||||
.Replace("\\\\", "\\")
|
||||
.Replace("\\", ".");
|
||||
if (nspace.EndsWith("."))
|
||||
nspace = nspace.Remove(nspace.Length - 1, 1);
|
||||
string temp = AbsStyle.Replace("/* NAMESPACE */", "TeleSharp." + nspace);
|
||||
var temp = AbsStyle.Replace("/* NAMESPACE */", "TeleSharp." + nspace);
|
||||
temp = temp.Replace("/* NAME */", GetNameofClass(c.type, true));
|
||||
writer.Write(temp);
|
||||
writer.Close();
|
||||
|
|
@ -63,65 +77,85 @@ namespace TeleSharp.Generator
|
|||
}
|
||||
foreach (var c in schema.constructors)
|
||||
{
|
||||
string path = (GetNameSpace(c.predicate).Replace("TeleSharp.TL", "TL\\").Replace(".", "") + "\\" + GetNameofClass(c.predicate, false) + ".cs").Replace("\\\\", "\\");
|
||||
FileStream classFile = MakeFile(path);
|
||||
using (StreamWriter writer = new StreamWriter(classFile))
|
||||
var path = (GetNameSpace(c.predicate).Replace("TeleSharp.TL", "TL\\").Replace(".", "") + "\\" +
|
||||
GetNameofClass(c.predicate, false) + ".cs").Replace("\\\\", "\\");
|
||||
var classFile = MakeFile(path);
|
||||
using (var writer = new StreamWriter(classFile))
|
||||
{
|
||||
#region About Class
|
||||
string nspace = (GetNameSpace(c.predicate).Replace("TeleSharp.TL", "TL\\").Replace(".", "")).Replace("\\\\", "\\").Replace("\\", ".");
|
||||
|
||||
var nspace = GetNameSpace(c.predicate)
|
||||
.Replace("TeleSharp.TL", "TL\\")
|
||||
.Replace(".", "")
|
||||
.Replace("\\\\", "\\")
|
||||
.Replace("\\", ".");
|
||||
if (nspace.EndsWith("."))
|
||||
nspace = nspace.Remove(nspace.Length - 1, 1);
|
||||
string temp = NormalStyle.Replace("/* NAMESPACE */", "TeleSharp." + nspace);
|
||||
temp = (c.type == "himself") ? temp.Replace("/* PARENT */", "TLObject") : temp.Replace("/* PARENT */", GetNameofClass(c.type, true));
|
||||
var temp = NormalStyle.Replace("/* NAMESPACE */", "TeleSharp." + nspace);
|
||||
temp = c.type == "himself"
|
||||
? temp.Replace("/* PARENT */", "TLObject")
|
||||
: temp.Replace("/* PARENT */", GetNameofClass(c.type, true));
|
||||
temp = temp.Replace("/*Constructor*/", c.id.ToString());
|
||||
temp = temp.Replace("/* NAME */", GetNameofClass(c.predicate, false));
|
||||
|
||||
#endregion
|
||||
|
||||
#region Fields
|
||||
string fields = "";
|
||||
|
||||
var fields = "";
|
||||
foreach (var tmp in c.Params)
|
||||
{
|
||||
fields += $" public {CheckForFlagBase(tmp.type, GetTypeName(tmp.type))} {CheckForKeyword(tmp.name)} " + "{get;set;}" + Environment.NewLine;
|
||||
}
|
||||
fields +=
|
||||
$" public {CheckForFlagBase(tmp.type, GetTypeName(tmp.type))} {CheckForKeyword(tmp.name)} " +
|
||||
"{get;set;}" + Environment.NewLine;
|
||||
temp = temp.Replace("/* PARAMS */", fields);
|
||||
|
||||
#endregion
|
||||
|
||||
#region ComputeFlagFunc
|
||||
if (!c.Params.Any(x => x.name == "flags")) temp = temp.Replace("/* COMPUTE */", "");
|
||||
|
||||
if (!c.Params.Any(x => x.name == "flags"))
|
||||
{
|
||||
temp = temp.Replace("/* COMPUTE */", "");
|
||||
}
|
||||
else
|
||||
{
|
||||
var compute = "flags = 0;" + Environment.NewLine;
|
||||
foreach (var param in c.Params.Where(x => IsFlagBase(x.type)))
|
||||
{
|
||||
if (IsTrueFlag(param.type))
|
||||
{
|
||||
compute += $"flags = {CheckForKeyword(param.name)} ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" + Environment.NewLine;
|
||||
}
|
||||
compute +=
|
||||
$"flags = {CheckForKeyword(param.name)} ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" +
|
||||
Environment.NewLine;
|
||||
else
|
||||
{
|
||||
compute += $"flags = {CheckForKeyword(param.name)} != null ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" + Environment.NewLine;
|
||||
}
|
||||
}
|
||||
compute +=
|
||||
$"flags = {CheckForKeyword(param.name)} != null ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" +
|
||||
Environment.NewLine;
|
||||
temp = temp.Replace("/* COMPUTE */", compute);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region SerializeFunc
|
||||
|
||||
var serialize = "";
|
||||
|
||||
if (c.Params.Any(x => x.name == "flags")) serialize += "ComputeFlags();" + Environment.NewLine + "bw.Write(flags);" + Environment.NewLine;
|
||||
if (c.Params.Any(x => x.name == "flags"))
|
||||
serialize += "ComputeFlags();" + Environment.NewLine + "bw.Write(flags);" + Environment.NewLine;
|
||||
foreach (var p in c.Params.Where(x => x.name != "flags"))
|
||||
{
|
||||
serialize += WriteWriteCode(p) + Environment.NewLine;
|
||||
}
|
||||
temp = temp.Replace("/* SERIALIZE */", serialize);
|
||||
|
||||
#endregion
|
||||
|
||||
#region DeSerializeFunc
|
||||
|
||||
var deserialize = "";
|
||||
|
||||
foreach (var p in c.Params)
|
||||
{
|
||||
deserialize += WriteReadCode(p) + Environment.NewLine;
|
||||
}
|
||||
temp = temp.Replace("/* DESERIALIZE */", deserialize);
|
||||
|
||||
#endregion
|
||||
|
||||
writer.Write(temp);
|
||||
writer.Close();
|
||||
classFile.Close();
|
||||
|
|
@ -129,151 +163,174 @@ namespace TeleSharp.Generator
|
|||
}
|
||||
foreach (var c in schema.methods)
|
||||
{
|
||||
string path = (GetNameSpace(c.method).Replace("TeleSharp.TL", "TL\\").Replace(".", "") + "\\" + GetNameofClass(c.method, false, true) + ".cs").Replace("\\\\", "\\");
|
||||
FileStream classFile = MakeFile(path);
|
||||
using (StreamWriter writer = new StreamWriter(classFile))
|
||||
var path = (GetNameSpace(c.method).Replace("TeleSharp.TL", "TL\\").Replace(".", "") + "\\" +
|
||||
GetNameofClass(c.method, false, true) + ".cs").Replace("\\\\", "\\");
|
||||
var classFile = MakeFile(path);
|
||||
using (var writer = new StreamWriter(classFile))
|
||||
{
|
||||
#region About Class
|
||||
string nspace = (GetNameSpace(c.method).Replace("TeleSharp.TL", "TL\\").Replace(".", "")).Replace("\\\\", "\\").Replace("\\", ".");
|
||||
|
||||
var nspace = GetNameSpace(c.method)
|
||||
.Replace("TeleSharp.TL", "TL\\")
|
||||
.Replace(".", "")
|
||||
.Replace("\\\\", "\\")
|
||||
.Replace("\\", ".");
|
||||
if (nspace.EndsWith("."))
|
||||
nspace = nspace.Remove(nspace.Length - 1, 1);
|
||||
string temp = MethodStyle.Replace("/* NAMESPACE */", "TeleSharp." + nspace);
|
||||
var temp = MethodStyle.Replace("/* NAMESPACE */", "TeleSharp." + nspace);
|
||||
temp = temp.Replace("/* PARENT */", "TLMethod");
|
||||
temp = temp.Replace("/*Constructor*/", c.id.ToString());
|
||||
temp = temp.Replace("/* NAME */", GetNameofClass(c.method, false, true));
|
||||
|
||||
#endregion
|
||||
|
||||
#region Fields
|
||||
string fields = "";
|
||||
|
||||
var fields = "";
|
||||
foreach (var tmp in c.Params)
|
||||
{
|
||||
fields += $" public {CheckForFlagBase(tmp.type, GetTypeName(tmp.type))} {CheckForKeyword(tmp.name)} " + "{get;set;}" + Environment.NewLine;
|
||||
}
|
||||
fields += $" public {CheckForFlagBase(c.type, GetTypeName(c.type))} Response" + "{ get; set;}" + Environment.NewLine;
|
||||
fields +=
|
||||
$" public {CheckForFlagBase(tmp.type, GetTypeName(tmp.type))} {CheckForKeyword(tmp.name)} " +
|
||||
"{get;set;}" + Environment.NewLine;
|
||||
fields += $" public {CheckForFlagBase(c.type, GetTypeName(c.type))} Response" +
|
||||
"{ get; set;}" + Environment.NewLine;
|
||||
temp = temp.Replace("/* PARAMS */", fields);
|
||||
|
||||
#endregion
|
||||
|
||||
#region ComputeFlagFunc
|
||||
if (!c.Params.Any(x => x.name == "flags")) temp = temp.Replace("/* COMPUTE */", "");
|
||||
|
||||
if (!c.Params.Any(x => x.name == "flags"))
|
||||
{
|
||||
temp = temp.Replace("/* COMPUTE */", "");
|
||||
}
|
||||
else
|
||||
{
|
||||
var compute = "flags = 0;" + Environment.NewLine;
|
||||
foreach (var param in c.Params.Where(x => IsFlagBase(x.type)))
|
||||
{
|
||||
if (IsTrueFlag(param.type))
|
||||
{
|
||||
compute += $"flags = {CheckForKeyword(param.name)} ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" + Environment.NewLine;
|
||||
}
|
||||
compute +=
|
||||
$"flags = {CheckForKeyword(param.name)} ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" +
|
||||
Environment.NewLine;
|
||||
else
|
||||
{
|
||||
compute += $"flags = {CheckForKeyword(param.name)} != null ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" + Environment.NewLine;
|
||||
}
|
||||
}
|
||||
compute +=
|
||||
$"flags = {CheckForKeyword(param.name)} != null ? (flags | {GetBitMask(param.type)}) : (flags & ~{GetBitMask(param.type)});" +
|
||||
Environment.NewLine;
|
||||
temp = temp.Replace("/* COMPUTE */", compute);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region SerializeFunc
|
||||
|
||||
var serialize = "";
|
||||
|
||||
if (c.Params.Any(x => x.name == "flags")) serialize += "ComputeFlags();" + Environment.NewLine + "bw.Write(flags);" + Environment.NewLine;
|
||||
if (c.Params.Any(x => x.name == "flags"))
|
||||
serialize += "ComputeFlags();" + Environment.NewLine + "bw.Write(flags);" + Environment.NewLine;
|
||||
foreach (var p in c.Params.Where(x => x.name != "flags"))
|
||||
{
|
||||
serialize += WriteWriteCode(p) + Environment.NewLine;
|
||||
}
|
||||
temp = temp.Replace("/* SERIALIZE */", serialize);
|
||||
|
||||
#endregion
|
||||
|
||||
#region DeSerializeFunc
|
||||
|
||||
var deserialize = "";
|
||||
|
||||
foreach (var p in c.Params)
|
||||
{
|
||||
deserialize += WriteReadCode(p) + Environment.NewLine;
|
||||
}
|
||||
temp = temp.Replace("/* DESERIALIZE */", deserialize);
|
||||
|
||||
#endregion
|
||||
|
||||
#region DeSerializeRespFunc
|
||||
|
||||
var deserializeResp = "";
|
||||
Param p2 = new Param() { name = "Response", type = c.type };
|
||||
var p2 = new Param {name = "Response", type = c.type};
|
||||
deserializeResp += WriteReadCode(p2) + Environment.NewLine;
|
||||
temp = temp.Replace("/* DESERIALIZEResp */", deserializeResp);
|
||||
|
||||
#endregion
|
||||
|
||||
writer.Write(temp);
|
||||
writer.Close();
|
||||
classFile.Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static string FormatName(string input)
|
||||
{
|
||||
if (String.IsNullOrEmpty(input))
|
||||
if (string.IsNullOrEmpty(input))
|
||||
throw new ArgumentException("ARGH!");
|
||||
if (input.IndexOf('.') != -1)
|
||||
{
|
||||
input = input.Replace(".", " ");
|
||||
var temp = "";
|
||||
foreach (var s in input.Split(' '))
|
||||
{
|
||||
temp += FormatName(s) + " ";
|
||||
}
|
||||
input = temp.Trim();
|
||||
}
|
||||
return input.First().ToString().ToUpper() + input.Substring(1);
|
||||
}
|
||||
|
||||
public static string CheckForKeyword(string name)
|
||||
{
|
||||
if (keywords.Contains(name)) return "@" + name;
|
||||
return name;
|
||||
}
|
||||
|
||||
public static string GetNameofClass(string type, bool isinterface = false, bool ismethod = false)
|
||||
{
|
||||
if (!ismethod)
|
||||
{
|
||||
if (type.IndexOf('.') != -1 && type.IndexOf('?') == -1)
|
||||
return isinterface ? "TLAbs" + FormatName(type.Split('.')[1]) : "TL" + FormatName(type.Split('.')[1]);
|
||||
return isinterface
|
||||
? "TLAbs" + FormatName(type.Split('.')[1])
|
||||
: "TL" + FormatName(type.Split('.')[1]);
|
||||
else if (type.IndexOf('.') != -1 && type.IndexOf('?') != -1)
|
||||
return isinterface ? "TLAbs" + FormatName(type.Split('?')[1]) : "TL" + FormatName(type.Split('?')[1]);
|
||||
return isinterface
|
||||
? "TLAbs" + FormatName(type.Split('?')[1])
|
||||
: "TL" + FormatName(type.Split('?')[1]);
|
||||
else
|
||||
return isinterface ? "TLAbs" + FormatName(type) : "TL" + FormatName(type);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (type.IndexOf('.') != -1 && type.IndexOf('?') == -1)
|
||||
return "TLRequest" + FormatName(type.Split('.')[1]);
|
||||
else if (type.IndexOf('.') != -1 && type.IndexOf('?') != -1)
|
||||
return "TLRequest" + FormatName(type.Split('?')[1]);
|
||||
else
|
||||
return "TLRequest" + FormatName(type);
|
||||
}
|
||||
if (type.IndexOf('.') != -1 && type.IndexOf('?') == -1)
|
||||
return "TLRequest" + FormatName(type.Split('.')[1]);
|
||||
if (type.IndexOf('.') != -1 && type.IndexOf('?') != -1)
|
||||
return "TLRequest" + FormatName(type.Split('?')[1]);
|
||||
return "TLRequest" + FormatName(type);
|
||||
}
|
||||
|
||||
private static bool IsFlagBase(string type)
|
||||
{
|
||||
return type.IndexOf("?") != -1;
|
||||
}
|
||||
|
||||
private static int GetBitMask(string type)
|
||||
{
|
||||
return (int)Math.Pow((double)2, (double)int.Parse(type.Split('?')[0].Split('.')[1]));
|
||||
return (int) Math.Pow(2, int.Parse(type.Split('?')[0].Split('.')[1]));
|
||||
}
|
||||
|
||||
private static bool IsTrueFlag(string type)
|
||||
{
|
||||
return type.Split('?')[1] == "true";
|
||||
}
|
||||
|
||||
public static string GetNameSpace(string type)
|
||||
{
|
||||
if (type.IndexOf('.') != -1)
|
||||
return "TeleSharp.TL" + FormatName(type.Split('.')[0]);
|
||||
else
|
||||
return "TeleSharp.TL";
|
||||
return "TeleSharp.TL";
|
||||
}
|
||||
|
||||
public static string CheckForFlagBase(string type, string result)
|
||||
{
|
||||
if (type.IndexOf('?') == -1)
|
||||
return result;
|
||||
else
|
||||
{
|
||||
string innerType = type.Split('?')[1];
|
||||
if (innerType == "true") return result;
|
||||
else if ((new string[] { "bool", "int", "uint", "long", "double" }).Contains(result)) return result + "?";
|
||||
else return result;
|
||||
}
|
||||
var innerType = type.Split('?')[1];
|
||||
if (innerType == "true") return result;
|
||||
if (new[] {"bool", "int", "uint", "long", "double"}.Contains(result)) return result + "?";
|
||||
return result;
|
||||
}
|
||||
|
||||
public static string GetTypeName(string type)
|
||||
{
|
||||
switch (type.ToLower())
|
||||
|
|
@ -308,75 +365,74 @@ namespace TeleSharp.Generator
|
|||
|
||||
|
||||
if (type.IndexOf('.') != -1 && type.IndexOf('?') == -1)
|
||||
{
|
||||
|
||||
if (interfacesList.Any(x => x.ToLower() == (type).ToLower()))
|
||||
if (interfacesList.Any(x => x.ToLower() == type.ToLower()))
|
||||
return FormatName(type.Split('.')[0]) + "." + "TLAbs" + type.Split('.')[1];
|
||||
else if (classesList.Any(x => x.ToLower() == (type).ToLower()))
|
||||
else if (classesList.Any(x => x.ToLower() == type.ToLower()))
|
||||
return FormatName(type.Split('.')[0]) + "." + "TL" + type.Split('.')[1];
|
||||
else
|
||||
return FormatName(type.Split('.')[1]);
|
||||
}
|
||||
else if (type.IndexOf('?') == -1)
|
||||
{
|
||||
if (type.IndexOf('?') == -1)
|
||||
if (interfacesList.Any(x => x.ToLower() == type.ToLower()))
|
||||
return "TLAbs" + type;
|
||||
else if (classesList.Any(x => x.ToLower() == type.ToLower()))
|
||||
return "TL" + type;
|
||||
else
|
||||
return type;
|
||||
}
|
||||
else
|
||||
{
|
||||
return GetTypeName(type.Split('?')[1]);
|
||||
}
|
||||
|
||||
|
||||
return GetTypeName(type.Split('?')[1]);
|
||||
}
|
||||
|
||||
public static string LookTypeInLists(string src)
|
||||
{
|
||||
if (interfacesList.Any(x => x.ToLower() == src.ToLower()))
|
||||
return "TLAbs" + FormatName(src);
|
||||
else if (classesList.Any(x => x.ToLower() == src.ToLower()))
|
||||
if (classesList.Any(x => x.ToLower() == src.ToLower()))
|
||||
return "TL" + FormatName(src);
|
||||
else
|
||||
return src;
|
||||
return src;
|
||||
}
|
||||
|
||||
public static string WriteWriteCode(Param p, bool flag = false)
|
||||
{
|
||||
switch (p.type.ToLower())
|
||||
{
|
||||
case "#":
|
||||
case "int":
|
||||
return flag ? $"bw.Write({CheckForKeyword(p.name)}.Value);" : $"bw.Write({CheckForKeyword(p.name)});";
|
||||
return flag
|
||||
? $"bw.Write({CheckForKeyword(p.name)}.Value);"
|
||||
: $"bw.Write({CheckForKeyword(p.name)});";
|
||||
case "long":
|
||||
return flag ? $"bw.Write({CheckForKeyword(p.name)}.Value);" : $"bw.Write({CheckForKeyword(p.name)});";
|
||||
return flag
|
||||
? $"bw.Write({CheckForKeyword(p.name)}.Value);"
|
||||
: $"bw.Write({CheckForKeyword(p.name)});";
|
||||
case "string":
|
||||
return $"StringUtil.Serialize({CheckForKeyword(p.name)},bw);";
|
||||
case "bool":
|
||||
return flag ? $"BoolUtil.Serialize({CheckForKeyword(p.name)}.Value,bw);" : $"BoolUtil.Serialize({CheckForKeyword(p.name)},bw);";
|
||||
return flag
|
||||
? $"BoolUtil.Serialize({CheckForKeyword(p.name)}.Value,bw);"
|
||||
: $"BoolUtil.Serialize({CheckForKeyword(p.name)},bw);";
|
||||
case "true":
|
||||
return $"BoolUtil.Serialize({CheckForKeyword(p.name)},bw);";
|
||||
case "bytes":
|
||||
return $"BytesUtil.Serialize({CheckForKeyword(p.name)},bw);";
|
||||
case "double":
|
||||
return flag ? $"bw.Write({CheckForKeyword(p.name)}.Value);" : $"bw.Write({CheckForKeyword(p.name)});";
|
||||
return flag
|
||||
? $"bw.Write({CheckForKeyword(p.name)}.Value);"
|
||||
: $"bw.Write({CheckForKeyword(p.name)});";
|
||||
default:
|
||||
if (!IsFlagBase(p.type))
|
||||
{
|
||||
return $"ObjectUtils.SerializeObject({CheckForKeyword(p.name)},bw);";
|
||||
}
|
||||
else
|
||||
{
|
||||
if (IsTrueFlag(p.type))
|
||||
return $"";
|
||||
else
|
||||
{
|
||||
Param p2 = new Param() { name = p.name, type = p.type.Split('?')[1] };
|
||||
return $"if ((flags & {GetBitMask(p.type).ToString()}) != 0)" + Environment.NewLine +
|
||||
WriteWriteCode(p2, true);
|
||||
}
|
||||
var p2 = new Param {name = p.name, type = p.type.Split('?')[1]};
|
||||
return $"if ((flags & {GetBitMask(p.type)}) != 0)" + Environment.NewLine +
|
||||
WriteWriteCode(p2, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static string WriteReadCode(Param p)
|
||||
{
|
||||
switch (p.type.ToLower())
|
||||
|
|
@ -399,26 +455,25 @@ namespace TeleSharp.Generator
|
|||
if (!IsFlagBase(p.type))
|
||||
{
|
||||
if (p.type.ToLower().Contains("vector"))
|
||||
{
|
||||
return $"{CheckForKeyword(p.name)} = ({GetTypeName(p.type)})ObjectUtils.DeserializeVector<{GetTypeName(p.type).Replace("TLVector<", "").Replace(">", "")}>(br);";
|
||||
}
|
||||
else return $"{CheckForKeyword(p.name)} = ({GetTypeName(p.type)})ObjectUtils.DeserializeObject(br);";
|
||||
return
|
||||
$"{CheckForKeyword(p.name)} = ({GetTypeName(p.type)})ObjectUtils.DeserializeVector<{GetTypeName(p.type).Replace("TLVector<", "").Replace(">", "")}>(br);";
|
||||
return $"{CheckForKeyword(p.name)} = ({GetTypeName(p.type)})ObjectUtils.DeserializeObject(br);";
|
||||
}
|
||||
else
|
||||
{
|
||||
if (IsTrueFlag(p.type))
|
||||
return $"{CheckForKeyword(p.name)} = (flags & {GetBitMask(p.type).ToString()}) != 0;";
|
||||
else
|
||||
{
|
||||
Param p2 = new Param() { name = p.name, type = p.type.Split('?')[1] };
|
||||
return $"if ((flags & {GetBitMask(p.type).ToString()}) != 0)" + Environment.NewLine +
|
||||
WriteReadCode(p2) + Environment.NewLine +
|
||||
"else" + Environment.NewLine +
|
||||
$"{CheckForKeyword(p.name)} = null;" + Environment.NewLine;
|
||||
return $"{CheckForKeyword(p.name)} = (flags & {GetBitMask(p.type)}) != 0;";
|
||||
}
|
||||
var p2 = new Param {name = p.name, type = p.type.Split('?')[1]};
|
||||
return $"if ((flags & {GetBitMask(p.type)}) != 0)" + Environment.NewLine +
|
||||
WriteReadCode(p2) + Environment.NewLine +
|
||||
"else" + Environment.NewLine +
|
||||
$"{CheckForKeyword(p.name)} = null;" + Environment.NewLine;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static FileStream MakeFile(string path)
|
||||
{
|
||||
if (!Directory.Exists(Path.GetDirectoryName(path)))
|
||||
|
|
@ -428,5 +483,4 @@ namespace TeleSharp.Generator
|
|||
return File.OpenWrite(path);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
|
|
@ -33,4 +32,4 @@ using System.Runtime.InteropServices;
|
|||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<packages>
|
||||
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net452" />
|
||||
</packages>
|
||||
Loading…
Add table
Add a link
Reference in a new issue