Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
a8fa8af9fc
|
@ -37,6 +37,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||||
{
|
{
|
||||||
bool CreateStore(string value, ref UUID result);
|
bool CreateStore(string value, ref UUID result);
|
||||||
bool DestroyStore(UUID storeID);
|
bool DestroyStore(UUID storeID);
|
||||||
|
bool TestStore(UUID storeID);
|
||||||
bool TestPath(UUID storeID, string path, bool useJson);
|
bool TestPath(UUID storeID, string path, bool useJson);
|
||||||
bool SetValue(UUID storeID, string path, string value, bool useJson);
|
bool SetValue(UUID storeID, string path, string value, bool useJson);
|
||||||
bool RemoveValue(UUID storeID, string path);
|
bool RemoveValue(UUID storeID, string path);
|
||||||
|
|
|
@ -216,6 +216,19 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
// -----------------------------------------------------------------
|
||||||
|
public bool TestStore(UUID storeID)
|
||||||
|
{
|
||||||
|
if (! m_enabled) return false;
|
||||||
|
|
||||||
|
lock (m_JsonValueStore)
|
||||||
|
return m_JsonValueStore.ContainsKey(storeID);
|
||||||
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------------------
|
// -----------------------------------------------------------------
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|
|
@ -167,6 +167,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
|
||||||
{
|
{
|
||||||
m_comms.RegisterScriptInvocation(this, "JsonCreateStore");
|
m_comms.RegisterScriptInvocation(this, "JsonCreateStore");
|
||||||
m_comms.RegisterScriptInvocation(this, "JsonDestroyStore");
|
m_comms.RegisterScriptInvocation(this, "JsonDestroyStore");
|
||||||
|
m_comms.RegisterScriptInvocation(this, "JsonTestStore");
|
||||||
|
|
||||||
m_comms.RegisterScriptInvocation(this, "JsonReadNotecard");
|
m_comms.RegisterScriptInvocation(this, "JsonReadNotecard");
|
||||||
m_comms.RegisterScriptInvocation(this, "JsonWriteNotecard");
|
m_comms.RegisterScriptInvocation(this, "JsonWriteNotecard");
|
||||||
|
@ -243,6 +244,16 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
|
||||||
return m_store.DestroyStore(storeID) ? 1 : 0;
|
return m_store.DestroyStore(storeID) ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
// -----------------------------------------------------------------
|
||||||
|
protected int JsonTestStore(UUID hostID, UUID scriptID, UUID storeID)
|
||||||
|
{
|
||||||
|
return m_store.TestStore(storeID) ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------------------
|
// -----------------------------------------------------------------
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue