Bumped package version to 1.3.9 added support for Enum code generation and support for inherited types.

This commit is contained in:
MattMo 2023-03-23 08:23:08 -07:00
parent 7fd42ae81b
commit fafdb48d51
4 changed files with 70 additions and 18 deletions

View File

@ -12,7 +12,14 @@ namespace MontoyaTech.Rest.Net.Example
{
public class Program
{
public class User
public class BaseUser
{
public string Id;
public UserRole Role { get; set; }
}
public class User : BaseUser
{
public string Name = null;
@ -28,6 +35,13 @@ namespace MontoyaTech.Rest.Net.Example
}
}
public enum UserRole : byte
{
Unknown = 0,
Admin = 2,
User = 1
}
public static RouteFileCache FileCache = new RouteFileCache(100 * 1024 * 1024);
public static void Main(string[] args)
@ -41,7 +55,8 @@ namespace MontoyaTech.Rest.Net.Example
new Route(HttpRequestMethod.Get, "/file/compress", CompressFile),
new Route<string>(HttpRequestMethod.Get, "/auth/{username}", Exists),
new Route(HttpRequestMethod.Post, "/auth/signup", Signup),
new Route(HttpRequestMethod.Get, "/auth/", Json)
new Route(HttpRequestMethod.Get, "/auth/", Json),
new Route(HttpRequestMethod.Get, "/auth/role", GetRole)
);
string code = listener.GenerateCSharpClient();
@ -129,6 +144,13 @@ namespace MontoyaTech.Rest.Net.Example
return context.Response.WithStatus(HttpStatusCode.OK);
}
[RouteGroup("Auth")]
[RouteResponse(typeof(UserRole))]
public static HttpListenerResponse GetRole(HttpListenerContext context)
{
return context.Response.WithStatus(HttpStatusCode.OK).WithJson(UserRole.Admin);
}
[RouteGroup("Auth")]
[RouteName("Get")]
[RouteResponse(typeof(User))]

View File

@ -17,7 +17,7 @@
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.3.8</Version>
<Version>1.3.9</Version>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
</PropertyGroup>
@ -33,4 +33,8 @@
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="MontoyaTech.Rest.Net.Tests" />
</ItemGroup>
</Project>

View File

@ -157,7 +157,7 @@ namespace MontoyaTech.Rest.Net
/// </summary>
/// <param name="types"></param>
/// <param name="writer"></param>
protected virtual void GenerateCSharpIncludedTypes(List<Type> types, CodeWriter writer)
protected internal virtual void GenerateCSharpIncludedTypes(List<Type> types, CodeWriter writer)
{
foreach (var type in types)
this.GenerateCSharpIncludedType(type, writer);
@ -168,24 +168,36 @@ namespace MontoyaTech.Rest.Net
/// </summary>
/// <param name="type"></param>
/// <param name="writer"></param>
protected virtual void GenerateCSharpIncludedType(Type type, CodeWriter writer)
protected internal virtual void GenerateCSharpIncludedType(Type type, CodeWriter writer)
{
writer.WriteBreak();
writer.WriteLine($"public class {type.Name}").WriteLine("{").Indent();
writer.Write($"public {(type.IsEnum ? "enum" : "class")} {type.Name}");
var fields = type.GetFields();
if (type.IsEnum)
writer.Write(" : ").Write(this.GetTypeFullyResolvedName(Enum.GetUnderlyingType(type)));
else if (!(IsTypeDotNet(type.BaseType) && type.BaseType.Name == "Object"))
writer.Write(" : ").Write(this.GetTypeFullyResolvedName(type.BaseType));
writer.NewLine().WriteLine("{").Indent();
FieldInfo[] fields = null;
if (type.IsEnum)
fields = type.GetFields(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.Static);
else
fields = type.GetFields(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public);
if (fields != null)
foreach (var field in fields)
if (field.IsPublic)
if (field.IsPublic && !field.IsSpecialName)
this.GenerateCSharpIncludedField(field, writer);
var properties = type.GetProperties();
var properties = type.GetProperties(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public);
if (properties != null)
foreach (var property in properties)
if (property.GetSetMethod() != null && property.GetGetMethod() != null)
if (!property.IsSpecialName && property.GetSetMethod() != null && property.GetGetMethod() != null)
this.GenerateCSharpIncludedProperty(property, writer);
writer.Outdent().WriteLine("}");
@ -196,11 +208,14 @@ namespace MontoyaTech.Rest.Net
/// </summary>
/// <param name="field"></param>
/// <param name="writer"></param>
protected virtual void GenerateCSharpIncludedField(FieldInfo field, CodeWriter writer)
protected internal virtual void GenerateCSharpIncludedField(FieldInfo field, CodeWriter writer)
{
writer.WriteBreak();
writer.WriteLine($"public {this.GetTypeFullyResolvedName(field.FieldType)} {field.Name};");
if (field.DeclaringType.IsEnum)
writer.WriteLine($"{field.Name} = {field.GetRawConstantValue()},");
else
writer.WriteLine($"public {this.GetTypeFullyResolvedName(field.FieldType)} {field.Name};");
}
/// <summary>
@ -208,7 +223,7 @@ namespace MontoyaTech.Rest.Net
/// </summary>
/// <param name="property"></param>
/// <param name="writer"></param>
protected virtual void GenerateCSharpIncludedProperty(PropertyInfo property, CodeWriter writer)
protected internal virtual void GenerateCSharpIncludedProperty(PropertyInfo property, CodeWriter writer)
{
writer.WriteBreak();
@ -220,7 +235,7 @@ namespace MontoyaTech.Rest.Net
/// </summary>
/// <param name="groups"></param>
/// <param name="writer"></param>
protected virtual void GenerateCSharpRouteGroups(Dictionary<string, List<Route>> groups, CodeWriter writer)
protected internal virtual void GenerateCSharpRouteGroups(Dictionary<string, List<Route>> groups, CodeWriter writer)
{
foreach (var group in groups)
this.GenerateCSharpRouteGroup(group.Key, group.Value, writer);
@ -232,7 +247,7 @@ namespace MontoyaTech.Rest.Net
/// <param name="name"></param>
/// <param name="routes"></param>
/// <param name="writer"></param>
protected virtual void GenerateCSharpRouteGroup(string name, List<Route> routes, CodeWriter writer)
protected internal virtual void GenerateCSharpRouteGroup(string name, List<Route> routes, CodeWriter writer)
{
writer.WriteBreak();
@ -270,7 +285,7 @@ namespace MontoyaTech.Rest.Net
/// <param name="route"></param>
/// <param name="writer"></param>
/// <exception cref="NotSupportedException"></exception>
protected virtual void GenerateCSharpRouteFunction(Route route, CodeWriter writer)
protected internal virtual void GenerateCSharpRouteFunction(Route route, CodeWriter writer)
{
writer.WriteBreak();

View File

@ -49,6 +49,17 @@ namespace MontoyaTech.Rest.Net
dependencies.Add(type);
if (type.IsEnum)
return dependencies.ToList();
{
var types = this.FindTypeDependencies(type.BaseType);
for (int i = 0; i < types.Count; i++)
if (!dependencies.Contains(types[i]))
dependencies.Add(types[i]);
}
var arguments = type.GetGenericArguments();
if (arguments != null)
@ -69,7 +80,7 @@ namespace MontoyaTech.Rest.Net
{
foreach (var field in fields)
{
if (field.IsPublic)
if (field.IsPublic && !field.IsSpecialName)
{
var types = this.FindTypeDependencies(field.FieldType);
@ -86,7 +97,7 @@ namespace MontoyaTech.Rest.Net
{
foreach (var property in properties)
{
if (property.GetSetMethod() != null && property.GetGetMethod() != null)
if (!property.IsSpecialName && property.GetSetMethod() != null && property.GetGetMethod() != null)
{
var types = this.FindTypeDependencies(property.PropertyType);