Skip to content
Snippets Groups Projects
Commit ff071bbd authored by Monroe Linden's avatar Monroe Linden
Browse files

Added a mechanism for preventing classes of notifications from being...

Added a mechanism for preventing classes of notifications from being displayed, controlled by the notification_visibility.xml file in the viewer skin.

Reviewed by Richard.
parent 594a115c
No related branches found
No related tags found
No related merge requests found
...@@ -159,6 +159,7 @@ set(llui_HEADER_FILES ...@@ -159,6 +159,7 @@ set(llui_HEADER_FILES
llnotificationslistener.h llnotificationslistener.h
llnotificationsutil.h llnotificationsutil.h
llnotificationtemplate.h llnotificationtemplate.h
llnotificationvisibilityrule.h
llpanel.h llpanel.h
llprogressbar.h llprogressbar.h
llradiogroup.h llradiogroup.h
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include "llnotifications.h" #include "llnotifications.h"
#include "llnotificationtemplate.h" #include "llnotificationtemplate.h"
#include "llnotificationvisibilityrule.h"
#include "llinstantmessage.h" #include "llinstantmessage.h"
#include "llxmlnode.h" #include "llxmlnode.h"
...@@ -414,6 +415,13 @@ LLNotificationTemplate::LLNotificationTemplate(const LLNotificationTemplate::Par ...@@ -414,6 +415,13 @@ LLNotificationTemplate::LLNotificationTemplate(const LLNotificationTemplate::Par
mForm = LLNotificationFormPtr(new LLNotificationForm(p.name, p.form_ref.form)); mForm = LLNotificationFormPtr(new LLNotificationForm(p.name, p.form_ref.form));
} }
LLNotificationVisibilityRule::LLNotificationVisibilityRule(const LLNotificationVisibilityRule::Params &p)
: mVisible(p.visible),
mType(p.type),
mTag(p.tag)
{
}
LLNotification::LLNotification(const LLNotification::Params& p) : LLNotification::LLNotification(const LLNotification::Params& p) :
mTimestamp(p.time_stamp), mTimestamp(p.time_stamp),
mSubstitutions(p.substitutions), mSubstitutions(p.substitutions),
...@@ -1188,6 +1196,7 @@ LLNotificationChannelPtr LLNotifications::getChannel(const std::string& channelN ...@@ -1188,6 +1196,7 @@ LLNotificationChannelPtr LLNotifications::getChannel(const std::string& channelN
void LLNotifications::initSingleton() void LLNotifications::initSingleton()
{ {
loadTemplates(); loadTemplates();
loadVisibilityRules();
createDefaultChannels(); createDefaultChannels();
} }
...@@ -1205,7 +1214,9 @@ void LLNotifications::createDefaultChannels() ...@@ -1205,7 +1214,9 @@ void LLNotifications::createDefaultChannels()
boost::bind(&LLNotifications::uniqueFilter, this, _1)); boost::bind(&LLNotifications::uniqueFilter, this, _1));
LLNotificationChannel::buildChannel("Ignore", "Unique", LLNotificationChannel::buildChannel("Ignore", "Unique",
filterIgnoredNotifications); filterIgnoredNotifications);
LLNotificationChannel::buildChannel("Visible", "Ignore", LLNotificationChannel::buildChannel("VisibilityRules", "Ignore",
boost::bind(&LLNotifications::isVisibleByRules, this, _1));
LLNotificationChannel::buildChannel("Visible", "VisibilityRules",
&LLNotificationFilters::includeEverything); &LLNotificationFilters::includeEverything);
// create special persistent notification channel // create special persistent notification channel
...@@ -1226,6 +1237,8 @@ void LLNotifications::createDefaultChannels() ...@@ -1226,6 +1237,8 @@ void LLNotifications::createDefaultChannels()
// connectFailedFilter(boost::bind(&LLNotifications::failedUniquenessTest, this, _1)); // connectFailedFilter(boost::bind(&LLNotifications::failedUniquenessTest, this, _1));
LLNotifications::instance().getChannel("Ignore")-> LLNotifications::instance().getChannel("Ignore")->
connectFailedFilter(&handleIgnoredNotification); connectFailedFilter(&handleIgnoredNotification);
LLNotifications::instance().getChannel("VisibilityRules")->
connectFailedFilter(&handleIgnoredNotification);
} }
bool LLNotifications::addTemplate(const std::string &name, bool LLNotifications::addTemplate(const std::string &name,
...@@ -1404,6 +1417,36 @@ bool LLNotifications::loadTemplates() ...@@ -1404,6 +1417,36 @@ bool LLNotifications::loadTemplates()
return true; return true;
} }
bool LLNotifications::loadVisibilityRules()
{
const std::string xml_filename = "notification_visibility.xml";
std::string full_filename = gDirUtilp->findSkinnedFilename(LLUI::getXUIPaths().front(), xml_filename);
LLXMLNodePtr root;
BOOL success = LLUICtrlFactory::getLayeredXMLNode(xml_filename, root);
if (!success || root.isNull() || !root->hasName( "notification_visibility" ))
{
llerrs << "Problem reading UI Notification Visibility Rules file: " << full_filename << llendl;
return false;
}
LLNotificationVisibilityRule::Rules params;
LLXUIParser parser;
parser.readXUI(root, params, full_filename);
mVisibilityRules.clear();
for(LLInitParam::ParamIterator<LLNotificationVisibilityRule::Params>::iterator it = params.rules.begin(), end_it = params.rules.end();
it != end_it;
++it)
{
mVisibilityRules.push_back(LLNotificationVisibilityRulePtr(new LLNotificationVisibilityRule(*it)));
}
return true;
}
// Add a simple notification (from XUI) // Add a simple notification (from XUI)
void LLNotifications::addFromCallback(const LLSD& name) void LLNotifications::addFromCallback(const LLSD& name)
{ {
...@@ -1553,6 +1596,36 @@ bool LLNotifications::getIgnoreAllNotifications() ...@@ -1553,6 +1596,36 @@ bool LLNotifications::getIgnoreAllNotifications()
{ {
return mIgnoreAllNotifications; return mIgnoreAllNotifications;
} }
bool LLNotifications::isVisibleByRules(LLNotificationPtr n)
{
VisibilityRuleList::iterator it;
for(it = mVisibilityRules.begin(); it != mVisibilityRules.end(); it++)
{
// An empty type or tag string will match any notification, so only do the comparison when the string is non-empty in the rule.
if(!(*it)->mType.empty())
{
if((*it)->mType != n->getType())
{
// Type doesn't match, so skip this rule.
continue;
}
}
if(!(*it)->mTag.empty())
{
// TODO: check this notification's tag(s) against it->mTag and continue if no match is found.
}
// If we got here, the rule matches. Don't evaluate subsequent rules.
return (*it)->mVisible;
}
// Default for cases with no rules or incomplete rules is to show all notifications.
return true;
}
// --- // ---
// END OF LLNotifications implementation // END OF LLNotifications implementation
......
...@@ -268,6 +268,11 @@ struct LLNotificationTemplate; ...@@ -268,6 +268,11 @@ struct LLNotificationTemplate;
// with smart pointers // with smart pointers
typedef boost::shared_ptr<LLNotificationTemplate> LLNotificationTemplatePtr; typedef boost::shared_ptr<LLNotificationTemplate> LLNotificationTemplatePtr;
struct LLNotificationVisibilityRule;
typedef boost::shared_ptr<LLNotificationVisibilityRule> LLNotificationVisibilityRulePtr;
/** /**
* @class LLNotification * @class LLNotification
* @brief The object that expresses the details of a notification * @brief The object that expresses the details of a notification
...@@ -856,6 +861,10 @@ class LLNotifications : ...@@ -856,6 +861,10 @@ class LLNotifications :
// load notification descriptions from file; // load notification descriptions from file;
// OK to call more than once because it will reload // OK to call more than once because it will reload
bool loadTemplates(); bool loadTemplates();
// load visibility rules from file;
// OK to call more than once because it will reload
bool loadVisibilityRules();
// Add a simple notification (from XUI) // Add a simple notification (from XUI)
void addFromCallback(const LLSD& name); void addFromCallback(const LLSD& name);
...@@ -902,6 +911,8 @@ class LLNotifications : ...@@ -902,6 +911,8 @@ class LLNotifications :
// test for existence // test for existence
bool templateExists(const std::string& name); bool templateExists(const std::string& name);
typedef std::list<LLNotificationVisibilityRulePtr> VisibilityRuleList;
void forceResponse(const LLNotification::Params& params, S32 option); void forceResponse(const LLNotification::Params& params, S32 option);
void createDefaultChannels(); void createDefaultChannels();
...@@ -916,7 +927,9 @@ class LLNotifications : ...@@ -916,7 +927,9 @@ class LLNotifications :
void setIgnoreAllNotifications(bool ignore); void setIgnoreAllNotifications(bool ignore);
bool getIgnoreAllNotifications(); bool getIgnoreAllNotifications();
bool isVisibleByRules(LLNotificationPtr pNotification);
private: private:
// we're a singleton, so we don't have a public constructor // we're a singleton, so we don't have a public constructor
LLNotifications(); LLNotifications();
...@@ -935,6 +948,8 @@ class LLNotifications : ...@@ -935,6 +948,8 @@ class LLNotifications :
// put your template in // put your template in
bool addTemplate(const std::string& name, LLNotificationTemplatePtr theTemplate); bool addTemplate(const std::string& name, LLNotificationTemplatePtr theTemplate);
TemplateMap mTemplates; TemplateMap mTemplates;
VisibilityRuleList mVisibilityRules;
std::string mFileName; std::string mFileName;
......
/**
* @file llnotificationvisibility.h
* @brief Rules for
* @author Monroe
*
* $LicenseInfo:firstyear=2010&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$
*/
#ifndef LL_LLNOTIFICATION_VISIBILITY_RULE_H
#define LL_LLNOTIFICATION_VISIBILITY_RULE_H
#include "llinitparam.h"
//#include "llnotifications.h"
// This is the class of object read from the XML file (notification_visibility.xml,
// from the appropriate local language directory).
struct LLNotificationVisibilityRule
{
struct Params : public LLInitParam::Block<Params>
{
Mandatory<bool> visible;
Optional<std::string> type;
Optional<std::string> tag;
Params()
: visible("visible"),
type("type"),
tag("tag")
{}
};
struct Rules : public LLInitParam::Block<Rules>
{
Multiple<Params> rules;
Rules()
: rules("rule")
{}
};
LLNotificationVisibilityRule(const Params& p);
// If true, this rule makes matching notifications visible. Otherwise, it makes them invisible.
bool mVisible;
// String to match against the notification's "type". An empty string matches all notifications.
std::string mType;
// String to match against the notification's tag(s). An empty string matches all notifications.
std::string mTag;
};
#endif //LL_LLNOTIFICATION_VISIBILITY_RULE_H
...@@ -174,6 +174,7 @@ BOOL LLFloaterNotificationConsole::postBuild() ...@@ -174,6 +174,7 @@ BOOL LLFloaterNotificationConsole::postBuild()
// these are in the order of processing // these are in the order of processing
addChannel("Unexpired"); addChannel("Unexpired");
addChannel("Ignore"); addChannel("Ignore");
addChannel("VisibilityRules");
addChannel("Visible", true); addChannel("Visible", true);
// all the ones below attach to the Visible channel // all the ones below attach to the Visible channel
addChannel("Persistent"); addChannel("Persistent");
......
<?xml version="1.0" ?>
<notification_visibility>
<rule visible="true"/>
</notification_visibility>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment