From 8ea92c0669de17f4967540ecc1350860aa346f06 Mon Sep 17 00:00:00 2001 From: Mike Mazur Date: Tue, 12 Aug 2008 06:21:02 +0000 Subject: Thanks, lulurun, for a patch that addresses inventory problems that occur occasionally, but are fixed on restart (issue 1919). This patch introduces the following changes: 1. when a user teleports out of Region A, remove that user's profile from the Region A user profile cache 2. when a user crosses between regions out of Region A, remove that user's profile from the Region A user profile cache 3. the user profile cache's session ID member can now be set (written), and is updated each time a connection with a new avatar is established (ie: a new avatar enters the region) 4. when a region server looks up a user profile and a cache miss occurs, fetch the user profile from the user server first instead of immediately returning null --- .../Cache/UserProfileCacheService.cs | 78 +++++++--------------- 1 file changed, 24 insertions(+), 54 deletions(-) (limited to 'OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs') diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index c4a6b31..db58738 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs @@ -63,58 +63,10 @@ namespace OpenSim.Framework.Communications.Cache /// A new user has moved into a region in this instance so retrieve their profile from the user service. /// /// - public void AddNewUser(IClientAPI remoteClient) - { - m_log.DebugFormat("[USER CACHE]: Adding user profile for {0} {1}", remoteClient.Name, remoteClient.AgentId); - - // Potential fix - Multithreading issue. - lock (m_userProfiles) - { - if (!m_userProfiles.ContainsKey(remoteClient.AgentId)) - { - UserProfileData userProfile = m_commsManager.UserService.GetUserProfile(remoteClient.AgentId); - CachedUserInfo userInfo = new CachedUserInfo(m_commsManager, userProfile, remoteClient.SessionId); - - if (userInfo.UserProfile != null) - { - // The inventory for the user will be populated when they actually enter the scene - m_userProfiles.Add(remoteClient.AgentId, userInfo); - } - else - { - m_log.ErrorFormat("[USER CACHE]: User profile for user {0} not found.", remoteClient.AgentId); - } - } - } - } - - /// - /// A new user has moved into a region in this instance so retrieve their profile from the user service. - /// - /// public void AddNewUser(LLUUID userID) { - m_log.DebugFormat("[USER CACHE]: Adding user profile for {0}", userID); - - // Potential fix - Multithreading issue. - lock (m_userProfiles) - { - if (!m_userProfiles.ContainsKey(userID)) - { - UserProfileData userProfile = m_commsManager.UserService.GetUserProfile(userID); - CachedUserInfo userInfo = new CachedUserInfo(m_commsManager, userProfile); - - if (userInfo.UserProfile != null) - { - // The inventory for the user will be populated when they actually enter the scene - m_userProfiles.Add(userID, userInfo); - } - else - { - m_log.ErrorFormat("[USER CACHE]: User profile for user {0} not found.", userID); - } - } - } + m_log.DebugFormat("[USER CACHE]: Adding user profile for {0}", userID); + GetUserDetails(userID); } /// @@ -176,10 +128,28 @@ namespace OpenSim.Framework.Communications.Cache /// null if no user details are found public CachedUserInfo GetUserDetails(LLUUID userID) { - if (m_userProfiles.ContainsKey(userID)) - return m_userProfiles[userID]; - else - return null; + lock (m_userProfiles) + { + if (m_userProfiles.ContainsKey(userID)) + { + return m_userProfiles[userID]; + } + else + { + UserProfileData userprofile = m_commsManager.UserService.GetUserProfile(userID); + if (userprofile != null) + { + CachedUserInfo userinfo = new CachedUserInfo(m_commsManager, userprofile); + m_userProfiles.Add(userID, userinfo); + return userinfo; + } + else + { + m_log.ErrorFormat("[USER CACHE]: User profile for user {0} not found.", userID); + return null; + } + } + } } /// -- cgit v1.1