Change copyrights from Nokia to Digia
[profile/ivi/qtxmlpatterns.git] / doc / src / snippets / qxmlschemavalidator / main.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the documentation of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
21 **     of its contributors may be used to endorse or promote products derived
22 **     from this software without specific prior written permission.
23 **
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
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 }