Merge branch 'master' into careminster-presence-refactor
commit
836728e5de
|
@ -219,40 +219,6 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
|
||||||
CreateFoldersForPath(destFolder, archivePathSectionToCreate, resolvedFolders, loadedNodes);
|
CreateFoldersForPath(destFolder, archivePathSectionToCreate, resolvedFolders, loadedNodes);
|
||||||
|
|
||||||
return destFolder;
|
return destFolder;
|
||||||
|
|
||||||
/*
|
|
||||||
string[] rawFolders = filePath.Split(new char[] { '/' });
|
|
||||||
|
|
||||||
// Find the folders that do exist along the path given
|
|
||||||
int i = 0;
|
|
||||||
bool noFolder = false;
|
|
||||||
InventoryFolderImpl foundFolder = rootDestinationFolder;
|
|
||||||
while (!noFolder && i < rawFolders.Length)
|
|
||||||
{
|
|
||||||
InventoryFolderImpl folder = foundFolder.FindFolderByPath(rawFolders[i]);
|
|
||||||
if (null != folder)
|
|
||||||
{
|
|
||||||
m_log.DebugFormat("[INVENTORY ARCHIVER]: Found folder {0}", folder.Name);
|
|
||||||
foundFolder = folder;
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
noFolder = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create any folders that did not previously exist
|
|
||||||
while (i < rawFolders.Length)
|
|
||||||
{
|
|
||||||
m_log.DebugFormat("[INVENTORY ARCHIVER]: Creating folder {0}", rawFolders[i]);
|
|
||||||
|
|
||||||
UUID newFolderId = UUID.Random();
|
|
||||||
m_userInfo.CreateFolder(
|
|
||||||
rawFolders[i++], newFolderId, (ushort)AssetType.Folder, foundFolder.ID);
|
|
||||||
foundFolder = foundFolder.GetChildFolder(newFolderId);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -279,7 +279,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests
|
||||||
public void TestIarV0_1WithEscapedChars()
|
public void TestIarV0_1WithEscapedChars()
|
||||||
{
|
{
|
||||||
TestHelper.InMethod();
|
TestHelper.InMethod();
|
||||||
log4net.Config.XmlConfigurator.Configure();
|
// log4net.Config.XmlConfigurator.Configure();
|
||||||
|
|
||||||
string itemName = "You & you are a mean/man/";
|
string itemName = "You & you are a mean/man/";
|
||||||
string humanEscapedItemName = @"You & you are a mean\/man\/";
|
string humanEscapedItemName = @"You & you are a mean\/man\/";
|
||||||
|
@ -505,7 +505,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests
|
||||||
/// Test replication of an archive path to the user's inventory.
|
/// Test replication of an archive path to the user's inventory.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Test]
|
[Test]
|
||||||
public void TestReplicateArchivePathToUserInventory()
|
public void TestNewIarPath()
|
||||||
{
|
{
|
||||||
TestHelper.InMethod();
|
TestHelper.InMethod();
|
||||||
//log4net.Config.XmlConfigurator.Configure();
|
//log4net.Config.XmlConfigurator.Configure();
|
||||||
|
@ -540,5 +540,51 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests
|
||||||
InventoryFolderBase folder2 = InventoryArchiveUtils.FindFolderByPath(scene.InventoryService, folder1, "b");
|
InventoryFolderBase folder2 = InventoryArchiveUtils.FindFolderByPath(scene.InventoryService, folder1, "b");
|
||||||
Assert.That(folder2, Is.Not.Null, "Could not find folder b");
|
Assert.That(folder2, Is.Not.Null, "Could not find folder b");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Test replication of a partly existing archive path to the user's inventory.
|
||||||
|
/// </summary>
|
||||||
|
[Test]
|
||||||
|
public void TestPartExistingIarPath()
|
||||||
|
{
|
||||||
|
TestHelper.InMethod();
|
||||||
|
//log4net.Config.XmlConfigurator.Configure();
|
||||||
|
|
||||||
|
Scene scene = SceneSetupHelpers.SetupScene("inventory");
|
||||||
|
UserAccount ua1 = UserProfileTestUtils.CreateUserWithInventory(scene);
|
||||||
|
|
||||||
|
string folder1ExistingName = "a";
|
||||||
|
string folder2Name = "b";
|
||||||
|
string itemName = "c.lsl";
|
||||||
|
|
||||||
|
InventoryFolderBase folder1
|
||||||
|
= UserInventoryTestUtils.CreateInventoryFolder(
|
||||||
|
scene.InventoryService, ua1.PrincipalID, folder1ExistingName);
|
||||||
|
|
||||||
|
string folder1ArchiveName = InventoryArchiveWriteRequest.CreateArchiveFolderName(folder1ExistingName, UUID.Random());
|
||||||
|
string folder2ArchiveName = InventoryArchiveWriteRequest.CreateArchiveFolderName(folder2Name, UUID.Random());
|
||||||
|
string itemArchiveName = InventoryArchiveWriteRequest.CreateArchiveItemName(itemName, UUID.Random());
|
||||||
|
|
||||||
|
string itemArchivePath
|
||||||
|
= string.Format(
|
||||||
|
"{0}{1}{2}{3}",
|
||||||
|
ArchiveConstants.INVENTORY_PATH, folder1ArchiveName, folder2ArchiveName, itemArchiveName);
|
||||||
|
|
||||||
|
new InventoryArchiveReadRequest(scene, ua1, null, (Stream)null)
|
||||||
|
.ReplicateArchivePathToUserInventory(
|
||||||
|
itemArchivePath, scene.InventoryService.GetRootFolder(ua1.PrincipalID),
|
||||||
|
new Dictionary<string, InventoryFolderBase>(), new List<InventoryNodeBase>());
|
||||||
|
|
||||||
|
InventoryFolderBase folder1Post
|
||||||
|
= InventoryArchiveUtils.FindFolderByPath(scene.InventoryService, ua1.PrincipalID, folder1ExistingName);
|
||||||
|
Assert.That(folder1Post.ID, Is.EqualTo(folder1.ID));
|
||||||
|
/*
|
||||||
|
InventoryFolderBase folder2
|
||||||
|
= InventoryArchiveUtils.FindFolderByPath(scene.InventoryService, folder1Post, "b");
|
||||||
|
Assert.That(folder2, Is.Not.Null);
|
||||||
|
InventoryItemBase item = InventoryArchiveUtils.FindItemByPath(scene.InventoryService, folder2, itemName);
|
||||||
|
Assert.That(item, Is.Not.Null);
|
||||||
|
*/
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -70,10 +70,8 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
|
|
||||||
#region IMapImageGenerator Members
|
#region IMapImageGenerator Members
|
||||||
|
|
||||||
public byte[] WriteJpeg2000Image(string gradientmap)
|
public Bitmap CreateMapTile(string gradientmap)
|
||||||
{
|
{
|
||||||
byte[] imageData = null;
|
|
||||||
|
|
||||||
bool drawPrimVolume = true;
|
bool drawPrimVolume = true;
|
||||||
bool textureTerrain = false;
|
bool textureTerrain = false;
|
||||||
|
|
||||||
|
@ -98,32 +96,36 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
}
|
}
|
||||||
terrainRenderer.Initialise(m_scene, m_config);
|
terrainRenderer.Initialise(m_scene, m_config);
|
||||||
|
|
||||||
using (Bitmap mapbmp = new Bitmap((int)Constants.RegionSize, (int)Constants.RegionSize))
|
Bitmap mapbmp = new Bitmap((int)Constants.RegionSize, (int)Constants.RegionSize, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
|
||||||
|
//long t = System.Environment.TickCount;
|
||||||
|
//for (int i = 0; i < 10; ++i) {
|
||||||
|
terrainRenderer.TerrainToBitmap(mapbmp);
|
||||||
|
//}
|
||||||
|
//t = System.Environment.TickCount - t;
|
||||||
|
//m_log.InfoFormat("[MAPTILE] generation of 10 maptiles needed {0} ms", t);
|
||||||
|
|
||||||
|
|
||||||
|
if (drawPrimVolume)
|
||||||
{
|
{
|
||||||
//long t = System.Environment.TickCount;
|
DrawObjectVolume(m_scene, mapbmp);
|
||||||
//for (int i = 0; i < 10; ++i) {
|
|
||||||
terrainRenderer.TerrainToBitmap(mapbmp);
|
|
||||||
//}
|
|
||||||
//t = System.Environment.TickCount - t;
|
|
||||||
//m_log.InfoFormat("[MAPTILE] generation of 10 maptiles needed {0} ms", t);
|
|
||||||
|
|
||||||
|
|
||||||
if (drawPrimVolume)
|
|
||||||
{
|
|
||||||
DrawObjectVolume(m_scene, mapbmp);
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
imageData = OpenJPEG.EncodeFromImage(mapbmp, true);
|
|
||||||
}
|
|
||||||
catch (Exception e) // LEGIT: Catching problems caused by OpenJPEG p/invoke
|
|
||||||
{
|
|
||||||
m_log.Error("Failed generating terrain map: " + e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return imageData;
|
return mapbmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public byte[] WriteJpeg2000Image(string gradientmap)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (Bitmap mapbmp = CreateMapTile(gradientmap))
|
||||||
|
return OpenJPEG.EncodeFromImage(mapbmp, true);
|
||||||
|
}
|
||||||
|
catch (Exception e) // LEGIT: Catching problems caused by OpenJPEG p/invoke
|
||||||
|
{
|
||||||
|
m_log.Error("Failed generating terrain map: " + e);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
|
@ -37,6 +37,8 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
{
|
{
|
||||||
public class ShadedMapTileRenderer : IMapTileTerrainRenderer
|
public class ShadedMapTileRenderer : IMapTileTerrainRenderer
|
||||||
{
|
{
|
||||||
|
private static readonly Color WATER_COLOR = Color.FromArgb(29, 71, 95);
|
||||||
|
|
||||||
private static readonly ILog m_log =
|
private static readonly ILog m_log =
|
||||||
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
|
@ -221,8 +223,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Color water = Color.FromArgb((int)heightvalue, (int)heightvalue, 255);
|
mapbmp.SetPixel(x, yr, WATER_COLOR);
|
||||||
mapbmp.SetPixel(x, yr, water);
|
|
||||||
}
|
}
|
||||||
catch (ArgumentException)
|
catch (ArgumentException)
|
||||||
{
|
{
|
||||||
|
|
|
@ -136,6 +136,8 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
private static readonly UUID defaultTerrainTexture4 = new UUID("53a2f406-4895-1d13-d541-d2e3b86bc19c");
|
private static readonly UUID defaultTerrainTexture4 = new UUID("53a2f406-4895-1d13-d541-d2e3b86bc19c");
|
||||||
private static readonly Color defaultColor4 = Color.FromArgb(200, 200, 200);
|
private static readonly Color defaultColor4 = Color.FromArgb(200, 200, 200);
|
||||||
|
|
||||||
|
private static readonly Color WATER_COLOR = Color.FromArgb(29, 71, 95);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
@ -406,8 +408,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
|
|
||||||
heightvalue = 100f - (heightvalue * 100f) / 19f; // 0 - 19 => 100 - 0
|
heightvalue = 100f - (heightvalue * 100f) / 19f; // 0 - 19 => 100 - 0
|
||||||
|
|
||||||
Color water = Color.FromArgb((int)heightvalue, (int)heightvalue, 255);
|
mapbmp.SetPixel(x, yr, WATER_COLOR);
|
||||||
mapbmp.SetPixel(x, yr, water);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1002,41 +1002,15 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
|
|
||||||
public void RegenerateMaptile(byte[] data)
|
public void RegenerateMaptile(byte[] data)
|
||||||
{
|
{
|
||||||
// Overwrites the local Asset cache with new maptile data
|
|
||||||
// Assets are single write, this causes the asset server to ignore this update,
|
|
||||||
// but the local asset cache does not
|
|
||||||
|
|
||||||
// this is on purpose! The net result of this is the region always has the most up to date
|
|
||||||
// map tile while protecting the (grid) asset database from bloat caused by a new asset each
|
|
||||||
// time a mapimage is generated!
|
|
||||||
|
|
||||||
UUID lastMapRegionUUID = m_scene.RegionInfo.RegionSettings.TerrainImageID;
|
UUID lastMapRegionUUID = m_scene.RegionInfo.RegionSettings.TerrainImageID;
|
||||||
|
|
||||||
int lastMapRefresh = 0;
|
|
||||||
int twoDays = 172800;
|
|
||||||
// int RefreshSeconds = twoDays;
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
lastMapRefresh = Convert.ToInt32(m_scene.RegionInfo.lastMapRefresh);
|
|
||||||
}
|
|
||||||
catch (ArgumentException)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
catch (FormatException)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
catch (OverflowException)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
m_log.Debug("[MAPTILE]: STORING MAPTILE IMAGE");
|
m_log.Debug("[MAPTILE]: STORING MAPTILE IMAGE");
|
||||||
|
|
||||||
m_scene.RegionInfo.RegionSettings.TerrainImageID = UUID.Random();
|
m_scene.RegionInfo.RegionSettings.TerrainImageID = UUID.Random();
|
||||||
|
|
||||||
AssetBase asset = new AssetBase(
|
AssetBase asset = new AssetBase(
|
||||||
m_scene.RegionInfo.RegionSettings.TerrainImageID,
|
m_scene.RegionInfo.RegionSettings.TerrainImageID,
|
||||||
"terrainImage_" + m_scene.RegionInfo.RegionID.ToString() + "_" + lastMapRefresh.ToString(),
|
"terrainImage_" + m_scene.RegionInfo.RegionID.ToString(),
|
||||||
(sbyte)AssetType.Texture,
|
(sbyte)AssetType.Texture,
|
||||||
m_scene.RegionInfo.RegionID.ToString());
|
m_scene.RegionInfo.RegionID.ToString());
|
||||||
asset.Data = data;
|
asset.Data = data;
|
||||||
|
|
|
@ -73,6 +73,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||||
|
|
||||||
public interface IMapImageGenerator
|
public interface IMapImageGenerator
|
||||||
{
|
{
|
||||||
|
System.Drawing.Bitmap CreateMapTile(string gradientmap);
|
||||||
byte[] WriteJpeg2000Image(string gradientmap);
|
byte[] WriteJpeg2000Image(string gradientmap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,17 +28,18 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Specialized;
|
using System.Collections.Specialized;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Drawing.Imaging;
|
||||||
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using log4net;
|
using log4net;
|
||||||
using Mono.Addins;
|
using Mono.Addins;
|
||||||
using Nini.Config;
|
using Nini.Config;
|
||||||
using OpenSim.Framework;
|
using OpenSim.Framework;
|
||||||
using OpenSim.Framework.Servers.HttpServer;
|
|
||||||
using OpenSim.Region.Framework.Interfaces;
|
using OpenSim.Region.Framework.Interfaces;
|
||||||
using OpenSim.Region.Framework.Scenes;
|
using OpenSim.Region.Framework.Scenes;
|
||||||
using OpenSim.Services.Interfaces;
|
using OpenSim.Services.Interfaces;
|
||||||
using OpenSim.Server.Base;
|
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
using OpenMetaverse.StructuredData;
|
using OpenMetaverse.StructuredData;
|
||||||
|
|
||||||
|
@ -62,7 +63,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
#region ISharedRegionModule
|
#region ISharedRegionModule
|
||||||
|
|
||||||
public Type ReplaceableInterface { get { return null; } }
|
public Type ReplaceableInterface { get { return null; } }
|
||||||
public void RegionLoaded(Scene scene) { }
|
public void RegionLoaded(Scene scene) { UploadMapTile(scene); }
|
||||||
public void PostInitialise() { }
|
public void PostInitialise() { }
|
||||||
public void Close() { }
|
public void Close() { }
|
||||||
|
|
||||||
|
@ -358,6 +359,83 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
#endregion IGridService
|
#endregion IGridService
|
||||||
|
|
||||||
|
private void UploadMapTile(IScene scene)
|
||||||
|
{
|
||||||
|
string errorMessage = null;
|
||||||
|
|
||||||
|
// Create a PNG map tile and upload it to the AddMapTile API
|
||||||
|
byte[] pngData = Utils.EmptyBytes;
|
||||||
|
IMapImageGenerator tileGenerator = scene.RequestModuleInterface<IMapImageGenerator>();
|
||||||
|
if (tileGenerator == null)
|
||||||
|
{
|
||||||
|
m_log.Warn("[SIMIAN GRID CONNECTOR]: Cannot upload PNG map tile without an IMapImageGenerator");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
using (Image mapTile = tileGenerator.CreateMapTile("defaultstripe.png"))
|
||||||
|
{
|
||||||
|
using (MemoryStream stream = new MemoryStream())
|
||||||
|
{
|
||||||
|
mapTile.Save(stream, ImageFormat.Png);
|
||||||
|
pngData = stream.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<MultipartForm.Element> postParameters = new List<MultipartForm.Element>()
|
||||||
|
{
|
||||||
|
new MultipartForm.Parameter("X", scene.RegionInfo.RegionLocX.ToString()),
|
||||||
|
new MultipartForm.Parameter("Y", scene.RegionInfo.RegionLocY.ToString()),
|
||||||
|
new MultipartForm.File("Tile", "tile.png", "image/png", pngData)
|
||||||
|
};
|
||||||
|
|
||||||
|
// Make the remote storage request
|
||||||
|
try
|
||||||
|
{
|
||||||
|
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(m_serverUrl);
|
||||||
|
|
||||||
|
HttpWebResponse response = MultipartForm.Post(request, postParameters);
|
||||||
|
using (Stream responseStream = response.GetResponseStream())
|
||||||
|
{
|
||||||
|
string responseStr = null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
responseStr = responseStream.GetStreamString();
|
||||||
|
OSD responseOSD = OSDParser.Deserialize(responseStr);
|
||||||
|
if (responseOSD.Type == OSDType.Map)
|
||||||
|
{
|
||||||
|
OSDMap responseMap = (OSDMap)responseOSD;
|
||||||
|
if (responseMap["Success"].AsBoolean())
|
||||||
|
m_log.Info("[SIMIAN GRID CONNECTOR]: Uploaded " + pngData.Length + " byte PNG map tile to AddMapTile");
|
||||||
|
else
|
||||||
|
errorMessage = "Upload failed: " + responseMap["Message"].AsString();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
errorMessage = "Response format was invalid:\n" + responseStr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
if (!String.IsNullOrEmpty(responseStr))
|
||||||
|
errorMessage = "Failed to parse the response:\n" + responseStr;
|
||||||
|
else
|
||||||
|
errorMessage = "Failed to retrieve the response: " + ex.Message;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (WebException ex)
|
||||||
|
{
|
||||||
|
errorMessage = ex.Message;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!String.IsNullOrEmpty(errorMessage))
|
||||||
|
{
|
||||||
|
m_log.WarnFormat("[SIMIAN GRID CONNECTOR]: Failed to store {0} byte PNG map tile for {1}: {2}",
|
||||||
|
pngData.Length, scene.RegionInfo.RegionName, errorMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private GridRegion GetNearestRegion(Vector3d position, bool onlyEnabled)
|
private GridRegion GetNearestRegion(Vector3d position, bool onlyEnabled)
|
||||||
{
|
{
|
||||||
NameValueCollection requestArgs = new NameValueCollection
|
NameValueCollection requestArgs = new NameValueCollection
|
||||||
|
|
|
@ -36,25 +36,29 @@ namespace OpenSim.Tests.Common
|
||||||
public class AssetHelpers
|
public class AssetHelpers
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create an asset from the given data
|
/// Create a notecard asset with a random uuid and dummy text.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static AssetBase CreateAsset(UUID assetUuid, AssetType assetType, byte[] data, UUID creatorID)
|
/// <param name="creatorId">/param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static AssetBase CreateAsset(UUID creatorId)
|
||||||
{
|
{
|
||||||
AssetBase asset = new AssetBase(assetUuid, assetUuid.ToString(), (sbyte)assetType, creatorID.ToString());
|
return CreateAsset(UUID.Random(), AssetType.Notecard, "hello", creatorId);
|
||||||
asset.Data = data;
|
|
||||||
return asset;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create an asset from the given data
|
|
||||||
/// </summary>
|
|
||||||
public static AssetBase CreateAsset(UUID assetUuid, AssetType assetType, string data, UUID creatorID)
|
|
||||||
{
|
|
||||||
return CreateAsset(assetUuid, assetType, Encoding.ASCII.GetBytes(data), creatorID);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create an asset from the given scene object
|
/// Create and store a notecard asset with a random uuid and dummy text.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="creatorId">/param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static AssetBase CreateAsset(Scene scene, UUID creatorId)
|
||||||
|
{
|
||||||
|
AssetBase asset = CreateAsset(UUID.Random(), AssetType.Notecard, "hello", creatorId);
|
||||||
|
scene.AssetService.Store(asset);
|
||||||
|
return asset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create an asset from the given scene object.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="assetUuid"></param>
|
/// <param name="assetUuid"></param>
|
||||||
/// <param name="sog"></param>
|
/// <param name="sog"></param>
|
||||||
|
@ -67,5 +71,23 @@ namespace OpenSim.Tests.Common
|
||||||
Encoding.ASCII.GetBytes(SceneObjectSerializer.ToXml2Format(sog)),
|
Encoding.ASCII.GetBytes(SceneObjectSerializer.ToXml2Format(sog)),
|
||||||
sog.OwnerID);
|
sog.OwnerID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create an asset from the given data.
|
||||||
|
/// </summary>
|
||||||
|
public static AssetBase CreateAsset(UUID assetUuid, AssetType assetType, string data, UUID creatorID)
|
||||||
|
{
|
||||||
|
return CreateAsset(assetUuid, assetType, Encoding.ASCII.GetBytes(data), creatorID);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create an asset from the given data.
|
||||||
|
/// </summary>
|
||||||
|
public static AssetBase CreateAsset(UUID assetUuid, AssetType assetType, byte[] data, UUID creatorID)
|
||||||
|
{
|
||||||
|
AssetBase asset = new AssetBase(assetUuid, assetUuid.ToString(), (sbyte)assetType, creatorID.ToString());
|
||||||
|
asset.Data = data;
|
||||||
|
return asset;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
using System;
|
using System;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
using OpenSim.Framework;
|
using OpenSim.Framework;
|
||||||
|
using OpenSim.Region.Framework.Scenes;
|
||||||
using OpenSim.Services.Interfaces;
|
using OpenSim.Services.Interfaces;
|
||||||
|
|
||||||
namespace OpenSim.Tests.Common
|
namespace OpenSim.Tests.Common
|
||||||
|
@ -39,6 +40,23 @@ namespace OpenSim.Tests.Common
|
||||||
{
|
{
|
||||||
public static readonly string PATH_DELIMITER = "/";
|
public static readonly string PATH_DELIMITER = "/";
|
||||||
|
|
||||||
|
public static InventoryItemBase CreateInventoryItem(
|
||||||
|
Scene scene, string itemName, UUID itemId, string folderPath, UUID userId)
|
||||||
|
{
|
||||||
|
InventoryItemBase item = new InventoryItemBase();
|
||||||
|
item.Name = itemName;
|
||||||
|
item.AssetID = AssetHelpers.CreateAsset(scene, userId).FullID;
|
||||||
|
item.ID = itemId;
|
||||||
|
|
||||||
|
// Really quite bad since the objs folder could be moved in the future and confuse the tests
|
||||||
|
InventoryFolderBase objsFolder = scene.InventoryService.GetFolderForType(userId, AssetType.Object);
|
||||||
|
|
||||||
|
item.Folder = objsFolder.ID;
|
||||||
|
scene.AddInventoryItem(userId, item);
|
||||||
|
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create inventory folders starting from the user's root folder.
|
/// Create inventory folders starting from the user's root folder.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue