aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorAdam Frisby2008-08-30 04:42:23 +0000
committerAdam Frisby2008-08-30 04:42:23 +0000
commitf57f4d1ab878eef5c75347a1f49690993cf98561 (patch)
treec43e1978ec3b7f8c67154a9d114105bc62adbb16 /OpenSim/Framework
parentUpdate TESTING.txt documentation. (diff)
downloadopensim-SC_OLD-f57f4d1ab878eef5c75347a1f49690993cf98561.zip
opensim-SC_OLD-f57f4d1ab878eef5c75347a1f49690993cf98561.tar.gz
opensim-SC_OLD-f57f4d1ab878eef5c75347a1f49690993cf98561.tar.bz2
opensim-SC_OLD-f57f4d1ab878eef5c75347a1f49690993cf98561.tar.xz
* Added "File Asset Client" to OpenSim Asset Server-types.
* You can replace "grid" as the asset system with "file" to save and load all your assets from a directory on your hard disk. Files are serialised to XML and saved in the format "/<dir>/0x/0x/0x/0000-0000-000000-0000-0000.xml" * Directory <dir> is sharing the Asset Server URL path, use a normal path here instead (ie C:\xyz or /var/assets/). * This probably wont work well in grid mode unless every sim has access to the same directory. This is mostly intended for standalone usage where quick and convenient access to assets is required.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Communications/Cache/FileAssetClient.cs56
1 files changed, 56 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Cache/FileAssetClient.cs b/OpenSim/Framework/Communications/Cache/FileAssetClient.cs
new file mode 100644
index 0000000..fcab349
--- /dev/null
+++ b/OpenSim/Framework/Communications/Cache/FileAssetClient.cs
@@ -0,0 +1,56 @@
1using System.IO;
2using System.Xml.Serialization;
3
4namespace OpenSim.Framework.Communications.Cache
5{
6 public class FileAssetClient : AssetServerBase
7 {
8 private readonly string m_dir;
9 private readonly XmlSerializer m_xs = new XmlSerializer(typeof(AssetBase));
10
11 public FileAssetClient(string dir)
12 {
13 if(!Directory.Exists(dir))
14 {
15 Directory.CreateDirectory(dir);
16 }
17 m_dir = dir;
18 }
19 public override void StoreAsset(AssetBase asset)
20 {
21 string cdir = m_dir + Path.DirectorySeparatorChar + asset.FullID.Data[0]
22 + Path.DirectorySeparatorChar + asset.FullID.Data[1];
23
24 if (!Directory.Exists(m_dir + Path.DirectorySeparatorChar + asset.FullID.Data[0]))
25 Directory.CreateDirectory(m_dir + Path.DirectorySeparatorChar + asset.FullID.Data[0]);
26
27 if (!Directory.Exists(cdir))
28 Directory.CreateDirectory(cdir);
29
30 FileStream x = new FileStream(cdir + Path.DirectorySeparatorChar + asset.FullID + ".xml", FileMode.Create);
31 m_xs.Serialize(x, asset);
32
33 x.Flush();
34 x.Close();
35 }
36
37 public override void UpdateAsset(AssetBase asset)
38 {
39 StoreAsset(asset);
40 }
41
42 protected override AssetBase GetAsset(AssetRequest req)
43 {
44 string cdir = m_dir + Path.DirectorySeparatorChar + req.AssetID.Data[0]
45 + Path.DirectorySeparatorChar + req.AssetID.Data[1];
46 if (File.Exists(cdir + Path.DirectorySeparatorChar + req.AssetID + ".xml"))
47 {
48 FileStream x = File.OpenRead(cdir + Path.DirectorySeparatorChar + req.AssetID + ".xml");
49 AssetBase ret = (AssetBase) m_xs.Deserialize(x);
50 x.Close();
51 return ret;
52 }
53 return null;
54 }
55 }
56}