HttpService.cs
6.93 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
using HHECS.BllModel;
using HHECS.DAQClient.Dto;
using HHECS.DAQClient.Model;
using System.IO.Compression;
using System.IO;
using System.Net.Http;
using System.Text;
using System.Text.Json;
using System.Net.Http.Headers;
namespace HHECS.DAQClient.Services
{
internal class HttpService
{
private readonly HttpClient _httpClient;
private readonly JsonSerializerOptions jsonSerializeOptions = new JsonSerializerOptions
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
PropertyNameCaseInsensitive = true
};
private readonly JsonSerializerOptions jsonDeserializeOptions = new JsonSerializerOptions
{
PropertyNameCaseInsensitive = true
};
public HttpService(HttpClient httpClient)
{
_httpClient = httpClient;
}
/// <summary>
/// 推送设备实时数据
/// </summary>
/// <param name="equipmentDataQueues"></param>
public BllResult SendEquipmentData(IEnumerable<EquipmentDataQueue> equipmentDataQueues)
{
try
{
var data = equipmentDataQueues.Select(x => new EquipmentDataDto
{
Plmeid = x.Id == Guid.Empty ? Guid.NewGuid() : x.Id,
EquipmentSN = x.EquipmentCode,
Reported = JsonSerializer.Deserialize<List<TagItem>>(x.Reported),
Version = x.Version,
Timestamp = x.SourceTimestamp,
}).ToList();
var json = JsonSerializer.Serialize(data, jsonSerializeOptions);
var compressedData = CompressString(json);
var content = new ByteArrayContent(compressedData);
// 设置请求头,指明内容是GZip压缩的
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
content.Headers.ContentEncoding.Add("gzip");
var result = _httpClient.PostAsync("Equipment/SendEquipmentData", content).Result;
var resultContent = result.Content.ReadAsStringAsync().Result;
if (result.IsSuccessStatusCode)
{
return JsonSerializer.Deserialize<BllResult>(resultContent, jsonDeserializeOptions);
}
if (string.IsNullOrEmpty(resultContent))
{
resultContent = result.ReasonPhrase;
}
return BllResultFactory.Error($"推送失败:{resultContent}");
}
catch (Exception ex)
{
return BllResultFactory.Error(ex.Message);
}
}
/// <summary>
/// 推送某一时间段的数据
/// </summary>
/// <param name="equipmentDataQueues"></param>
/// <returns></returns>
public BllResult SendEquipmentDataV2(IEnumerable<EquipmentDataQueue> equipmentDataQueues)
{
try
{
var data = equipmentDataQueues.Select(x => new EquipmentDataV2Dto
{
Plmeid = x.Id,
EquipmentSN = x.EquipmentCode,
Reported = JsonSerializer.Deserialize<List<TagItem>>(x.Reported),
Version = x.Version,
TimestampStart = x.SourceTimestamp,
TimestampEnd = (long)(x.SourceTimestamp + (x.Updated.Value - x.Created.Value).TotalMilliseconds),
});
var json = JsonSerializer.Serialize(data, jsonSerializeOptions);
var compressedData = CompressString(json);
var content = new ByteArrayContent(compressedData);
// 设置请求头,指明内容是GZip压缩的
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
content.Headers.ContentEncoding.Add("gzip");
var result = _httpClient.PostAsync("Equipment/SendEquipmentDataV2", content).Result;
var resultContent = result.Content.ReadAsStringAsync().Result;
if (result.IsSuccessStatusCode)
{
return JsonSerializer.Deserialize<BllResult>(resultContent, jsonDeserializeOptions);
}
if (string.IsNullOrEmpty(resultContent))
{
resultContent = result.ReasonPhrase;
}
return BllResultFactory.Error($"推送失败:{resultContent}");
}
catch (Exception ex)
{
return BllResultFactory.Error(ex.Message);
}
}
public BllResult UpdateClientStatus(Guid clientId)
{
try
{
var data = new
{
ClientId = clientId,
};
var json = JsonSerializer.Serialize(data, jsonSerializeOptions);
var compressedData = CompressString(json);
var temp = DecompressString(compressedData);
var content = new ByteArrayContent(compressedData);
// 设置请求头,指明内容是GZip压缩的
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
content.Headers.ContentEncoding.Add("gzip");
var result = _httpClient.PostAsync("Equipment/UpdateClientStatus", content).Result;
var resultContent = result.Content.ReadAsStringAsync().Result;
if (result.IsSuccessStatusCode)
{
return JsonSerializer.Deserialize<BllResult>(resultContent, jsonDeserializeOptions);
}
if (string.IsNullOrEmpty(resultContent))
{
resultContent = result.ReasonPhrase;
}
return BllResultFactory.Error($"推送失败:{resultContent}");
}
catch (Exception ex)
{
return BllResultFactory.Error(ex.Message);
}
}
/// <summary>
/// 数据压缩
/// </summary>
/// <param name="text"></param>
/// <returns></returns>
public static byte[] CompressString(string text)
{
byte[] buffer = Encoding.UTF8.GetBytes(text);
using var memoryStream = new MemoryStream();
using (var gZipStream = new GZipStream(memoryStream, CompressionMode.Compress, true))
{
gZipStream.Write(buffer, 0, buffer.Length);
}
return memoryStream.ToArray();
}
public static string DecompressString(byte[] gzip)
{
using var memoryStream = new MemoryStream(gzip);
using var gZipStream = new GZipStream(memoryStream, CompressionMode.Decompress);
using var streamReader = new StreamReader(gZipStream, Encoding.UTF8);
return streamReader.ReadToEnd();
}
}
}