123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485 |
- /*
- * 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 OpenSimulator 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;
- using System.Collections.Generic;
- using System.Net;
- using System.Net.Sockets;
- using System.Reflection;
- using OpenSim.Framework;
- using OpenMetaverse;
- using log4net;
- namespace OpenSim.Services.Interfaces
- {
- public interface IGridService
- {
- /// <summary>
- /// Register a region with the grid service.
- /// </summary>
- /// <param name="regionInfos"> </param>
- /// <returns></returns>
- /// <exception cref="System.Exception">Thrown if region registration failed</exception>
- string RegisterRegion(UUID scopeID, GridRegion regionInfos);
- /// <summary>
- /// Deregister a region with the grid service.
- /// </summary>
- /// <param name="regionID"></param>
- /// <returns></returns>
- /// <exception cref="System.Exception">Thrown if region deregistration failed</exception>
- bool DeregisterRegion(UUID regionID);
- /// <summary>
- /// Get information about the regions neighbouring the given co-ordinates (in meters).
- /// </summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <returns></returns>
- List<GridRegion> GetNeighbours(UUID scopeID, UUID regionID);
- GridRegion GetRegionByUUID(UUID scopeID, UUID regionID);
- GridRegion GetRegionByHandle(UUID scopeID, ulong regionhandle);
- /// <summary>
- /// Get the region at the given position (in meters)
- /// </summary>
- /// <param name="scopeID"></param>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <returns></returns>
- GridRegion GetRegionByPosition(UUID scopeID, int x, int y);
- /// <summary>
- /// Get information about a region which exactly matches the name given.
- /// </summary>
- /// <param name="scopeID"></param>
- /// <param name="regionName"></param>
- /// <returns>Returns the region information if the name matched. Null otherwise.</returns>
- GridRegion GetRegionByName(UUID scopeID, string regionName);
- /// <summary>
- /// Get information about regions starting with the provided name.
- /// </summary>
- /// <param name="name">
- /// The name to match against.
- /// </param>
- /// <param name="maxNumber">
- /// The maximum number of results to return.
- /// </param>
- /// <returns>
- /// A list of <see cref="RegionInfo"/>s of regions with matching name. If the
- /// grid-server couldn't be contacted or returned an error, return null.
- /// </returns>
- List<GridRegion> GetRegionsByName(UUID scopeID, string name, int maxNumber);
- List<GridRegion> GetRegionRange(UUID scopeID, int xmin, int xmax, int ymin, int ymax);
- List<GridRegion> GetDefaultRegions(UUID scopeID);
- List<GridRegion> GetDefaultHypergridRegions(UUID scopeID);
- List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y);
- List<GridRegion> GetHyperlinks(UUID scopeID);
- /// <summary>
- /// Get internal OpenSimulator region flags.
- /// </summary>
- /// <remarks>
- /// See OpenSimulator.Framework.RegionFlags. These are not returned in the GridRegion structure -
- /// they currently need to be requested separately. Possibly this should change to avoid multiple service calls
- /// in some situations.
- /// </remarks>
- /// <returns>
- /// The region flags.
- /// </returns>
- /// <param name='scopeID'></param>
- /// <param name='regionID'></param>
- int GetRegionFlags(UUID scopeID, UUID regionID);
- Dictionary<string,object> GetExtraFeatures();
- }
- public interface IHypergridLinker
- {
- GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, UUID ownerID, out string reason);
- bool TryUnlinkRegion(string mapName);
- }
- public class GridRegion
- {
- // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- #pragma warning disable 414
- private static readonly string LogHeader = "[GRID REGION]";
- #pragma warning restore 414
- /// <summary>
- /// The port by which http communication occurs with the region
- /// </summary>
- public uint HttpPort { get; set; }
- /// <summary>
- /// A well-formed URI for the host region server (namely "http://" + ExternalHostName)
- /// </summary>
- public string ServerURI
- {
- get {
- if (!String.IsNullOrEmpty(m_serverURI)) {
- return m_serverURI;
- } else {
- if (HttpPort == 0)
- return "http://" + m_externalHostName + "/";
- else
- return "http://" + m_externalHostName + ":" + HttpPort + "/";
- }
- }
- set {
- if ( value == null)
- {
- m_serverURI = String.Empty;
- return;
- }
- if ( value.EndsWith("/") )
- {
- m_serverURI = value;
- }
- else
- {
- m_serverURI = value + '/';
- }
- }
- }
- protected string m_serverURI;
- /// <summary>
- /// Provides direct access to the 'm_serverURI' field, without returning a generated URL if m_serverURI is missing.
- /// </summary>
- public string RawServerURI
- {
- get { return m_serverURI; }
- set { m_serverURI = value; }
- }
- public string RegionName
- {
- get { return m_regionName; }
- set { m_regionName = value; }
- }
- protected string m_regionName = String.Empty;
- /// <summary>
- /// Region flags.
- /// </summary>
- /// <remarks>
- /// If not set (chiefly if a robust service is running code pre OpenSim 0.8.1) then this will be null and
- /// should be ignored. If you require flags information please use the separate IGridService.GetRegionFlags() call
- /// XXX: This field is currently ignored when used in RegisterRegion, but could potentially be
- /// used to set flags at this point.
- /// </remarks>
- public OpenSim.Framework.RegionFlags? RegionFlags { get; set; }
- protected string m_externalHostName;
- protected IPEndPoint m_internalEndPoint;
- /// <summary>
- /// The co-ordinate of this region in region units.
- /// </summary>
- public int RegionCoordX { get { return (int)Util.WorldToRegionLoc((uint)RegionLocX); } }
- /// <summary>
- /// The co-ordinate of this region in region units
- /// </summary>
- public int RegionCoordY { get { return (int)Util.WorldToRegionLoc((uint)RegionLocY); } }
- /// <summary>
- /// The location of this region in meters.
- /// DANGER DANGER! Note that this name means something different in RegionInfo.
- /// </summary>
- public int RegionLocX
- {
- get { return m_regionLocX; }
- set { m_regionLocX = value; }
- }
- protected int m_regionLocX;
- public int RegionSizeX { get; set; }
- public int RegionSizeY { get; set; }
- /// <summary>
- /// The location of this region in meters.
- /// DANGER DANGER! Note that this name means something different in RegionInfo.
- /// </summary>
- public int RegionLocY
- {
- get { return m_regionLocY; }
- set { m_regionLocY = value; }
- }
- protected int m_regionLocY;
- protected UUID m_estateOwner;
- public UUID EstateOwner
- {
- get { return m_estateOwner; }
- set { m_estateOwner = value; }
- }
- public UUID RegionID = UUID.Zero;
- public UUID ScopeID = UUID.Zero;
- public UUID TerrainImage = UUID.Zero;
- public UUID ParcelImage = UUID.Zero;
- public byte Access;
- public int Maturity;
- public string RegionSecret = string.Empty;
- public string Token = string.Empty;
- public GridRegion()
- {
- RegionSizeX = (int)Constants.RegionSize;
- RegionSizeY = (int)Constants.RegionSize;
- m_serverURI = string.Empty;
- }
- public GridRegion(uint xcell, uint ycell)
- {
- m_regionLocX = (int)Util.RegionToWorldLoc(xcell);
- m_regionLocY = (int)Util.RegionToWorldLoc(ycell);
- RegionSizeX = (int)Constants.RegionSize;
- RegionSizeY = (int)Constants.RegionSize;
- }
- public GridRegion(RegionInfo ConvertFrom)
- {
- m_regionName = ConvertFrom.RegionName;
- m_regionLocX = (int)(ConvertFrom.WorldLocX);
- m_regionLocY = (int)(ConvertFrom.WorldLocY);
- RegionSizeX = (int)ConvertFrom.RegionSizeX;
- RegionSizeY = (int)ConvertFrom.RegionSizeY;
- m_internalEndPoint = ConvertFrom.InternalEndPoint;
- m_externalHostName = ConvertFrom.ExternalHostName;
- HttpPort = ConvertFrom.HttpPort;
- RegionID = ConvertFrom.RegionID;
- ServerURI = ConvertFrom.ServerURI;
- TerrainImage = ConvertFrom.RegionSettings.TerrainImageID;
- ParcelImage = ConvertFrom.RegionSettings.ParcelImageID;
- Access = ConvertFrom.AccessLevel;
- Maturity = ConvertFrom.RegionSettings.Maturity;
- RegionSecret = ConvertFrom.regionSecret;
- EstateOwner = ConvertFrom.EstateSettings.EstateOwner;
- }
- public GridRegion(GridRegion ConvertFrom)
- {
- m_regionName = ConvertFrom.RegionName;
- RegionFlags = ConvertFrom.RegionFlags;
- m_regionLocX = ConvertFrom.RegionLocX;
- m_regionLocY = ConvertFrom.RegionLocY;
- RegionSizeX = ConvertFrom.RegionSizeX;
- RegionSizeY = ConvertFrom.RegionSizeY;
- m_internalEndPoint = ConvertFrom.InternalEndPoint;
- m_externalHostName = ConvertFrom.ExternalHostName;
- HttpPort = ConvertFrom.HttpPort;
- RegionID = ConvertFrom.RegionID;
- ServerURI = ConvertFrom.ServerURI;
- TerrainImage = ConvertFrom.TerrainImage;
- ParcelImage = ConvertFrom.ParcelImage;
- Access = ConvertFrom.Access;
- Maturity = ConvertFrom.Maturity;
- RegionSecret = ConvertFrom.RegionSecret;
- EstateOwner = ConvertFrom.EstateOwner;
- }
- public GridRegion(Dictionary<string, object> kvp)
- {
- if (kvp.ContainsKey("uuid"))
- RegionID = new UUID((string)kvp["uuid"]);
- if (kvp.ContainsKey("locX"))
- RegionLocX = Convert.ToInt32((string)kvp["locX"]);
- if (kvp.ContainsKey("locY"))
- RegionLocY = Convert.ToInt32((string)kvp["locY"]);
- if (kvp.ContainsKey("sizeX"))
- RegionSizeX = Convert.ToInt32((string)kvp["sizeX"]);
- else
- RegionSizeX = (int)Constants.RegionSize;
- if (kvp.ContainsKey("sizeY"))
- RegionSizeY = Convert.ToInt32((string)kvp["sizeY"]);
- else
- RegionSizeX = (int)Constants.RegionSize;
- if (kvp.ContainsKey("regionName"))
- RegionName = (string)kvp["regionName"];
- if (kvp.ContainsKey("access"))
- {
- byte access = Convert.ToByte((string)kvp["access"]);
- Access = access;
- Maturity = (int)Util.ConvertAccessLevelToMaturity(access);
- }
- if (kvp.ContainsKey("flags") && kvp["flags"] != null)
- RegionFlags = (OpenSim.Framework.RegionFlags?)Convert.ToInt32((string)kvp["flags"]);
- if (kvp.ContainsKey("serverIP"))
- {
- //int port = 0;
- //Int32.TryParse((string)kvp["serverPort"], out port);
- //IPEndPoint ep = new IPEndPoint(IPAddress.Parse((string)kvp["serverIP"]), port);
- ExternalHostName = (string)kvp["serverIP"];
- }
- else
- ExternalHostName = "127.0.0.1";
- if (kvp.ContainsKey("serverPort"))
- {
- Int32 port = 0;
- Int32.TryParse((string)kvp["serverPort"], out port);
- InternalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), port);
- }
- if (kvp.ContainsKey("serverHttpPort"))
- {
- UInt32 port = 0;
- UInt32.TryParse((string)kvp["serverHttpPort"], out port);
- HttpPort = port;
- }
- if (kvp.ContainsKey("serverURI"))
- ServerURI = (string)kvp["serverURI"];
- if (kvp.ContainsKey("regionMapTexture"))
- UUID.TryParse((string)kvp["regionMapTexture"], out TerrainImage);
- if (kvp.ContainsKey("parcelMapTexture"))
- UUID.TryParse((string)kvp["parcelMapTexture"], out ParcelImage);
- if (kvp.ContainsKey("regionSecret"))
- RegionSecret =(string)kvp["regionSecret"];
- if (kvp.ContainsKey("owner_uuid"))
- EstateOwner = new UUID(kvp["owner_uuid"].ToString());
- if (kvp.ContainsKey("Token"))
- Token = kvp["Token"].ToString();
- // m_log.DebugFormat("{0} New GridRegion. id={1}, loc=<{2},{3}>, size=<{4},{5}>",
- // LogHeader, RegionID, RegionLocX, RegionLocY, RegionSizeX, RegionSizeY);
- }
- public Dictionary<string, object> ToKeyValuePairs()
- {
- Dictionary<string, object> kvp = new Dictionary<string, object>();
- kvp["uuid"] = RegionID.ToString();
- kvp["locX"] = RegionLocX.ToString();
- kvp["locY"] = RegionLocY.ToString();
- kvp["sizeX"] = RegionSizeX.ToString();
- kvp["sizeY"] = RegionSizeY.ToString();
- kvp["regionName"] = RegionName;
- if (RegionFlags != null)
- kvp["flags"] = ((int)RegionFlags).ToString();
- kvp["serverIP"] = ExternalHostName; //ExternalEndPoint.Address.ToString();
- kvp["serverHttpPort"] = HttpPort.ToString();
- kvp["serverURI"] = ServerURI;
- kvp["serverPort"] = InternalEndPoint.Port.ToString();
- kvp["regionMapTexture"] = TerrainImage.ToString();
- kvp["parcelMapTexture"] = ParcelImage.ToString();
- kvp["access"] = Access.ToString();
- kvp["regionSecret"] = RegionSecret;
- kvp["owner_uuid"] = EstateOwner.ToString();
- kvp["Token"] = Token.ToString();
- // Maturity doesn't seem to exist in the DB
- return kvp;
- }
- #region Definition of equality
- /// <summary>
- /// Define equality as two regions having the same, non-zero UUID.
- /// </summary>
- public bool Equals(GridRegion region)
- {
- if ((object)region == null)
- return false;
- // Return true if the non-zero UUIDs are equal:
- return (RegionID != UUID.Zero) && RegionID.Equals(region.RegionID);
- }
- public override bool Equals(Object obj)
- {
- if (obj == null)
- return false;
- return Equals(obj as GridRegion);
- }
- public override int GetHashCode()
- {
- return RegionID.GetHashCode() ^ TerrainImage.GetHashCode() ^ ParcelImage.GetHashCode();
- }
- #endregion
- /// <value>
- /// This accessor can throw all the exceptions that Dns.GetHostAddresses can throw.
- ///
- /// XXX Isn't this really doing too much to be a simple getter, rather than an explict method?
- /// </value>
- public IPEndPoint ExternalEndPoint
- {
- get { return Util.getEndPoint(m_externalHostName, m_internalEndPoint.Port); }
- }
- public string ExternalHostName
- {
- get { return m_externalHostName; }
- set { m_externalHostName = value; }
- }
- public IPEndPoint InternalEndPoint
- {
- get { return m_internalEndPoint; }
- set { m_internalEndPoint = value; }
- }
- public ulong RegionHandle
- {
- get { return Util.UIntsToLong((uint)RegionLocX, (uint)RegionLocY); }
- }
- }
- }
|