diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-01 08:16:58 +0300 |
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-01 08:16:58 +0300 |
| commit | 38c2a5bde985a6a8a96d912d432f8bdf7e5b60be (patch) | |
| tree | b3469444ea8dabe4e76a8a265ac086a9db78891c /indra/newview/llavatarpropertiesprocessor.h | |
| parent | 9bf2dfbb39032d7407295089cf181de0987083e5 (diff) | |
| parent | e7eced3c87310b15ac20cc3cd470d67686104a14 (diff) | |
Merge branch 'marchcat/w-whitespace' into marchcat/x-ws-merge
Diffstat (limited to 'indra/newview/llavatarpropertiesprocessor.h')
| -rw-r--r-- | indra/newview/llavatarpropertiesprocessor.h | 296 |
1 files changed, 148 insertions, 148 deletions
diff --git a/indra/newview/llavatarpropertiesprocessor.h b/indra/newview/llavatarpropertiesprocessor.h index ab9d8251c0..0a1445419e 100644 --- a/indra/newview/llavatarpropertiesprocessor.h +++ b/indra/newview/llavatarpropertiesprocessor.h @@ -1,25 +1,25 @@ -/** +/** * @file llavatarpropertiesprocessor.h * @brief LLAvatatIconCtrl base class * * $LicenseInfo:firstyear=2001&license=viewerlgpl$ * Second Life Viewer Source Code * Copyright (C) 2010, Linden Research, Inc. - * + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License only. - * + * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA * $/LicenseInfo$ */ @@ -29,17 +29,17 @@ #include "lluuid.h" #include "llsingleton.h" -#include "v3dmath.h" // LLVector3d +#include "v3dmath.h" // LLVector3d #include <list> #include <map> // For Flags in AvatarPropertiesReply -const U32 AVATAR_ALLOW_PUBLISH = 0x1 << 0; // whether profile is externally visible or not -const U32 AVATAR_MATURE_PUBLISH = 0x1 << 1; // profile is "mature" -const U32 AVATAR_IDENTIFIED = 0x1 << 2; // whether avatar has provided payment info -const U32 AVATAR_TRANSACTED = 0x1 << 3; // whether avatar has actively used payment info -const U32 AVATAR_ONLINE = 0x1 << 4; // the online status of this avatar, if known. -const U32 AVATAR_AGEVERIFIED = 0x1 << 5; // whether avatar has been age-verified +const U32 AVATAR_ALLOW_PUBLISH = 0x1 << 0; // whether profile is externally visible or not +const U32 AVATAR_MATURE_PUBLISH = 0x1 << 1; // profile is "mature" +const U32 AVATAR_IDENTIFIED = 0x1 << 2; // whether avatar has provided payment info +const U32 AVATAR_TRANSACTED = 0x1 << 3; // whether avatar has actively used payment info +const U32 AVATAR_ONLINE = 0x1 << 4; // the online status of this avatar, if known. +const U32 AVATAR_AGEVERIFIED = 0x1 << 5; // whether avatar has been age-verified /* *TODO Vadim: This needs some refactoring: @@ -50,12 +50,12 @@ class LLMessageSystem; enum EAvatarProcessorType { - APT_PROPERTIES_LEGACY, // APT_PROPERTIES via udp request (Truncates data!!!) - APT_PROPERTIES, // APT_PROPERTIES via http request - APT_PICK_INFO, - APT_TEXTURES, - APT_CLASSIFIEDS, - APT_CLASSIFIED_INFO + APT_PROPERTIES_LEGACY, // APT_PROPERTIES via udp request (Truncates data!!!) + APT_PROPERTIES, // APT_PROPERTIES via http request + APT_PICK_INFO, + APT_TEXTURES, + APT_CLASSIFIEDS, + APT_CLASSIFIED_INFO }; // legacy data is supposed to match AvatarPropertiesReply, @@ -65,38 +65,38 @@ enum EAvatarProcessorType // since AgentProfile is too large for bulk icon requests struct LLAvatarLegacyData { - LLUUID agent_id; - LLUUID avatar_id; //target id - LLUUID image_id; - LLUUID fl_image_id; - LLUUID partner_id; - std::string about_text; - std::string fl_about_text; - LLDate born_on; - std::string profile_url; - U8 caption_index; - std::string caption_text; - std::string customer_type; - U32 flags; + LLUUID agent_id; + LLUUID avatar_id; //target id + LLUUID image_id; + LLUUID fl_image_id; + LLUUID partner_id; + std::string about_text; + std::string fl_about_text; + LLDate born_on; + std::string profile_url; + U8 caption_index; + std::string caption_text; + std::string customer_type; + U32 flags; }; struct LLAvatarData { - LLUUID agent_id; - LLUUID avatar_id; //target id - LLUUID image_id; - LLUUID fl_image_id; - LLUUID partner_id; - std::string about_text; - std::string fl_about_text; - LLDate born_on; - std::string profile_url; - U8 caption_index; - std::string caption_text; - std::string customer_type; - U32 flags; - bool hide_age; - std::string notes; + LLUUID agent_id; + LLUUID avatar_id; //target id + LLUUID image_id; + LLUUID fl_image_id; + LLUUID partner_id; + std::string about_text; + std::string fl_about_text; + LLDate born_on; + std::string profile_url; + U8 caption_index; + std::string caption_text; + std::string customer_type; + U32 flags; + bool hide_age; + std::string notes; struct LLGroupData; typedef std::list<LLGroupData> group_list_t; @@ -119,135 +119,135 @@ struct LLAvatarData::LLGroupData struct LLPickData { - LLUUID agent_id; - LLUUID pick_id; - LLUUID creator_id; - BOOL top_pick; - LLUUID parcel_id; - std::string name; - std::string desc; - LLUUID snapshot_id; - LLVector3d pos_global; - S32 sort_order; - BOOL enabled; + LLUUID agent_id; + LLUUID pick_id; + LLUUID creator_id; + BOOL top_pick; + LLUUID parcel_id; + std::string name; + std::string desc; + LLUUID snapshot_id; + LLVector3d pos_global; + S32 sort_order; + BOOL enabled; - //used only in read requests - std::string user_name; - std::string original_name; - std::string sim_name; + //used only in read requests + std::string user_name; + std::string original_name; + std::string sim_name; - //used only in write (update) requests - LLUUID session_id; + //used only in write (update) requests + LLUUID session_id; }; struct LLAvatarClassifieds { - LLUUID agent_id; - LLUUID target_id; + LLUUID agent_id; + LLUUID target_id; - struct classified_data; - typedef std::list<classified_data> classifieds_list_t; + struct classified_data; + typedef std::list<classified_data> classifieds_list_t; - classifieds_list_t classifieds_list; + classifieds_list_t classifieds_list; - struct classified_data - { - LLUUID classified_id; - std::string name; - }; + struct classified_data + { + LLUUID classified_id; + std::string name; + }; }; struct LLAvatarClassifiedInfo { - LLUUID agent_id; - LLUUID classified_id; - LLUUID creator_id; - U32 creation_date; - U32 expiration_date; - U32 category; - std::string name; - std::string description; - LLUUID parcel_id; - U32 parent_estate; - LLUUID snapshot_id; - std::string sim_name; - LLVector3d pos_global; - std::string parcel_name; - U8 flags; - S32 price_for_listing; + LLUUID agent_id; + LLUUID classified_id; + LLUUID creator_id; + U32 creation_date; + U32 expiration_date; + U32 category; + std::string name; + std::string description; + LLUUID parcel_id; + U32 parent_estate; + LLUUID snapshot_id; + std::string sim_name; + LLVector3d pos_global; + std::string parcel_name; + U8 flags; + S32 price_for_listing; }; class LLAvatarPropertiesObserver { public: - virtual ~LLAvatarPropertiesObserver() {} - virtual void processProperties(void* data, EAvatarProcessorType type) = 0; + virtual ~LLAvatarPropertiesObserver() {} + virtual void processProperties(void* data, EAvatarProcessorType type) = 0; }; class LLAvatarPropertiesProcessor - : public LLSingleton<LLAvatarPropertiesProcessor> + : public LLSingleton<LLAvatarPropertiesProcessor> { - LLSINGLETON(LLAvatarPropertiesProcessor); - virtual ~LLAvatarPropertiesProcessor(); + LLSINGLETON(LLAvatarPropertiesProcessor); + virtual ~LLAvatarPropertiesProcessor(); public: - void addObserver(const LLUUID& avatar_id, LLAvatarPropertiesObserver* observer); + void addObserver(const LLUUID& avatar_id, LLAvatarPropertiesObserver* observer); - void removeObserver(const LLUUID& avatar_id, LLAvatarPropertiesObserver* observer); + void removeObserver(const LLUUID& avatar_id, LLAvatarPropertiesObserver* observer); - // Request various types of avatar data. Duplicate requests will be - // suppressed while waiting for a response from the network. - void sendAvatarPropertiesRequest(const LLUUID& avatar_id); + // Request various types of avatar data. Duplicate requests will be + // suppressed while waiting for a response from the network. + void sendAvatarPropertiesRequest(const LLUUID& avatar_id); void sendAvatarLegacyPropertiesRequest(const LLUUID& avatar_id); - void sendAvatarTexturesRequest(const LLUUID& avatar_id); - void sendAvatarClassifiedsRequest(const LLUUID& avatar_id); + void sendAvatarTexturesRequest(const LLUUID& avatar_id); + void sendAvatarClassifiedsRequest(const LLUUID& avatar_id); - // Duplicate pick info requests are not suppressed. - void sendPickInfoRequest(const LLUUID& creator_id, const LLUUID& pick_id); + // Duplicate pick info requests are not suppressed. + void sendPickInfoRequest(const LLUUID& creator_id, const LLUUID& pick_id); - void sendClassifiedInfoRequest(const LLUUID& classified_id); + void sendClassifiedInfoRequest(const LLUUID& classified_id); - void sendPickInfoUpdate(const LLPickData* new_pick); + void sendPickInfoUpdate(const LLPickData* new_pick); - void sendClassifiedInfoUpdate(const LLAvatarClassifiedInfo* c_data); + void sendClassifiedInfoUpdate(const LLAvatarClassifiedInfo* c_data); - void sendFriendRights(const LLUUID& avatar_id, S32 rights); + void sendFriendRights(const LLUUID& avatar_id, S32 rights); - void sendPickDelete(const LLUUID& pick_id); + void sendPickDelete(const LLUUID& pick_id); - void sendClassifiedDelete(const LLUUID& classified_id); + void sendClassifiedDelete(const LLUUID& classified_id); - bool isHideAgeSupportedByServer() { return mIsHideAgeSupportedByServer; } + bool isHideAgeSupportedByServer() { return mIsHideAgeSupportedByServer; } - // Returns translated, human readable string for account type, such - // as "Resident" or "Linden Employee". Used for profiles, inspectors. - static std::string accountType(const LLAvatarData* avatar_data); + // Returns translated, human readable string for account type, such + // as "Resident" or "Linden Employee". Used for profiles, inspectors. + static std::string accountType(const LLAvatarData* avatar_data); - // Returns translated, human readable string for payment info, such - // as "Payment Info on File" or "Payment Info Used". - // Used for profiles, inspectors. - static std::string paymentInfo(const LLAvatarData* avatar_data); + // Returns translated, human readable string for payment info, such + // as "Payment Info on File" or "Payment Info Used". + // Used for profiles, inspectors. + static std::string paymentInfo(const LLAvatarData* avatar_data); - static bool hasPaymentInfoOnFile(const LLAvatarData* avatar_data); + static bool hasPaymentInfoOnFile(const LLAvatarData* avatar_data); static void requestAvatarPropertiesCoro(std::string cap_url, LLUUID avatar_id, EAvatarProcessorType type); // Processing of UDP variant of properties, truncates certain fields! static void processAvatarLegacyPropertiesReply(LLMessageSystem* msg, void**); - static void processAvatarInterestsReply(LLMessageSystem* msg, void**); + static void processAvatarInterestsReply(LLMessageSystem* msg, void**); - static void processAvatarClassifiedsReply(LLMessageSystem* msg, void**); + static void processAvatarClassifiedsReply(LLMessageSystem* msg, void**); - static void processClassifiedInfoReply(LLMessageSystem* msg, void**); + static void processClassifiedInfoReply(LLMessageSystem* msg, void**); - static void processAvatarGroupsReply(LLMessageSystem* msg, void**); + static void processAvatarGroupsReply(LLMessageSystem* msg, void**); - static void processAvatarNotesReply(LLMessageSystem* msg, void**); + static void processAvatarNotesReply(LLMessageSystem* msg, void**); - static void processAvatarPicksReply(LLMessageSystem* msg, void**); + static void processAvatarPicksReply(LLMessageSystem* msg, void**); - static void processPickInfoReply(LLMessageSystem* msg, void**); + static void processPickInfoReply(LLMessageSystem* msg, void**); protected: @@ -256,37 +256,37 @@ protected: void sendAvatarPropertiesRequestMessage(const LLUUID& avatar_id); void initAgentProfileCapRequest(const LLUUID& avatar_id, const std::string& cap_url, EAvatarProcessorType type); - void notifyObservers(const LLUUID& id,void* data, EAvatarProcessorType type); + void notifyObservers(const LLUUID& id,void* data, EAvatarProcessorType type); - // Is there a pending, not timed out, request for this avatar's data? - // Use this to suppress duplicate requests for data when a request is - // pending. - bool isPendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type); + // Is there a pending, not timed out, request for this avatar's data? + // Use this to suppress duplicate requests for data when a request is + // pending. + bool isPendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type); - // Call this when a request has been sent - void addPendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type); + // Call this when a request has been sent + void addPendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type); - // Call this when the reply to the request is received - void removePendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type); + // Call this when the reply to the request is received + void removePendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type); - typedef void* (*processor_method_t)(LLMessageSystem*); - static processor_method_t getProcessor(EAvatarProcessorType type); + typedef void* (*processor_method_t)(LLMessageSystem*); + static processor_method_t getProcessor(EAvatarProcessorType type); protected: - - typedef std::multimap<LLUUID, LLAvatarPropertiesObserver*> observer_multimap_t; - - observer_multimap_t mObservers; - // Keep track of pending requests for data by avatar id and type. - // Maintain a timestamp for each request so a request that receives no reply - // does not block future requests forever. - // Map avatar_id+request_type -> U32 timestamp in seconds - typedef std::map< std::pair<LLUUID, EAvatarProcessorType>, U32> timestamp_map_t; - timestamp_map_t mRequestTimestamps; + typedef std::multimap<LLUUID, LLAvatarPropertiesObserver*> observer_multimap_t; + + observer_multimap_t mObservers; + + // Keep track of pending requests for data by avatar id and type. + // Maintain a timestamp for each request so a request that receives no reply + // does not block future requests forever. + // Map avatar_id+request_type -> U32 timestamp in seconds + typedef std::map< std::pair<LLUUID, EAvatarProcessorType>, U32> timestamp_map_t; + timestamp_map_t mRequestTimestamps; - // Is returned by isHideAgeSupportedByServer() - bool mIsHideAgeSupportedByServer { false }; + // Is returned by isHideAgeSupportedByServer() + bool mIsHideAgeSupportedByServer { false }; }; #endif // LL_LLAVATARPROPERTIESPROCESSOR_H |
