source: binary-improvements2/MapRendering/Web/WebCommandResult.cs@ 387

Last change on this file since 387 was 387, checked in by alloc, 2 years ago

Big refactoring in Web to pass around a Context instead of a bunch of individual arguments all the time

File size: 3.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.IO;
4using System.Net.Sockets;
5using System.Text;
6using System.Threading;
7using AllocsFixes.JSON;
8using AllocsFixes.NetConnections.Servers.Web.API;
9using UnityEngine;
10using HttpListenerResponse = SpaceWizards.HttpListener.HttpListenerResponse;
11
12namespace AllocsFixes.NetConnections.Servers.Web {
13 public class WebCommandResult : IConsoleConnection {
14 public enum ResultType {
15 Full,
16 ResultOnly,
17 Raw
18 }
19
20 public static int handlingCount;
21 public static int currentHandlers;
22 public static long totalHandlingTime;
23 private readonly string command;
24 private readonly string parameters;
25
26 private readonly HttpListenerResponse response;
27 private readonly ResultType responseType;
28
29 public WebCommandResult (string _command, string _parameters, ResultType _responseType, HttpListenerResponse _response) {
30 Interlocked.Increment (ref handlingCount);
31 Interlocked.Increment (ref currentHandlers);
32
33 response = _response;
34 command = _command;
35 parameters = _parameters;
36 responseType = _responseType;
37 }
38
39 public void SendLines (List<string> _output) {
40// MicroStopwatch msw = new MicroStopwatch ();
41
42 StringBuilder sb = new StringBuilder ();
43 foreach (string line in _output) {
44 sb.AppendLine (line);
45 }
46
47 try {
48 response.SendChunked = false;
49
50 if (responseType == ResultType.Raw) {
51 WebUtils.WriteText (response, sb.ToString ());
52 } else {
53 JSONNode result;
54 if (responseType == ResultType.ResultOnly) {
55 result = new JSONString (sb.ToString ());
56 } else {
57 JSONObject resultObj = new JSONObject ();
58
59 resultObj.Add ("command", new JSONString (command));
60 resultObj.Add ("parameters", new JSONString (parameters));
61 resultObj.Add ("result", new JSONString (sb.ToString ()));
62
63 result = resultObj;
64 }
65
66 WebUtils.WriteJson (response, result);
67 }
68 } catch (IOException e) {
69 if (e.InnerException is SocketException) {
70 Log.Out ("Error in WebCommandResult.SendLines(): Remote host closed connection: " +
71 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
88 Interlocked.Decrement (ref currentHandlers);
89 }
90 }
91
92 public void SendLine (string _text) {
93 //throw new NotImplementedException ();
94 }
95
96 public void SendLog (string _formattedMessage, string _plainMessage, string _trace, LogType _type, DateTime _timestamp, long _uptime) {
97 //throw new NotImplementedException ();
98 }
99
100 public void EnableLogLevel (LogType _type, bool _enable) {
101 //throw new NotImplementedException ();
102 }
103
104 public string GetDescription () {
105 return "WebCommandResult_for_" + command;
106 }
107 }
108}
Note: See TracBrowser for help on using the repository browser.