Update copyright.
[shibboleth/cpp-xmltooling.git] / xmltooling / validation / ValidatorSuite.cpp
1 /*
2  *  Copyright 2001-2007 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/ValidatorSuite.h"
25 #include "util/XMLHelper.h"
26
27 using namespace xmltooling;
28 using namespace std;
29
30 ValidatorSuite xmltooling::SchemaValidators("SchemaValidators");
31
32 void ValidatorSuite::deregisterValidators(const QName& key)
33 {
34     pair<multimap<QName,Validator*>::iterator,multimap<QName,Validator*>::iterator> range=m_map.equal_range(key);
35     for_each(range.first, range.second, xmltooling::cleanup_pair<QName,Validator>());
36     m_map.erase(range.first, range.second);
37 }
38
39 void ValidatorSuite::destroyValidators()
40 {
41     for_each(m_map.begin(),m_map.end(),xmltooling::cleanup_pair<QName,Validator>());
42     m_map.clear();
43 }
44
45 void ValidatorSuite::validate(const XMLObject* xmlObject) const
46 {
47     if (!xmlObject)
48         return;
49
50     pair<multimap<QName,Validator*>::const_iterator,multimap<QName,Validator*>::const_iterator> range;
51     if (xmlObject->getSchemaType()) {
52         range=m_map.equal_range(*(xmlObject->getSchemaType()));
53         while (range.first!=range.second) {
54             range.first->second->validate(xmlObject);
55             ++range.first;
56         }
57     }
58     range=m_map.equal_range(xmlObject->getElementQName());
59     while (range.first!=range.second) {
60         range.first->second->validate(xmlObject);
61         ++range.first;
62     }
63
64     const list<XMLObject*>& kids=xmlObject->getOrderedChildren();
65     for (list<XMLObject*>::const_iterator j=kids.begin(); j!=kids.end(); j++)
66         validate(*j);
67 }