* Added a directory for the SVN module. More about to come.* SVNBackupModule

* See OpenSim.ini.example settings for how to use
* Only compatible with svn:// and http:// authentication for the moment (and only using simple authentication). SSL/SSH key support is supported by the library used (SvnDotNet), but is not yet supported in OpenSim.
* Use the command "svn save" to make a copy of your regions to SVN. Presently this is not an automatic process, but such a feature is on the todo list.
* It will in your repository create a subdirectory for each region with the regions UUID, inside there it will create a 'terrain load' compatible 'heightmap.r32', and a load-xml2 compatible 'objects.xml' plus information files.
* Untested on Linux, some compatibility work may be needed by Linux peoples. The dependencies will be the same as for SvnDotNet which is supposedly mono-compatible.
0.6.0-stable
Adam Frisby 2008-04-17 13:20:06 +00:00
parent f36df9eb9f
commit a0fc29878e
3 changed files with 50 additions and 43 deletions

View File

@ -130,7 +130,7 @@ namespace OpenSim.Region.Environment.Modules.Terrain.FileLoaders
public void SaveFile(string filename, ITerrainChannel map) public void SaveFile(string filename, ITerrainChannel map)
{ {
FileInfo file = new FileInfo(filename); FileInfo file = new FileInfo(filename);
FileStream s = file.Open(FileMode.CreateNew, FileAccess.Write); FileStream s = file.Open(FileMode.Create, FileAccess.Write);
BinaryWriter bs = new BinaryWriter(s); BinaryWriter bs = new BinaryWriter(s);
int x, y; int x, y;

View File

@ -1,31 +1,4 @@
/* using System;
* 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.
* * Neither the name of the OpenSim Project nor the
* 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.
*/
using System;
using System.Collections.Generic; using System.Collections.Generic;
using Nini.Config; using Nini.Config;
using OpenSim.Region.Environment.Interfaces; using OpenSim.Region.Environment.Interfaces;
@ -35,6 +8,8 @@ using OpenSim.Region.Environment.Modules.ExportSerialiser;
using PumaCode.SvnDotNet.SubversionSharp; using PumaCode.SvnDotNet.SubversionSharp;
using PumaCode.SvnDotNet.AprSharp; using PumaCode.SvnDotNet.AprSharp;
using Slash=System.IO.Path;
namespace OpenSim.Region.Modules.SvnSerialiser namespace OpenSim.Region.Modules.SvnSerialiser
{ {
public class SvnBackupModule : IRegionModule public class SvnBackupModule : IRegionModule
@ -42,11 +17,12 @@ namespace OpenSim.Region.Modules.SvnSerialiser
private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
private SvnClient m_svnClient; private SvnClient m_svnClient;
private bool m_enabled = false;
private bool m_installBackupOnLoad = false; private bool m_installBackupOnLoad = false;
private string m_svnurl = "svn://url.tld/repository/"; private string m_svnurl = "svn://your.svn.tld/";
private string m_svnuser = "user"; private string m_svnuser = "user";
private string m_svnpass = "password"; private string m_svnpass = "password";
private string m_svndir = "modsvn/"; private string m_svndir = "SVNmodule\\repo";
private IRegionSerialiser m_serialiser; private IRegionSerialiser m_serialiser;
private List<Scene> m_scenes = new List<Scene>(); private List<Scene> m_scenes = new List<Scene>();
@ -54,13 +30,24 @@ namespace OpenSim.Region.Modules.SvnSerialiser
public void SaveRegion(Scene scene) public void SaveRegion(Scene scene)
{ {
List<string> filenames = m_serialiser.SerialiseRegion(scene, m_svndir); m_log.Info("[SVNBACKUP]: Saving a region to SVN with name " + scene.RegionInfo.RegionName);
foreach (string filename in filenames)
{
m_svnClient.Add3(filename, false, true, false);
}
m_svnClient.Commit3(filenames, true, false); List<string> filenames = m_serialiser.SerialiseRegion(scene, m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString() + "\\");
try
{
m_svnClient.Add3(m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString(), true, false, false);
}
// Ignore this error, it means the sim is already under version control.
catch (SvnException) { }
List<string> svnfilenames = new List<string>();
foreach (string filename in filenames)
svnfilenames.Add(m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString() + Slash.DirectorySeparatorChar + filename);
svnfilenames.Add(m_svndir + Slash.DirectorySeparatorChar + scene.RegionInfo.RegionID.ToString());
m_svnClient.Commit3(svnfilenames, true, false);
m_log.Info("[SVNBACKUP]: Backup successful.");
} }
#endregion #endregion
@ -81,7 +68,7 @@ namespace OpenSim.Region.Modules.SvnSerialiser
{ {
if (!commitItems.IsNull) if (!commitItems.IsNull)
{ {
foreach (SvnClientCommitItem item in commitItems) foreach (SvnClientCommitItem2 item in commitItems)
{ {
m_log.Debug("[SVNBACKUP]: Updated " + item.Path.ToString() + " (" + item.Kind.ToString() + ") " + item.Revision.ToString()); m_log.Debug("[SVNBACKUP]: Updated " + item.Path.ToString() + " (" + item.Kind.ToString() + ") " + item.Revision.ToString());
m_log.Debug("[SVNBACKUP]: " + item.Url.ToString() + " -> " + item.CopyFromUrl.ToString()); m_log.Debug("[SVNBACKUP]: " + item.Url.ToString() + " -> " + item.CopyFromUrl.ToString());
@ -102,6 +89,19 @@ namespace OpenSim.Region.Modules.SvnSerialiser
public void Initialise(Scene scene, IConfigSource source) public void Initialise(Scene scene, IConfigSource source)
{ {
try
{
if (!source.Configs["SVN"].GetBoolean("Enabled", false))
return;
m_enabled = true;
m_svndir = source.Configs["SVN"].GetString("Directory", m_svndir);
m_svnurl = source.Configs["SVN"].GetString("URL", m_svnurl);
m_svnuser = source.Configs["SVN"].GetString("Username", m_svnuser);
m_svnpass = source.Configs["SVN"].GetString("Password", m_svnpass);
} catch(Exception) { }
lock (m_scenes) lock (m_scenes)
{ {
m_scenes.Add(scene); m_scenes.Add(scene);
@ -112,14 +112,14 @@ namespace OpenSim.Region.Modules.SvnSerialiser
void EventManager_OnPluginConsole(string[] args) void EventManager_OnPluginConsole(string[] args)
{ {
if (args[0] == "testsvn") if (args[0] == "svn" && args[1] == "save")
SaveRegion(m_scenes[0]); SaveRegion(m_scenes[0]);
} }
public void PostInitialise() public void PostInitialise()
{ {
m_log.Info("[SVNBACKUP]: Disabled."); if (m_enabled == false)
return; return;
m_log.Info("[SVNBACKUP]: Connecting..."); m_log.Info("[SVNBACKUP]: Connecting...");
@ -140,7 +140,7 @@ namespace OpenSim.Region.Modules.SvnSerialiser
if (m_installBackupOnLoad) if (m_installBackupOnLoad)
{ {
//TODO
} }
} }

View File

@ -380,4 +380,11 @@ TeleportPriceExponent = 2
EnergyEfficiency = 1 EnergyEfficiency = 1
PriceObjectRent = 1 PriceObjectRent = 1
PriceObjectScaleFactor = 10 PriceObjectScaleFactor = 10
PriceParcelRent = 1 PriceParcelRent = 1
[SVN]
Enabled = false
Directory = SVNmodule\repo
URL = "svn://your.repo.here/"
Username = "user"
Password = "password"