766418db5202414e3af1329250bdacc501f5dce5
[shibboleth/cpp-xmltooling.git] / xmltooling / validation / ValidatorSuite.cpp
1 /*
2  *  Copyright 2001-2009 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * ValidatorSuite.cpp
19  * 
20  * Groups of rule checkers of XMLObjects based on type or element name. 
21  */
22
23 #include "internal.h"
24 #include "validation/Validator.h"
25 #include "validation/ValidatorSuite.h"
26
27 using namespace xmltooling;
28 using namespace std;
29
30 Validator::Validator()
31 {
32 }
33
34 Validator::~Validator()
35 {
36 }
37
38 ValidatorSuite xmltooling::SchemaValidators("SchemaValidators");
39
40 ValidatorSuite::ValidatorSuite(const char* id) : m_id(id)
41 {
42 }
43
44 ValidatorSuite::~ValidatorSuite()
45 {
46     destroyValidators();
47 }
48
49 const char* ValidatorSuite::getId()
50 {
51     return m_id.c_str();
52 }
53
54 void ValidatorSuite::registerValidator(const QName& key, Validator* validator)
55 {
56     m_map.insert(pair<const QName,Validator*>(key, validator));
57 }
58
59 void ValidatorSuite::deregisterValidators(const QName& key)
60 {
61     pair<multimap<QName,Validator*>::iterator,multimap<QName,Validator*>::iterator> range=m_map.equal_range(key);
62     for_each(range.first, range.second, xmltooling::cleanup_pair<QName,Validator>());
63     m_map.erase(range.first, range.second);
64 }
65
66 void ValidatorSuite::destroyValidators()
67 {
68     for_each(m_map.begin(),m_map.end(),xmltooling::cleanup_pair<QName,Validator>());
69     m_map.clear();
70 }
71
72 void ValidatorSuite::validate(const XMLObject* xmlObject) const
73 {
74     if (!xmlObject)
75         return;
76
77     pair<multimap<QName,Validator*>::const_iterator,multimap<QName,Validator*>::const_iterator> range;
78     if (xmlObject->getSchemaType()) {
79         range=m_map.equal_range(*(xmlObject->getSchemaType()));
80         while (range.first!=range.second) {
81             range.first->second->validate(xmlObject);
82             ++range.first;
83         }
84     }
85     range=m_map.equal_range(xmlObject->getElementQName());
86     while (range.first!=range.second) {
87         range.first->second->validate(xmlObject);
88         ++range.first;
89     }
90
91     const list<XMLObject*>& kids=xmlObject->getOrderedChildren();
92     for (list<XMLObject*>::const_iterator j=kids.begin(); j!=kids.end(); j++)
93         validate(*j);
94 }