From fc35b45e2176ee2dc8bf5627e84e463a2e9d3a52 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Thu, 13 Feb 2014 23:55:38 +0000
Subject: If calls to UserAgentServiceConnector fail then throw an exception.
This lets the caller decide whether to discard the error or not.
This is Oren Hurvitz's 0001 patch from http://opensimulator.org/mantis/view.php?id=6956 but I ended up doing some tweaking to resolve patch application issues.
---
OpenSim/Services/Interfaces/IHypergridServices.cs | 40 ++++++++++++++++++++---
1 file changed, 36 insertions(+), 4 deletions(-)
(limited to 'OpenSim/Services/Interfaces/IHypergridServices.cs')
diff --git a/OpenSim/Services/Interfaces/IHypergridServices.cs b/OpenSim/Services/Interfaces/IHypergridServices.cs
index 05e175a..bece4c7 100644
--- a/OpenSim/Services/Interfaces/IHypergridServices.cs
+++ b/OpenSim/Services/Interfaces/IHypergridServices.cs
@@ -1,4 +1,4 @@
-/*
+/*
* Copyright (c) Contributors, http://opensimulator.org/
* See CONTRIBUTORS.TXT for a full list of copyright holders.
*
@@ -47,15 +47,47 @@ namespace OpenSim.Services.Interfaces
{
bool LoginAgentToGrid(AgentCircuitData agent, GridRegion gatekeeper, GridRegion finalDestination, bool fromLogin, out string reason);
void LogoutAgent(UUID userID, UUID sessionID);
+
+ ///
+ /// Returns the home region of a remote user.
+ ///
+ /// On success: the user's home region. If the user doesn't exist: null.
+ /// Throws an exception if an error occurs (e.g., can't contact the server).
GridRegion GetHomeRegion(UUID userID, out Vector3 position, out Vector3 lookAt);
+
+ ///
+ /// Returns the Server URLs of a remote user.
+ ///
+ /// On success: the user's Server URLs. If the user doesn't exist: an empty dictionary.
+ /// Throws an exception if an error occurs (e.g., can't contact the server).
Dictionary GetServerURLs(UUID userID);
- Dictionary GetUserInfo(UUID userID);
+ ///
+ /// Returns the UserInfo of a remote user.
+ ///
+ /// On success: the user's UserInfo. If the user doesn't exist: an empty dictionary.
+ /// Throws an exception if an error occurs (e.g., can't contact the server).
+ Dictionary GetUserInfo(UUID userID);
+
+ ///
+ /// Returns the current location of a remote user.
+ ///
+ /// On success: the user's Server URLs. If the user doesn't exist: "".
+ /// Throws an exception if an error occurs (e.g., can't contact the server).
string LocateUser(UUID userID);
- // Tries to get the universal user identifier for the targetUserId
- // on behalf of the userID
+
+ ///
+ /// Returns the Universal User Identifier for 'targetUserID' on behalf of 'userID'.
+ ///
+ /// On success: the user's UUI. If the user doesn't exist: "".
+ /// Throws an exception if an error occurs (e.g., can't contact the server).
string GetUUI(UUID userID, UUID targetUserID);
+ ///
+ /// Returns the remote user that has the given name.
+ ///
+ /// On success: the user's UUID. If the user doesn't exist: UUID.Zero.
+ /// Throws an exception if an error occurs (e.g., can't contact the server).
UUID GetUUID(String first, String last);
// Returns the local friends online
--
cgit v1.1