1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation (qt-info@nokia.com)
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:BSD$
|
---|
10 | ** You may use this file under the terms of the BSD license as follows:
|
---|
11 | **
|
---|
12 | ** "Redistribution and use in source and binary forms, with or without
|
---|
13 | ** modification, are permitted provided that the following conditions are
|
---|
14 | ** met:
|
---|
15 | ** * Redistributions of source code must retain the above copyright
|
---|
16 | ** notice, this list of conditions and the following disclaimer.
|
---|
17 | ** * Redistributions in binary form must reproduce the above copyright
|
---|
18 | ** notice, this list of conditions and the following disclaimer in
|
---|
19 | ** the documentation and/or other materials provided with the
|
---|
20 | ** distribution.
|
---|
21 | ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
---|
22 | ** the names of its contributors may be used to endorse or promote
|
---|
23 | ** products derived from this software without specific prior written
|
---|
24 | ** permission.
|
---|
25 | **
|
---|
26 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
27 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
28 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
29 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
30 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
31 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
32 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
33 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
34 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
35 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
36 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
---|
37 | ** $QT_END_LICENSE$
|
---|
38 | **
|
---|
39 | ****************************************************************************/
|
---|
40 |
|
---|
41 | #include <QtCore>
|
---|
42 | #include <QtXmlPatterns>
|
---|
43 |
|
---|
44 | class SchemaValidator
|
---|
45 | {
|
---|
46 | public:
|
---|
47 | void validateFromUrl() const;
|
---|
48 | void validateFromFile() const;
|
---|
49 | void validateFromData() const;
|
---|
50 | void validateComplete() const;
|
---|
51 |
|
---|
52 | private:
|
---|
53 | QXmlSchema getSchema() const;
|
---|
54 | };
|
---|
55 |
|
---|
56 | void SchemaValidator::validateFromUrl() const
|
---|
57 | {
|
---|
58 | //! [0]
|
---|
59 | const QXmlSchema schema = getSchema();
|
---|
60 |
|
---|
61 | const QUrl url("http://www.schema-example.org/test.xml");
|
---|
62 |
|
---|
63 | QXmlSchemaValidator validator(schema);
|
---|
64 | if (validator.validate(url))
|
---|
65 | qDebug() << "instance document is valid";
|
---|
66 | else
|
---|
67 | qDebug() << "instance document is invalid";
|
---|
68 | //! [0]
|
---|
69 | }
|
---|
70 |
|
---|
71 | void SchemaValidator::validateFromFile() const
|
---|
72 | {
|
---|
73 | //! [1]
|
---|
74 | const QXmlSchema schema = getSchema();
|
---|
75 |
|
---|
76 | QFile file("test.xml");
|
---|
77 | file.open(QIODevice::ReadOnly);
|
---|
78 |
|
---|
79 | QXmlSchemaValidator validator(schema);
|
---|
80 | if (validator.validate(&file, QUrl::fromLocalFile(file.fileName())))
|
---|
81 | qDebug() << "instance document is valid";
|
---|
82 | else
|
---|
83 | qDebug() << "instance document is invalid";
|
---|
84 | //! [1]
|
---|
85 | }
|
---|
86 |
|
---|
87 | void SchemaValidator::validateFromData() const
|
---|
88 | {
|
---|
89 | //! [2]
|
---|
90 | const QXmlSchema schema = getSchema();
|
---|
91 |
|
---|
92 | QByteArray data("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
---|
93 | "<test></test>");
|
---|
94 |
|
---|
95 | QBuffer buffer(&data);
|
---|
96 | buffer.open(QIODevice::ReadOnly);
|
---|
97 |
|
---|
98 | QXmlSchemaValidator validator(schema);
|
---|
99 | if (validator.validate(&buffer))
|
---|
100 | qDebug() << "instance document is valid";
|
---|
101 | else
|
---|
102 | qDebug() << "instance document is invalid";
|
---|
103 | //! [2]
|
---|
104 | }
|
---|
105 |
|
---|
106 | QXmlSchema SchemaValidator::getSchema() const
|
---|
107 | {
|
---|
108 | QByteArray data("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
---|
109 | "<xsd:schema"
|
---|
110 | " xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\""
|
---|
111 | " xmlns=\"http://qt.nokia.com/xmlschematest\""
|
---|
112 | " targetNamespace=\"http://qt.nokia.com/xmlschematest\""
|
---|
113 | " version=\"1.0\""
|
---|
114 | " elementFormDefault=\"qualified\">"
|
---|
115 | "</xsd:schema>");
|
---|
116 |
|
---|
117 | QBuffer buffer(&data);
|
---|
118 | buffer.open(QIODevice::ReadOnly);
|
---|
119 |
|
---|
120 | QXmlSchema schema;
|
---|
121 | schema.load(&buffer);
|
---|
122 |
|
---|
123 | return schema;
|
---|
124 | }
|
---|
125 |
|
---|
126 | void SchemaValidator::validateComplete() const
|
---|
127 | {
|
---|
128 | //! [3]
|
---|
129 | QUrl schemaUrl("file:///home/user/schema.xsd");
|
---|
130 |
|
---|
131 | QXmlSchema schema;
|
---|
132 | schema.load(schemaUrl);
|
---|
133 |
|
---|
134 | if (schema.isValid()) {
|
---|
135 | QFile file("test.xml");
|
---|
136 | file.open(QIODevice::ReadOnly);
|
---|
137 |
|
---|
138 | QXmlSchemaValidator validator(schema);
|
---|
139 | if (validator.validate(&file, QUrl::fromLocalFile(file.fileName())))
|
---|
140 | qDebug() << "instance document is valid";
|
---|
141 | else
|
---|
142 | qDebug() << "instance document is invalid";
|
---|
143 | }
|
---|
144 | //! [3]
|
---|
145 | }
|
---|
146 |
|
---|
147 | int main(int argc, char **argv)
|
---|
148 | {
|
---|
149 | QCoreApplication app(argc, argv);
|
---|
150 |
|
---|
151 | SchemaValidator validator;
|
---|
152 |
|
---|
153 | validator.validateFromUrl();
|
---|
154 | validator.validateFromFile();
|
---|
155 | validator.validateFromData();
|
---|
156 | validator.validateComplete();
|
---|
157 |
|
---|
158 | return 0;
|
---|
159 | }
|
---|