XBakes.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.IO;
  29. using System.Text;
  30. using System.Reflection;
  31. using OpenSim.Framework;
  32. using OpenSim.Services.Base;
  33. using OpenSim.Services.Interfaces;
  34. using Nini.Config;
  35. using log4net;
  36. using OpenMetaverse;
  37. namespace OpenSim.Server.Handlers.BakedTextures
  38. {
  39. public class XBakes : ServiceBase, IBakedTextureService
  40. {
  41. private static readonly ILog m_log = LogManager.GetLogger( MethodBase.GetCurrentMethod().DeclaringType);
  42. protected string m_FSBase;
  43. public XBakes(IConfigSource config) : base(config)
  44. {
  45. MainConsole.Instance.Commands.AddCommand("fs", false,
  46. "delete bakes", "delete bakes <ID>",
  47. "Delete agent's baked textures from server",
  48. HandleDeleteBakes);
  49. IConfig assetConfig = config.Configs["BakedTextureService"];
  50. if (assetConfig == null)
  51. {
  52. throw new Exception("No BakedTextureService configuration");
  53. }
  54. m_FSBase = assetConfig.GetString("BaseDirectory", string.Empty);
  55. if (m_FSBase == string.Empty)
  56. {
  57. m_log.ErrorFormat("[BAKES]: BaseDirectory not specified");
  58. throw new Exception("Configuration error");
  59. }
  60. m_log.Info("[BAKES]: XBakes service enabled");
  61. }
  62. public byte[] Get(string id)
  63. {
  64. string file = HashToFile(id);
  65. string diskFile = Path.Combine(m_FSBase, file);
  66. try
  67. {
  68. byte[] content = File.ReadAllBytes(diskFile);
  69. return content;
  70. }
  71. catch
  72. {
  73. }
  74. return new byte[0];
  75. }
  76. public void Store(string id, byte[] data, int dataLength)
  77. {
  78. string file = HashToFile(id);
  79. string diskFile = Path.Combine(m_FSBase, file);
  80. Directory.CreateDirectory(Path.GetDirectoryName(diskFile));
  81. File.Delete(diskFile);
  82. using (FileStream fs = File.Create(diskFile))
  83. fs.Write(data, 0, dataLength);
  84. }
  85. private void HandleDeleteBakes(string module, string[] args)
  86. {
  87. if (args.Length < 3)
  88. {
  89. MainConsole.Instance.Output("Syntax: delete bakes <ID>");
  90. return;
  91. }
  92. string file = HashToFile(args[2]);
  93. string diskFile = Path.Combine(m_FSBase, file);
  94. if (File.Exists(diskFile))
  95. {
  96. File.Delete(diskFile);
  97. MainConsole.Instance.Output("Bakes deleted");
  98. return;
  99. }
  100. MainConsole.Instance.Output("Bakes not found");
  101. }
  102. public string HashToPath(string hash)
  103. {
  104. return Path.Combine(hash.Substring(0, 2),
  105. Path.Combine(hash.Substring(2, 2),
  106. Path.Combine(hash.Substring(4, 2),
  107. hash.Substring(6, 4))));
  108. }
  109. public string HashToFile(string hash)
  110. {
  111. return Path.Combine(HashToPath(hash), hash);
  112. }
  113. }
  114. }