diff options
author | Adam Frisby | 2008-08-30 04:42:23 +0000 |
---|---|---|
committer | Adam Frisby | 2008-08-30 04:42:23 +0000 |
commit | f57f4d1ab878eef5c75347a1f49690993cf98561 (patch) | |
tree | c43e1978ec3b7f8c67154a9d114105bc62adbb16 /OpenSim | |
parent | Update TESTING.txt documentation. (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/FileAssetClient.cs | 56 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 4 |
2 files changed, 60 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 @@ | |||
1 | using System.IO; | ||
2 | using System.Xml.Serialization; | ||
3 | |||
4 | namespace 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 | } | ||
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 78064da..ce4fdfe 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -421,6 +421,10 @@ namespace OpenSim | |||
421 | { | 421 | { |
422 | assetServer = new GridAssetClient(m_networkServersInfo.AssetURL); | 422 | assetServer = new GridAssetClient(m_networkServersInfo.AssetURL); |
423 | } | 423 | } |
424 | else if (m_assetStorage == "file") | ||
425 | { | ||
426 | assetServer = new FileAssetClient(m_networkServersInfo.AssetURL); | ||
427 | } | ||
424 | else | 428 | else |
425 | { | 429 | { |
426 | SQLAssetServer sqlAssetServer = new SQLAssetServer(m_standaloneAssetPlugin, m_standaloneAssetSource); | 430 | SQLAssetServer sqlAssetServer = new SQLAssetServer(m_standaloneAssetPlugin, m_standaloneAssetSource); |