| Rev | Line | |
|---|
| [199] | 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.IO;
|
|---|
| 4 |
|
|---|
| [325] | 5 | namespace AllocsFixes.FileCache {
|
|---|
| [199] | 6 | // Caching all files, useful for completely static folders only
|
|---|
| [325] | 7 | public class SimpleCache : AbstractCache {
|
|---|
| 8 | private readonly Dictionary<string, byte[]> fileCache = new Dictionary<string, byte[]> ();
|
|---|
| [199] | 9 |
|
|---|
| [351] | 10 | public override byte[] GetFileContent (string _filename) {
|
|---|
| [199] | 11 | try {
|
|---|
| 12 | lock (fileCache) {
|
|---|
| [391] | 13 | if (fileCache.ContainsKey (_filename)) {
|
|---|
| 14 | return fileCache [_filename];
|
|---|
| 15 | }
|
|---|
| [199] | 16 |
|
|---|
| [391] | 17 | if (!File.Exists (_filename)) {
|
|---|
| 18 | return null;
|
|---|
| [199] | 19 | }
|
|---|
| 20 |
|
|---|
| [391] | 21 | fileCache.Add (_filename, File.ReadAllBytes (_filename));
|
|---|
| 22 |
|
|---|
| [351] | 23 | return fileCache [_filename];
|
|---|
| [199] | 24 | }
|
|---|
| 25 | } catch (Exception e) {
|
|---|
| 26 | Log.Out ("Error in SimpleCache.GetFileContent: " + e);
|
|---|
| 27 | }
|
|---|
| [325] | 28 |
|
|---|
| [199] | 29 | return null;
|
|---|
| 30 | }
|
|---|
| 31 | }
|
|---|
| [325] | 32 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.