blob: e25462e2750bd0f85ed2827816f83fe0743c6d21 [file] [log] [blame]
David Wagnerb76c9d62014-02-05 18:30:24 +01001/*
2 * Copyright (c) 2011-2014, Intel Corporation
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without modification,
6 * are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice, this
9 * list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation and/or
13 * other materials provided with the distribution.
14 *
15 * 3. Neither the name of the copyright holder nor the names of its contributors
16 * may be used to endorse or promote products derived from this software without
17 * specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
23 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Patrick Benavoli68a91282011-08-31 11:23:23 +020029 */
30#pragma once
31
32#include "Rule.h"
33
34class CSelectionCriterion;
35
36class CSelectionCriterionRule : public CRule
37{
Patrick Benavoli6ba361d2011-08-31 11:23:24 +020038 // Matching rules
Patrick Benavoli68a91282011-08-31 11:23:23 +020039 enum MatchesWhen {
40 EIs,
Patrick Benavoli6ba361d2011-08-31 11:23:24 +020041 EIsNot,
42 EIncludes,
43 EExcludes,
Patrick Benavoli68a91282011-08-31 11:23:23 +020044
45 ENbMatchesWhen
46 };
Patrick Benavoli6ba361d2011-08-31 11:23:24 +020047 // Matching rule description
48 struct SMatchingRuleDescription
49 {
50 const char* pcMatchesWhen;
Patrick Benavoli082dd472011-11-07 19:46:00 +010051 bool bExclusiveTypeCompatible;
Patrick Benavoli6ba361d2011-08-31 11:23:24 +020052 };
Patrick Benavoli68a91282011-08-31 11:23:23 +020053
54public:
55 CSelectionCriterionRule();
56
Patrick Benavoli0bd50542011-11-29 11:10:27 +010057 // Parse
58 virtual bool parse(CRuleParser& ruleParser, string& strError);
59
60 // Dump
61 virtual void dump(string& strResult) const;
62
Patrick Benavoli68a91282011-08-31 11:23:23 +020063 // Rule check
64 virtual bool matches() const;
65
66 // From IXmlSink
67 virtual bool fromXml(const CXmlElement& xmlElement, CXmlSerializingContext& serializingContext);
68
69 // From IXmlSource
70 virtual void toXml(CXmlElement& xmlElement, CXmlSerializingContext& serializingContext) const;
71
72 // Class kind
73 virtual string getKind() const;
Patrick Benavoli0bd50542011-11-29 11:10:27 +010074protected:
75 // Content dumping
76 virtual void logValue(string& strValue, CErrorContext& errorContext) const;
Patrick Benavoli68a91282011-08-31 11:23:23 +020077private:
Patrick Benavoli6ba361d2011-08-31 11:23:24 +020078 // XML MatchesWhen attribute parsing
79 bool setMatchesWhen(const string& strMatchesWhen, string& strError);
80
Patrick Benavoli68a91282011-08-31 11:23:23 +020081 // Selection criterion
82 const CSelectionCriterion* _pSelectionCriterion;
83
Patrick Benavoli68a91282011-08-31 11:23:23 +020084 // MatchesWhen
85 MatchesWhen _eMatchesWhen;
86
87 // Value
88 int32_t _iMatchValue;
89
90 // Used for XML MatchesWhen attribute parsing
Patrick Benavoli592ae562011-09-05 16:53:58 +020091 static const SMatchingRuleDescription _astMatchesWhen[ENbMatchesWhen];
Patrick Benavoli68a91282011-08-31 11:23:23 +020092};
93