1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// <edit>
#include "llfloater.h"
#include "llmessagelog.h"
#include "lltemplatemessagereader.h"
#include "llfloatermessagebuilder.h"
class LLFloaterMessageLogItem : public LLMessageLogEntry
{
public:
LLFloaterMessageLogItem(LLMessageLogEntry entry);
~LLFloaterMessageLogItem();
LLUUID mID;
U32 mSequenceID;
std::string mName;
std::string mSummary;
U32 mFlags;
std::string getFull(BOOL show_header = TRUE);
BOOL isOutgoing();
private:
static LLTemplateMessageReader* sTemplateMessageReader;
static std::string getString(LLTemplateMessageReader* readerp, const char* block_name, S32 block_num, const char* var_name, e_message_variable_type var_type, BOOL &returned_hex, BOOL summary_mode = FALSE);
};
class LLMessageLogFilter
{
public:
LLMessageLogFilter();
~LLMessageLogFilter();
BOOL set(std::string filter);
std::list<std::string> mPositiveNames;
std::list<std::string> mNegativeNames;
};
class LLMessageLogFilterApply : public LLEventTimer
{
public:
LLMessageLogFilterApply();
void cancel();
BOOL tick();
S32 mProgress;
BOOL mFinished;
private:
std::deque<LLMessageLogEntry> mQueuedMessages;
std::deque<LLMessageLogEntry>::iterator mIter;
};
class LLFloaterMessageLog : public LLFloater, public LLEventTimer
{
public:
LLFloaterMessageLog();
~LLFloaterMessageLog();
static void show();
BOOL postBuild();
BOOL tick();
LLNetListItem* findNetListItem(LLHost host);
LLNetListItem* findNetListItem(LLUUID id);
void refreshNetList();
void refreshNetInfo(BOOL force);
enum ENetInfoMode { NI_NET, NI_LOG };
void setNetInfoMode(ENetInfoMode mode);
static void onLog(LLMessageLogEntry entry);
static void conditionalLog(LLFloaterMessageLogItem item);
static void onCommitNetList(LLUICtrl* ctrl, void* user_data);
static void onCommitMessageLog(LLUICtrl* ctrl, void* user_data);
static void onCommitFilter(LLUICtrl* ctrl, void* user_data);
static BOOL onClickCloseCircuit(void* user_data);
static bool onConfirmCloseCircuit(const LLSD& notification, const LLSD& response );
static bool onConfirmRemoveRegion(const LLSD& notification, const LLSD& response );
static void onClickFilterApply(void* user_data);
void startApplyingFilter(std::string filter, BOOL force);
void stopApplyingFilter();
void updateFilterStatus();
static BOOL sBusyApplyingFilter;
LLMessageLogFilterApply* mMessageLogFilterApply;
static void onClickClearLog(void* user_data);
static LLFloaterMessageLog* sInstance;
static std::list<LLNetListItem*> sNetListItems;
static std::deque<LLMessageLogEntry> sMessageLogEntries;
static std::vector<LLFloaterMessageLogItem> sFloaterMessageLogItems;
static LLMessageLogFilter sMessageLogFilter;
static std::string sMessageLogFilterString;
ENetInfoMode mNetInfoMode;
static void onClickFilterChoice(void* user_data);
static void onClickFilterMenu(void* user_data);
static void onClickSendToMessageBuilder(void* user_data);
};
// </edit>
|