123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- using System;
- using System.Collections.Specialized;
- using System.IO;
- using System.Net;
- using System.Net.Sockets;
- using System.Text;
- using System.Threading.Tasks;
- namespace OSHttpServer
- {
- public class HttpResponse : IHttpResponse
- {
- public event EventHandler<BandWitdhEventArgs> BandWitdhEvent;
- private const string DefaultContentType = "text/html;charset=UTF-8";
- private readonly IHttpClientContext m_context;
- private readonly ResponseCookies m_cookies = new ResponseCookies();
- private readonly NameValueCollection m_headers = new NameValueCollection();
- private string m_httpVersion;
- private Stream m_body;
- private long m_contentLength;
- private string m_contentType;
- private Encoding m_encoding = Encoding.UTF8;
- private int m_keepAlive = 60;
- public uint requestID { get; private set; }
- public byte[] RawBuffer { get; set; }
- public int RawBufferStart { get; set; }
- public int RawBufferLen { get; set; }
- public double RequestTS { get; private set; }
- internal byte[] m_headerBytes = null;
- /// <summary>
- /// Initializes a new instance of the <see cref="IHttpResponse"/> class.
- /// </summary>
- /// <param name="context">Client that send the <see cref="IHttpRequest"/>.</param>
- /// <param name="request">Contains information of what the client want to receive.</param>
- /// <exception cref="ArgumentException"><see cref="IHttpRequest.HttpVersion"/> cannot be empty.</exception>
- public HttpResponse(IHttpRequest request)
- {
- m_httpVersion = request.HttpVersion;
- if (string.IsNullOrEmpty(m_httpVersion))
- m_httpVersion = "HTTP/1.1";
- Status = HttpStatusCode.OK;
- m_context = request.Context;
- m_Connetion = request.Connection;
- requestID = request.ID;
- RequestTS = request.ArrivalTS;
- RawBufferStart = -1;
- RawBufferLen = -1;
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="IHttpResponse"/> class.
- /// </summary>
- /// <param name="context">Client that send the <see cref="IHttpRequest"/>.</param>
- /// <param name="httpVersion">Version of HTTP protocol that the client uses.</param>
- /// <param name="connectionType">Type of HTTP connection used.</param>
- internal HttpResponse(IHttpClientContext context, string httpVersion, ConnectionType connectionType)
- {
- Status = HttpStatusCode.OK;
- m_context = context;
- m_httpVersion = httpVersion;
- m_Connetion = connectionType;
- }
- private ConnectionType m_Connetion;
- public ConnectionType Connection
- {
- get { return m_Connetion; }
- set { m_Connetion = value; }
- }
- private int m_priority = 0;
- public int Priority
- {
- get { return m_priority;}
- set { m_priority = (value > 0 && m_priority < 3)? value : 0;}
- }
- #region IHttpResponse Members
- /// <summary>
- /// The body stream is used to cache the body contents
- /// before sending everything to the client. It's the simplest
- /// way to serve documents.
- /// </summary>
- public Stream Body
- {
- get
- {
- if(m_body == null)
- m_body = new MemoryStream();
- return m_body;
- }
- }
- /// <summary>
- /// The chunked encoding modifies the body of a message in order to
- /// transfer it as a series of chunks, each with its own size indicator,
- /// followed by an OPTIONAL trailer containing entity-header fields. This
- /// allows dynamically produced content to be transferred along with the
- /// information necessary for the recipient to verify that it has
- /// received the full message.
- /// </summary>
- public bool Chunked { get; set; }
- /// <summary>
- /// Defines the version of the HTTP Response for applications where it's required
- /// for this to be forced.
- /// </summary>
- public string ProtocolVersion
- {
- get { return m_httpVersion; }
- set { m_httpVersion = value; }
- }
- /// <summary>
- /// Encoding to use when sending stuff to the client.
- /// </summary>
- /// <remarks>Default is UTF8</remarks>
- public Encoding Encoding
- {
- get { return m_encoding; }
- set { m_encoding = value; }
- }
- /// <summary>
- /// Number of seconds to keep connection alive
- /// </summary>
- /// <remarks>Only used if Connection property is set to <see cref="ConnectionType.KeepAlive"/>.</remarks>
- public int KeepAlive
- {
- get { return m_keepAlive; }
- set
- {
- if (value > 400)
- m_keepAlive = 400;
- else if (value <= 0)
- m_keepAlive = 0;
- else
- m_keepAlive = value;
- }
- }
- /// <summary>
- /// Status code that is sent to the client.
- /// </summary>
- /// <remarks>Default is <see cref="HttpStatusCode.OK"/></remarks>
- public HttpStatusCode Status { get; set; }
- /// <summary>
- /// Information about why a specific status code was used.
- /// </summary>
- public string Reason { get; set; }
- /// <summary>
- /// Size of the body. MUST be specified before sending the header,
- /// </summary>
- public long ContentLength
- {
- get { return m_contentLength; }
- set { m_contentLength = value; }
- }
- /// <summary>
- /// Kind of content
- /// </summary>
- /// <remarks>Default type is "text/html"</remarks>
- public string ContentType
- {
- get { return m_contentType; }
- set { m_contentType = value; }
- }
- /// <summary>
- /// Headers have been sent to the client-
- /// </summary>
- /// <remarks>You can not send any additional headers if they have already been sent.</remarks>
- public bool HeadersSent { get; private set; }
- /// <summary>
- /// The whole response have been sent.
- /// </summary>
- public bool Sent { get; private set; }
- /// <summary>
- /// Cookies that should be created/changed.
- /// </summary>
- public ResponseCookies Cookies
- {
- get { return m_cookies; }
- }
- /// <summary>
- /// Add another header to the document.
- /// </summary>
- /// <param name="name">Name of the header, case sensitive, use lower cases.</param>
- /// <param name="value">Header values can span over multiple lines as long as each line starts with a white space. New line chars should be \r\n</param>
- /// <exception cref="InvalidOperationException">If headers already been sent.</exception>
- /// <exception cref="ArgumentException">If value conditions have not been met.</exception>
- /// <remarks>Adding any header will override the default ones and those specified by properties.</remarks>
- public void AddHeader(string name, string value)
- {
- if (HeadersSent)
- throw new InvalidOperationException("Headers have already been sent.");
- for (int i = 1; i < value.Length; ++i)
- {
- if (value[i] == '\r' && !char.IsWhiteSpace(value[i - 1]))
- throw new ArgumentException("New line in value do not start with a white space.");
- if (value[i] == '\n' && value[i - 1] != '\r')
- throw new ArgumentException("Invalid new line sequence, should be \\r\\n (crlf).");
- }
- m_headers[name] = value;
- }
- public byte[] GetHeaders()
- {
- HeadersSent = true;
- var sb = new StringBuilder();
- if(string.IsNullOrWhiteSpace(m_httpVersion))
- sb.AppendFormat("HTTP/1.1 {0} {1}\r\n", (int)Status,
- string.IsNullOrEmpty(Reason) ? Status.ToString() : Reason);
- else
- sb.AppendFormat("{0} {1} {2}\r\n", m_httpVersion, (int)Status,
- string.IsNullOrEmpty(Reason) ? Status.ToString() : Reason);
- if (m_headers["Date"] == null)
- sb.AppendFormat("Date: {0}\r\n", DateTime.Now.ToString("r"));
- if (m_headers["Content-Length"] == null)
- {
- long len = m_contentLength;
- if (len == 0)
- {
- len = Body.Length;
- if (RawBuffer != null && RawBufferLen > 0)
- len += RawBufferLen;
- }
- sb.AppendFormat("Content-Length: {0}\r\n", len);
- }
- if (m_headers["Content-Type"] == null)
- sb.AppendFormat("Content-Type: {0}\r\n", m_contentType ?? DefaultContentType);
- if (m_headers["Server"] == null)
- sb.Append("Server: OSWebServer\r\n");
- if(Status != HttpStatusCode.OK)
- {
- sb.Append("Connection: close\r\n");
- Connection = ConnectionType.Close;
- }
- else
- {
- int keepaliveS = m_context.TimeoutKeepAlive / 1000;
- if (Connection == ConnectionType.KeepAlive && keepaliveS > 0 && m_context.MaxRequests > 0)
- {
- sb.AppendFormat("Keep-Alive:timeout={0}, max={1}\r\n", keepaliveS, m_context.MaxRequests);
- sb.Append("Connection: Keep-Alive\r\n");
- }
- else
- {
- sb.Append("Connection: close\r\n");
- Connection = ConnectionType.Close;
- }
- }
- if (m_headers["Connection"] != null)
- m_headers["Connection"] = null;
- if (m_headers["Keep-Alive"] != null)
- m_headers["Keep-Alive"] = null;
- for (int i = 0; i < m_headers.Count; ++i)
- {
- string headerName = m_headers.AllKeys[i];
- string[] values = m_headers.GetValues(i);
- if (values == null) continue;
- foreach (string value in values)
- sb.AppendFormat("{0}: {1}\r\n", headerName, value);
- }
- foreach (ResponseCookie cookie in Cookies)
- sb.AppendFormat("Set-Cookie: {0}\r\n", cookie);
- sb.Append("\r\n");
- m_headers.Clear();
- return Encoding.GetBytes(sb.ToString());
- }
- public void Send()
- {
- if(m_context.IsClosing)
- return;
- if (Sent)
- throw new InvalidOperationException("Everything have already been sent.");
- if (m_context.MaxRequests == 0 || m_keepAlive == 0)
- {
- Connection = ConnectionType.Close;
- m_context.TimeoutKeepAlive = 0;
- }
- else
- {
- if (m_keepAlive > 0)
- m_context.TimeoutKeepAlive = m_keepAlive * 1000;
- }
- if (RawBuffer != null)
- {
- if (RawBufferStart > RawBuffer.Length)
- return;
- if (RawBufferStart < 0)
- RawBufferStart = 0;
- if (RawBufferLen < 0)
- RawBufferLen = RawBuffer.Length;
- if (RawBufferLen + RawBufferStart > RawBuffer.Length)
- RawBufferLen = RawBuffer.Length - RawBufferStart;
- }
- m_headerBytes = GetHeaders();
- /*
- if (RawBuffer != null)
- {
- int tlen = m_headerBytes.Length + RawBufferLen;
- if(RawBufferLen > 0 && tlen < 16384)
- {
- byte[] tmp = new byte[tlen];
- Buffer.BlockCopy(m_headerBytes, 0, tmp, 0, m_headerBytes.Length);
- Buffer.BlockCopy(RawBuffer, RawBufferStart, tmp, m_headerBytes.Length, RawBufferLen);
- m_headerBytes = null;
- RawBuffer = tmp;
- RawBufferStart = 0;
- RawBufferLen = tlen;
- }
- }
- */
- m_context.StartSendResponse(this);
- }
- public async Task SendNextAsync(int bytesLimit)
- {
- if (m_headerBytes != null)
- {
- if(!await m_context.SendAsync(m_headerBytes, 0, m_headerBytes.Length).ConfigureAwait(false))
- {
- if (m_context.CanSend())
- {
- m_context.ContinueSendResponse(true);
- return;
- }
- if (m_body != null)
- m_body.Dispose();
- RawBuffer = null;
- Sent = true;
- return;
- }
- bytesLimit -= m_headerBytes.Length;
- m_headerBytes = null;
- if(bytesLimit <= 0)
- {
- m_context.ContinueSendResponse(true);
- return;
- }
- }
- if (RawBuffer != null)
- {
- if (RawBufferLen > 0)
- {
- if(BandWitdhEvent!=null)
- bytesLimit = CheckBandwidth(RawBufferLen, bytesLimit);
- bool sendRes;
- if(RawBufferLen > bytesLimit)
- {
- sendRes = (await m_context.SendAsync(RawBuffer, RawBufferStart, bytesLimit).ConfigureAwait(false));
- if (sendRes)
- {
- RawBufferLen -= bytesLimit;
- RawBufferStart += bytesLimit;
- }
- }
- else
- {
- sendRes = await m_context.SendAsync(RawBuffer, RawBufferStart, RawBufferLen).ConfigureAwait(false);
- if(sendRes)
- RawBufferLen = 0;
- }
- if (!sendRes)
- {
- if (m_context.CanSend())
- {
- m_context.ContinueSendResponse(true);
- return;
- }
- RawBuffer = null;
- if(m_body != null)
- Body.Dispose();
- Sent = true;
- return;
- }
- }
- if (RawBufferLen <= 0)
- RawBuffer = null;
- else
- {
- m_context.ContinueSendResponse(true);
- return;
- }
- }
- if (m_body != null && m_body.Length != 0)
- {
- MemoryStream mb = m_body as MemoryStream;
- RawBuffer = mb.GetBuffer();
- RawBufferStart = 0; // must be a internal buffer, or starting at 0
- RawBufferLen = (int)mb.Length;
- mb.Dispose();
- m_body = null;
- if(RawBufferLen > 0)
- {
- bool sendRes;
- if (RawBufferLen > bytesLimit)
- {
- sendRes = await m_context.SendAsync(RawBuffer, RawBufferStart, bytesLimit).ConfigureAwait(false);
- if (sendRes)
- {
- RawBufferLen -= bytesLimit;
- RawBufferStart += bytesLimit;
- }
- }
- else
- {
- sendRes = await m_context.SendAsync(RawBuffer, RawBufferStart, RawBufferLen).ConfigureAwait(false);
- if (sendRes)
- RawBufferLen = 0;
- }
- if (!sendRes)
- {
- if (m_context.CanSend())
- {
- m_context.ContinueSendResponse(true);
- return;
- }
- RawBuffer = null;
- Sent = true;
- return;
- }
- }
- if (RawBufferLen > 0)
- {
- m_context.ContinueSendResponse(false);
- return;
- }
- }
- if (m_body != null)
- m_body.Dispose();
- Sent = true;
- m_context.EndSendResponse(requestID, Connection);
- }
- private int CheckBandwidth(int request, int bytesLimit)
- {
- if(request > bytesLimit)
- request = bytesLimit;
- var args = new BandWitdhEventArgs(request);
- BandWitdhEvent?.Invoke(this, args);
- if(args.Result > 8196)
- return args.Result;
- return 8196;
- }
- public void Clear()
- {
- if(Body != null && Body.CanRead)
- Body.Dispose();
- }
- #endregion
- }
- }
|