-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy path2.cs
73 lines (64 loc) · 2.03 KB
/
2.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
internal static class Program
{
public static async Task Main(string[] args)
{
string fileName = args.Length > 0 ? args[0] : "sample";
if (args.Length < 2 || !int.TryParse(args[1], out int n))
{
n = 10;
}
string jsonStr = (await File.ReadAllTextAsync($"{fileName}.json").ConfigureAwait(false))!;
GeoData data = (JsonSerializer.Deserialize(jsonStr, MyJsonContext.Default.GeoData))!;
PrintHash(JsonSerializer.SerializeToUtf8Bytes(data, MyJsonContext.Default.GeoData));
GeoData[] array= new GeoData[n];
for (int i = 0; i < n; i++)
{
array[i] = JsonSerializer.Deserialize(jsonStr, MyJsonContext.Default.GeoData);
}
PrintHash(JsonSerializer.SerializeToUtf8Bytes(array));
}
private static void PrintHash(byte[] bytes)
{
using MD5 hasher = MD5.Create();
byte[] hash = hasher.ComputeHash(bytes);
Console.WriteLine(Convert.ToHexStringLower(hash));
}
}
internal sealed class GeoData
{
[JsonPropertyName("type")]
public string Type { get; set; }
[JsonPropertyName("features")]
public Feature[] Features { get; set; }
}
internal sealed class Feature
{
[JsonPropertyName("type")]
public string Type { get; set; }
[JsonPropertyName("properties")]
public Properties Properties { get; set; }
[JsonPropertyName("geometry")]
public Geometry Geometry { get; set; }
}
internal sealed class Properties
{
[JsonPropertyName("name")]
public string Name { get; set; }
}
internal sealed class Geometry
{
[JsonPropertyName("type")]
public string Type { get; set; }
[JsonPropertyName("coordinates")]
public double[][][] Coordinates { get; set; }
}
[JsonSerializable(typeof(GeoData))]
internal sealed partial class MyJsonContext : JsonSerializerContext { }