]> git.donarmstrong.com Git - flightcrew.git/blob - src/FlightCrew/Framework/ValidateOpf.cpp
Imported Upstream version 0.7.2+dfsg
[flightcrew.git] / src / FlightCrew / Framework / ValidateOpf.cpp
1 /************************************************************************\r
2 **\r
3 **  Copyright (C) 2010  Strahinja Markovic\r
4 **\r
5 **  This file is part of FlightCrew.\r
6 **\r
7 **  FlightCrew is free software: you can redistribute it and/or modify\r
8 **  it under the terms of the GNU Lesser General Public License as published\r
9 **  by the Free Software Foundation, either version 3 of the License, or\r
10 **  (at your option) any later version.\r
11 **\r
12 **  FlightCrew is distributed in the hope that it will be useful,\r
13 **  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
14 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
15 **  GNU Lesser General Public License for more details.\r
16 **\r
17 **  You should have received a copy of the GNU Lesser General Public License\r
18 **  along with FlightCrew.  If not, see <http://www.gnu.org/licenses/>.\r
19 **\r
20 *************************************************************************/\r
21 \r
22 #include <stdafx.h>\r
23 #include <vector>\r
24 #include <XercesInit.h>\r
25 #include "Result.h"\r
26 #include "Validators/Xml/WellFormedXml.h"\r
27 #include "Validators/Xml/UsesUnicode.h"\r
28 #include "OpfValidatorsList.h"\r
29 #include "Misc/Utilities.h"\r
30 \r
31 \r
32 namespace FlightCrew\r
33 {\r
34    \r
35 std::vector< Result > ValidateOpf( const fs::path &filepath )\r
36 {\r
37     xe::XercesInit init;\r
38 \r
39     if ( !fs::exists( filepath ) )\r
40 \r
41         boost_throw( FileDoesNotExistEx() << ei_FilePath( Util::BoostPathToUtf8Path( filepath ) ) );\r
42 \r
43     std::vector< Result > results;\r
44 \r
45     WellFormedXml wf_validator;\r
46     Util::Extend( results, wf_validator.ValidateFile( filepath ) );\r
47 \r
48     // There is no point in running the other validators \r
49     // if the document is not well-formed.\r
50     if ( !results.empty() )\r
51   \r
52         return Util::SortedInPlace( results );\r
53   \r
54     std::vector< boost::shared_ptr< XmlValidator > > xmlvalidators =\r
55         GetOpfXmlValidators();\r
56 \r
57     xc::DOMDocument& document = wf_validator.GetDocument();\r
58 \r
59     foreach( boost::shared_ptr< XmlValidator > validator, xmlvalidators )\r
60     {\r
61         Util::Extend( results, validator->ValidateXml( document, filepath ) );\r
62     }\r
63 \r
64     Util::Extend( results, UsesUnicode().ValidateFile( filepath ) );\r
65 \r
66     // Needed because the XmlValidators for the opf take\r
67     // a DOM document and not a path\r
68     results = Util::AddPathToResults( results, filepath );\r
69     return Util::SortedInPlace( results );\r
70 }\r
71 \r
72 } // namespace FlightCrew