-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathImportController.cs
98 lines (90 loc) · 3.08 KB
/
ImportController.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
using DBExportor.Pods;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace DBExportor.Controllers
{
[Route("import")]
public class ImportController : ControllerBase
{
private readonly ILogger<ImportController> LOG;
public ImportController(ILogger<ImportController> logger)
{
LOG = logger;
}
[HttpGet("begin")]
public IActionResult BeginDB()
{
if (string.IsNullOrEmpty(ObjName))
return StatusCode(404);
var fname = $"{Program.DBFolder}/ZhiHuExtDB-{ObjName}.json";
using (var reader = new JsonTextReader(new StreamReader(System.IO.File.OpenRead(fname))))
{
try
{
var db = Serializer.Deserialize<StandardDB>(reader);
if (!NewDB(db))
return StatusCode(500);
}
catch (Exception e)
{
LOG.LogError(e.Message);
return StatusCode(500);
}
}
GC.Collect(2, GCCollectionMode.Optimized, false, true);
return Ok("ok");
}
[HttpGet("finish")]
public IActionResult OutputDB([FromQuery]bool shouldKeep = false)
{
if (!TryGetDB(out var obj))
return StatusCode(404);
if (!shouldKeep)
DelDB();
return Ok("ok");
}
[HttpGet("accept")]
public IActionResult AcceptRecords([FromQuery]string table, [FromQuery]uint from, [FromQuery]uint limit)
{
if (!TryGetDB(out var db))
return StatusCode(404);
if (!DBExtensions.PodTypeMap.TryGetValue(table, out var tableinfo))
return StatusCode(400);
HttpContext.Response.ContentType = "text/plain; charset=utf-8";
using (var writer = new JsonTextWriter(new StreamWriter(HttpContext.Response.Body)))
{
try
{
var list = tableinfo.GetTable(db);
var size = tableinfo.GetCount(list);
if (from >= size)
writer.WriteRaw("[]");
else
{
limit = Math.Min(limit, size - from);
var records = list.GetRange((int)from, (int)limit);
Serializer.Serialize(writer, records);
}
}
catch (Exception e)
{
LOG.LogError(e.Message);
return StatusCode(500);
}
GC.Collect(2, GCCollectionMode.Optimized, false, true);
return new EmptyResult();
}
}
[HttpGet("breakpoint")]
public void BreakPoint()
{
Console.WriteLine($"[break]{DBList}");
}
}
}