1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Net;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | using AllocsFixes.JSON;
|
---|
7 | using System.IO;
|
---|
8 | using System.Net.Sockets;
|
---|
9 | using System.Threading;
|
---|
10 | using AllocsFixes.NetConnections.Servers.Web.API;
|
---|
11 |
|
---|
12 | namespace AllocsFixes.NetConnections.Servers.Web
|
---|
13 | {
|
---|
14 | public class WebCommandResult : IConsoleConnection
|
---|
15 | {
|
---|
16 | public enum ResultType {
|
---|
17 | Full,
|
---|
18 | ResultOnly,
|
---|
19 | Raw
|
---|
20 | }
|
---|
21 |
|
---|
22 | public static int handlingCount = 0;
|
---|
23 | public static int currentHandlers = 0;
|
---|
24 | public static long totalHandlingTime = 0;
|
---|
25 |
|
---|
26 | private HttpListenerResponse response;
|
---|
27 | private string command;
|
---|
28 | private string parameters;
|
---|
29 | private ResultType responseType;
|
---|
30 |
|
---|
31 | public WebCommandResult (string _command, string _parameters, ResultType _responseType, HttpListenerResponse _response) {
|
---|
32 | Interlocked.Increment (ref handlingCount);
|
---|
33 | Interlocked.Increment (ref currentHandlers);
|
---|
34 |
|
---|
35 | response = _response;
|
---|
36 | command = _command;
|
---|
37 | parameters = _parameters;
|
---|
38 | responseType = _responseType;
|
---|
39 | }
|
---|
40 |
|
---|
41 | public void SendLines (List<string> _output) {
|
---|
42 | MicroStopwatch msw = new MicroStopwatch ();
|
---|
43 |
|
---|
44 | StringBuilder sb = new StringBuilder ();
|
---|
45 | foreach (string line in _output) {
|
---|
46 | sb.AppendLine (line);
|
---|
47 | }
|
---|
48 |
|
---|
49 | try {
|
---|
50 | response.SendChunked = false;
|
---|
51 |
|
---|
52 | if (responseType == ResultType.Raw) {
|
---|
53 | WebAPI.WriteText (response, sb.ToString ());
|
---|
54 | } else {
|
---|
55 | JSONNode result;
|
---|
56 | if (responseType == ResultType.ResultOnly) {
|
---|
57 | result = new JSONString (sb.ToString ());
|
---|
58 | } else {
|
---|
59 | JSONObject resultObj = new JSONObject ();
|
---|
60 |
|
---|
61 | resultObj.Add ("command", new JSONString (command));
|
---|
62 | resultObj.Add ("parameters", new JSONString (parameters));
|
---|
63 | resultObj.Add ("result", new JSONString (sb.ToString ()));
|
---|
64 |
|
---|
65 | result = resultObj;
|
---|
66 | }
|
---|
67 | WebAPI.WriteJSON (response, result);
|
---|
68 | }
|
---|
69 | } catch (IOException e) {
|
---|
70 | if (e.InnerException is SocketException) {
|
---|
71 | Log.Out ("Error in WebCommandResult.SendLines(): Remote host closed connection: " + e.InnerException.Message);
|
---|
72 | } else {
|
---|
73 | Log.Out ("Error (IO) in WebCommandResult.SendLines(): " + e);
|
---|
74 | }
|
---|
75 | } catch (Exception e) {
|
---|
76 | Log.Out ("Error in WebCommandResult.SendLines(): " + e);
|
---|
77 | } finally {
|
---|
78 | if (response != null) {
|
---|
79 | response.Close ();
|
---|
80 | }
|
---|
81 |
|
---|
82 | msw.Stop ();
|
---|
83 | if (GamePrefs.GetInt (EnumGamePrefs.HideCommandExecutionLog) < 1) {
|
---|
84 | totalHandlingTime += msw.ElapsedMicroseconds;
|
---|
85 | Log.Out ("WebCommandResult.SendLines(): Took {0} µs", msw.ElapsedMicroseconds);
|
---|
86 | }
|
---|
87 | Interlocked.Decrement (ref currentHandlers);
|
---|
88 | }
|
---|
89 | }
|
---|
90 |
|
---|
91 | public void SendLine (string _text) {
|
---|
92 | //throw new NotImplementedException ();
|
---|
93 | }
|
---|
94 |
|
---|
95 | public void SendLog (string _msg, string _trace, UnityEngine.LogType _type) {
|
---|
96 | //throw new NotImplementedException ();
|
---|
97 | }
|
---|
98 |
|
---|
99 | public void EnableLogLevel (UnityEngine.LogType _type, bool _enable) {
|
---|
100 | //throw new NotImplementedException ();
|
---|
101 | }
|
---|
102 |
|
---|
103 | public string GetDescription () {
|
---|
104 | return "WebCommandResult_for_" + command;
|
---|
105 | }
|
---|
106 | }
|
---|
107 | }
|
---|
108 |
|
---|