]> git.donarmstrong.com Git - flightcrew.git/blob - src/FlightCrew/Validators/Opf/ItemHrefValid.cpp
Imported Upstream version 0.7.2+dfsg
[flightcrew.git] / src / FlightCrew / Validators / Opf / ItemHrefValid.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 "ItemHrefValid.h"\r
24 #include <ToXercesStringConverter.h>\r
25 #include <FromXercesStringConverter.h>\r
26 #include <XmlUtils.h>\r
27 #include <xercesc/util/XMLUri.hpp>\r
28 \r
29 namespace FlightCrew\r
30 {\r
31 \r
32 std::vector< Result > ItemHrefValid::ValidateXml(\r
33     const xc::DOMDocument &document,\r
34     const fs::path& )\r
35 {\r
36     std::vector< xc::DOMElement* > items = xe::GetElementsByQName( \r
37         document, QName( "item", OPF_XML_NAMESPACE ) );\r
38 \r
39     std::vector< Result > results;\r
40 \r
41     foreach( xc::DOMElement* item, items )\r
42     {\r
43         std::string href = fromX( item->getAttribute( toX( "href" ) ) );\r
44 \r
45         ResultId result_id = ALL_OK;\r
46 \r
47         if ( href.empty() || !ValidUri( href ) )\r
48         \r
49             result_id = ERROR_OPF_ITEM_HREF_INVALID_URI;\r
50 \r
51         else if ( UriHasFragment( href ) )\r
52         \r
53             result_id = ERROR_OPF_ITEM_HREF_HAS_FRAGMENT;\r
54 \r
55         if ( result_id != ALL_OK )\r
56         {\r
57             results.push_back( \r
58                 ResultWithNodeLocation( result_id, *item )\r
59                 .AddMessageArgument( href ) );\r
60         }\r
61     }\r
62 \r
63     return results;\r
64 }\r
65 \r
66 \r
67 bool ItemHrefValid::ValidUri( const std::string &uri )\r
68 {\r
69     return xc::XMLUri::isValidURI( true, toX( uri ) );\r
70 }\r
71 \r
72 \r
73 bool ItemHrefValid::UriHasFragment( const std::string &uri )\r
74 {\r
75     return boost::contains( uri, "#" );\r
76 }\r
77 \r
78 } // namespace FlightCrew\r
79 \r