-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathApiParameterContextExtensions.cs
131 lines (121 loc) · 6.93 KB
/
ApiParameterContextExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
using System.Buffers;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Text;
using System.Text.Json;
using WebApiClientCore.Internals;
using WebApiClientCore.Serialization;
namespace WebApiClientCore
{
/// <summary>
/// 提供ApiParameterContext的扩展
/// </summary>
public static class ApiParameterContextExtensions
{
/// <summary>
/// 序列化参数值为 utf8 编码的 json
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
public static byte[] SerializeToJson(this ApiParameterContext context)
{
return context.SerializeToJson(Encoding.UTF8);
}
/// <summary>
/// 序列化参数值为指定编码的Json
/// </summary>
/// <param name="context"></param>
/// <param name="encoding">编码</param>
/// <returns></returns>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
public static byte[] SerializeToJson(this ApiParameterContext context, Encoding encoding)
{
using var bufferWriter = new RecyclableBufferWriter<byte>();
context.SerializeToJson(bufferWriter);
if (Encoding.UTF8.Equals(encoding) == true)
{
return bufferWriter.WrittenSpan.ToArray();
}
else
{
var utf8Json = bufferWriter.WrittenSegment;
return Encoding.Convert(Encoding.UTF8, encoding, utf8Json.Array!, utf8Json.Offset, utf8Json.Count);
}
}
/// <summary>
/// 序列化参数值为 utf8 编码的 json
/// </summary>
/// <param name="context"></param>
/// <param name="bufferWriter">buffer写入器</param>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
public static void SerializeToJson(this ApiParameterContext context, IBufferWriter<byte> bufferWriter)
{
var options = context.HttpContext.HttpApiOptions.JsonSerializeOptions;
JsonBufferSerializer.Serialize(bufferWriter, context.ParameterValue, options);
}
/// <summary>
/// 序列化参数值为 json 文本
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
public static string? SerializeToJsonString(this ApiParameterContext context)
{
var value = context.ParameterValue;
if (value == null)
{
return null;
}
var options = context.HttpContext.HttpApiOptions.JsonSerializeOptions;
return JsonSerializer.Serialize(value, value.GetType(), options);
}
/// <summary>
/// 序列化参数值为Xml
/// </summary>
/// <param name="context"></param>
/// <param name="encoding">xml的编码</param>
/// <returns></returns>
[RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
public static string? SerializeToXml(this ApiParameterContext context, Encoding? encoding)
{
using var bufferWriter = new RecyclableBufferWriter<char>();
context.SerializeToXml(encoding, bufferWriter);
return bufferWriter.WrittenSpan.ToString();
}
/// <summary>
/// 序列化参数值为Xml
/// </summary>
/// <param name="context"></param>
/// <param name="bufferWriter">数据写入器</param>
/// <param name="encoding">xml的编码</param>
/// <returns></returns>
[RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
public static void SerializeToXml(this ApiParameterContext context, Encoding? encoding, IBufferWriter<char> bufferWriter)
{
var options = context.HttpContext.HttpApiOptions.XmlSerializeOptions;
if (encoding != null && encoding.Equals(options.Encoding) == false)
{
options = options.Clone();
options.Encoding = encoding;
}
XmlSerializer.Serialize(context.ParameterValue, options, bufferWriter);
}
/// <summary>
/// 序列化参数值为键值对
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
public static IList<KeyValue> SerializeToKeyValues(this ApiParameterContext context)
{
var options = context.HttpContext.HttpApiOptions.KeyValueSerializeOptions;
return KeyValueSerializer.Serialize(context.ParameterName, context.ParameterValue, options);
}
}
}