LLInstanceTracker added to llcommon (pulled from llui in v2 for usage elsewhere) LLEventTimer now using LLInstanceTracker Updated LLLiveAppConfig (Though it appears unused, really) processor.h is obsolete, thus removed. (llprocessor.h replaces it)
97 lines
3.0 KiB
C++
97 lines
3.0 KiB
C++
// <edit>
|
|
#include "llfloater.h"
|
|
#include "llmessagelog.h"
|
|
#include "lltemplatemessagereader.h"
|
|
#include "lleventtimer.h"
|
|
|
|
class LLNetListItem
|
|
{
|
|
public:
|
|
LLNetListItem(LLUUID id);
|
|
LLUUID mID;
|
|
BOOL mAutoName;
|
|
std::string mName;
|
|
std::string mPreviousRegionName;
|
|
LLCircuitData* mCircuitData;
|
|
};
|
|
|
|
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();
|
|
void refreshNetList();
|
|
|
|
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);
|
|
};
|
|
// </edit>
|