2008-04-17 12:16:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Contributors, http://opensimulator.org/
|
|
|
|
* See CONTRIBUTORS.TXT for a full list of copyright holders.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2009-06-01 06:37:14 +00:00
|
|
|
* * Neither the name of the OpenSimulator Project nor the
|
2008-04-17 12:16:19 +00:00
|
|
|
* names of its contributors may be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2009-04-13 20:04:18 +00:00
|
|
|
using System;
|
2009-03-09 07:29:34 +00:00
|
|
|
using System.Collections.Generic;
|
2009-04-13 20:04:18 +00:00
|
|
|
using System.Text;
|
|
|
|
using System.Text.RegularExpressions;
|
2008-09-06 07:52:41 +00:00
|
|
|
using OpenMetaverse;
|
2008-04-02 16:00:40 +00:00
|
|
|
using OpenSim.Framework;
|
2008-03-29 04:25:52 +00:00
|
|
|
|
2008-04-02 15:36:01 +00:00
|
|
|
namespace OpenSim.Data
|
2008-03-29 04:25:52 +00:00
|
|
|
{
|
2009-02-03 05:20:03 +00:00
|
|
|
public abstract class AssetDataBase : IAssetDataPlugin
|
2008-03-29 04:25:52 +00:00
|
|
|
{
|
2009-08-16 23:54:20 +00:00
|
|
|
public abstract AssetBase GetAsset(UUID uuid);
|
2009-04-13 20:04:18 +00:00
|
|
|
|
2009-08-16 23:54:20 +00:00
|
|
|
public abstract void StoreAsset(AssetBase asset);
|
2008-09-06 07:52:41 +00:00
|
|
|
public abstract bool ExistsAsset(UUID uuid);
|
2008-03-29 04:25:52 +00:00
|
|
|
|
2009-03-09 07:29:34 +00:00
|
|
|
public abstract List<AssetMetadata> FetchAssetMetadataSet(int start, int count);
|
|
|
|
|
2008-03-29 04:25:52 +00:00
|
|
|
public abstract string Version { get; }
|
|
|
|
public abstract string Name { get; }
|
2008-04-23 19:13:06 +00:00
|
|
|
public abstract void Initialise(string connect);
|
2008-03-29 04:25:52 +00:00
|
|
|
public abstract void Initialise();
|
2008-06-27 02:15:57 +00:00
|
|
|
public abstract void Dispose();
|
2008-03-29 04:25:52 +00:00
|
|
|
}
|
|
|
|
}
|