1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*
* Copyright (c) 2002-2007 Samit Basu
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include <QtCore>
#include <QtGui>
#include <QtXml>
#include <QtNetwork>
#include "Array.hpp"
#include "XML.hpp"
#include "Algorithms.hpp"
//!
//@Module XMLREAD Read an XML Document into FreeMat
//@@Section IO
//@@Usage
//Given a filename, reads an XML document, parses it, and
//returns the result as a FreeMat data structure. The syntax for its
//use is:
//@[
// p = xmlread(filename)
//@]
//where @|filename| is a @|string|. The
//resulting object @|p| is a data structure containing the information
//in the document. Note that the returned object @|p| is not the same
//object as the one returned by MATLAB's @|xmlread|, although the
//information content is the same. The output is largely compatible with the
//output of the parseXML example in the @|xmlread| documentation of the
//MATLAB API.
//@@Signature
//function xmlread XMLReadFunction
//inputs filename
//outputs p
//!
//!
//@Module HTMLREAD Read an HTML Document into FreeMat
//@@Section IO
//@@Usage
//Given a filename, reads an HTML document, (attempts to) parse it, and
//returns the result as a FreeMat data structure. The syntax for its
//use is:
//@[
// p = htmlread(filename)
//@]
//where @|filename| is a @|string|. The
//resulting object @|p| is a data structure containing the information
//in the document. Note that this function works by internally converting
//the HTML document into something closer to XHTML, and then using the
//XML parser to parse it. In some cases, the converted HTML cannot be properly
//parsed. In such cases, a third party tool such as "tidy" will probably do
//a better job.
//@@Signature
//function htmlread HTMLReadFunction
//inputs filename
//outputs p
//!
// private (recursively called) function to convert a QDomElement into
// a FreeMat Array. The structure of a node is a struct with:
// Name: nodeName
// Attributes: cell array of attributes, each is a struct with Name and Value pairs
// Data: Not sure yet
// Children: cell array of nodes
static Array cellScalar(Array t) {
ArrayMatrix m;
ArrayVector n;
n << t;
m << n;
return CellConstructor(m);
}
static Array QDomElementToArray(QDomElement elem);
static Array QDomNodeToArray(QDomNode p) {
if (p.nodeType() == QDomNode::ElementNode)
return QDomElementToArray(p.toElement());
StringVector fnames;
fnames << "Name" << "Value";
ArrayVector vals;
vals << Array(p.nodeName());
vals << Array(p.nodeValue());
return StructConstructor(fnames,vals);
}
static Array QDomNamedNodeMapToArray(QDomNamedNodeMap attr) {
ArrayVector nodes;
for (size_t i=0;i<attr.length();i++)
nodes << QDomNodeToArray(attr.item(i));
return CellConstructor(ArrayMatrix() << nodes);
}
static Array QDomElementToArray(QDomElement elem) {
StringVector fnames;
fnames << "Name" << "Attributes" << "Data" << "Children";
ArrayVector vals;
vals << Array(elem.tagName());
vals << cellScalar(QDomNamedNodeMapToArray(elem.attributes()));
vals << EmptyConstructor();
ArrayVector children;
QDomNode n = elem.firstChild();
while (!n.isNull()) {
children << QDomNodeToArray(n);
n = n.nextSibling();
}
vals << cellScalar(CellConstructor(ArrayMatrix() << children));
return StructConstructor(fnames,vals);
}
ArrayVector XMLReadFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 1)
throw Exception("xmlread requires at least one argument (the filename)");
// Parse the thing
QDomDocument doc("fmdoc");
QString filename(arg[0].asString());
QFile file(filename);
if (!file.open(QIODevice::ReadOnly))
return ArrayVector();
QString errMsg;
int errLine, errColumn;
if (!doc.setContent(&file,true,&errMsg,&errLine,&errColumn)) {
file.close();
throw Exception(QString("error parsing ") + filename + ":" + errMsg + " Line: " + errLine + " Column: " + errColumn);
}
file.close();
// Walk the tree
QDomElement docElem = doc.documentElement();
return ArrayVector() << QDomElementToArray(docElem);
}
ArrayVector HTMLReadFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 1)
throw Exception("htmlread requires at least one argument (the filename)");
// Read the proposed filename
QString filename(arg[0].asString());
QFile file(filename);
if (!file.open(QIODevice::ReadOnly))
return ArrayVector();
QString fileData;
QTextStream tStream(&file);
fileData = tStream.readAll();
file.close();
// Tricky...
// Parse the thing
QTextDocument *tdoc = new QTextDocument;
tdoc->setHtml(fileData);
QString xhtml(tdoc->toHtml());
QFile file2("xhtml.xml");
file2.open(QIODevice::WriteOnly);
QTextStream tStream2(&file2);
tStream2 << xhtml;
file2.close();
delete tdoc;
QDomDocument doc("fmdoc");
QString errMsg;
int errLine, errColumn;
if (!doc.setContent(xhtml,true,&errMsg,&errLine,&errColumn)) {
throw Exception(QString("error parsing ") + filename + ":" + errMsg + " Line: " + errLine + " Column: " + errColumn);
}
// Walk the tree
QDomElement docElem = doc.documentElement();
return ArrayVector() << QDomElementToArray(docElem);
}
//!
//@Module URLWRITE Retrieve a URL into a File
//@@Section IO
//@@Usage
//Given a URL and a timeout, attempts to retrieve the URL and write the
//contents to a file. The syntax is
//@[
// f = urlwrite(url,filename,timeout)
//@]
//The @|timeout| is in milliseconds. Note that the URL must be a complete
//spec (i.e., including the name of the resource you wish to retrieve). So
//for example, you cannot use @|http://www.google.com| as a URL, but must
//instead use @|http://www.google.com/index.html|.
//@@Signature
//function urlwrite URLWriteFunction
//inputs url filename timeout
//outouts filename
//!
void URLRetriever::requestFinished(int id, bool err) {
if (id != m_httpGetId)
return;
m_err = err;
}
void URLRetriever::run()
{
m_http.setHost(m_url.host(), m_url.port() != -1 ? m_url.port() : 80);
if (!m_url.userName().isEmpty())
m_http.setUser(m_url.userName(), m_url.password());
m_httpGetId = m_http.get(m_url.path(), m_file);
QTimer::singleShot((int)m_timeout, &m_http, SLOT(abort()));
connect(&m_http, SIGNAL(done(bool)), &m_event, SLOT(quit()));
connect(&m_http, SIGNAL(requestFinished(int, bool)), this, SLOT(requestFinished(int, bool)));
m_event.exec();
}
ArrayVector URLWriteFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 3) throw Exception("urlwrite requires 3 arguments: url, filename, timeout");
QUrl url(arg[0].asString());
if (!url.isValid()) throw Exception(QString("url is not valid:") + arg[0].asString());
QString filename(arg[0].asString());
QFile file(filename);
if (!file.open(QIODevice::WriteOnly))
throw Exception(QString("unable to open output file ") + filename + " for writing");
double timeout(arg[2].asDouble());
URLRetriever p_url(url,&file,timeout);
p_url.run();
if (p_url.error())
throw Exception(QString("error retrieving url:") + arg[0].asString());
return ArrayVector() << Array(filename);
}
|