[133] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.IO;
|
---|
| 4 | using System.Net;
|
---|
[134] | 5 | using System.Threading;
|
---|
[133] | 6 |
|
---|
| 7 | namespace AllocsFixes.NetConnections.Servers.Web
|
---|
| 8 | {
|
---|
| 9 | public class StaticHandler : PathHandler
|
---|
| 10 | {
|
---|
| 11 | private string datapath;
|
---|
| 12 | private string staticPart;
|
---|
| 13 | private bool cache;
|
---|
[134] | 14 | private bool logMissingFiles;
|
---|
[133] | 15 | private Dictionary<string, byte[]> fileCache = new Dictionary<string, byte[]> ();
|
---|
| 16 |
|
---|
[134] | 17 | public StaticHandler (string staticPart, string filePath, bool cache, bool logMissingFiles)
|
---|
[133] | 18 | {
|
---|
| 19 | this.staticPart = staticPart;
|
---|
| 20 | this.datapath = filePath;
|
---|
| 21 | this.cache = cache;
|
---|
[134] | 22 | this.logMissingFiles = logMissingFiles;
|
---|
[133] | 23 | }
|
---|
| 24 |
|
---|
[134] | 25 | public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, HttpListenerBasicIdentity user)
|
---|
[133] | 26 | {
|
---|
| 27 | try {
|
---|
| 28 | string fn = req.Url.AbsolutePath.Remove (0, staticPart.Length);
|
---|
| 29 |
|
---|
| 30 | byte[] content;
|
---|
| 31 | if (cache) {
|
---|
[189] | 32 | lock (fileCache) {
|
---|
[134] | 33 | if (!fileCache.ContainsKey (fn)) {
|
---|
| 34 | if (!File.Exists (datapath + "/" + fn)) {
|
---|
[154] | 35 | throw new FileNotFoundException ();
|
---|
[134] | 36 | }
|
---|
| 37 |
|
---|
| 38 | fileCache.Add (fn, File.ReadAllBytes (datapath + "/" + fn));
|
---|
[133] | 39 | }
|
---|
| 40 |
|
---|
[134] | 41 | content = fileCache [fn];
|
---|
[133] | 42 | }
|
---|
| 43 | } else {
|
---|
| 44 | if (!File.Exists (datapath + "/" + fn)) {
|
---|
[154] | 45 | throw new FileNotFoundException ();
|
---|
[133] | 46 | }
|
---|
| 47 |
|
---|
| 48 | content = File.ReadAllBytes (datapath + "/" + fn);
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | resp.ContentType = MimeType.GetMimeType (Path.GetExtension (fn));
|
---|
| 52 | resp.ContentLength64 = content.Length;
|
---|
| 53 | resp.OutputStream.Write (content, 0, content.Length);
|
---|
[189] | 54 | } catch (FileNotFoundException) {
|
---|
[154] | 55 | resp.StatusCode = (int)HttpStatusCode.NotFound;
|
---|
| 56 | if (logMissingFiles)
|
---|
| 57 | Log.Out ("Web:Static:FileNotFound: \"" + req.Url.AbsolutePath + "\" @ \"" + datapath + "/" + req.Url.AbsolutePath.Remove (0, staticPart.Length) + "\"");
|
---|
| 58 | return;
|
---|
[133] | 59 | } catch (Exception e) {
|
---|
| 60 | Log.Out ("Error in StaticHandler.HandleRequest: " + e);
|
---|
| 61 | }
|
---|
| 62 | }
|
---|
| 63 | }
|
---|
| 64 | }
|
---|
| 65 |
|
---|