X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/blobdiff_plain/72cd3afa29877fedd246d51c408dc94192d6f729..d46655393c9c8e3757da6678303be7749536487d:/src/sql/schedulexmlparser.cpp diff --git a/src/sql/schedulexmlparser.cpp b/src/sql/schedulexmlparser.cpp index 6b7308f..5289c20 100644 --- a/src/sql/schedulexmlparser.cpp +++ b/src/sql/schedulexmlparser.cpp @@ -1,101 +1,129 @@ - -#include -#include - -#include "schedulexmlparser.h" -#include "sqlengine.h" - -#include - -ScheduleXmlParser::ScheduleXmlParser(QObject *aParent) - : QObject(aParent) -{ -} - -void ScheduleXmlParser::parseData(const QByteArray &aData, SqlEngine *aDBEngine) -{ - Q_ASSERT(NULL != aDBEngine); - - QDomDocument document; - document.setContent (aData, false); - - QDomElement scheduleElement = document.firstChildElement("schedule"); - - if (!scheduleElement.isNull()) - { - // TODO: assign conferenceID based on eg. title - int conferenceID = 1; // HARD-WIRED for now to '1' - only one Conference - - QDomElement conferenceElement = scheduleElement.firstChildElement("conference"); - if (!conferenceElement.isNull()) - { - QHash conference; - conference["id"] = QString::number(conferenceID,10); - conference["title"] = conferenceElement.firstChildElement("title").text(); - conference["subtitle"] = conferenceElement.firstChildElement("subtitle").text(); - conference["venue"] = conferenceElement.firstChildElement("venue").text(); - conference["city"] = conferenceElement.firstChildElement("city").text(); - conference["start"] = conferenceElement.firstChildElement("start").text(); // date - conference["end"] = conferenceElement.firstChildElement("end").text(); // date - conference["days"] = conferenceElement.firstChildElement("days").text(); // int - conference["day_change"] = conferenceElement.firstChildElement("day_change").text(); // time - conference["timeslot_duration"] = conferenceElement.firstChildElement("timeslot_duration").text(); // time - aDBEngine->addConferenceToDB(conference); - } - - // we need to get count of all events in order to emit 'progressStatus' signal - int totalEventsCount = scheduleElement.elementsByTagName("event").count(); - - // parsing day elements - int currentEvent = 0; // hold global idx of processed event - QDomNodeList dayList = scheduleElement.elementsByTagName("day"); - for (int i=0; i room; - room["name"] = roomElement.attribute("name"); - room["event_id"] = eventElement.attribute("id"); - room["conference_id"] = QString::number(conferenceID,10); - room["picture"] = "NOT DEFINED YET"; // TODO: implement some mapping to assign correct picture to specified room_name - aDBEngine->addRoomToDB(room); - - // process event's nodes +/* + * Copyright (C) 2010 Ixonos Plc. + * Copyright (C) 2011-2012 Philipp Spitzer, gregor herrmann + * + * This file is part of ConfClerk. + * + * ConfClerk 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. + * + * ConfClerk 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 + * ConfClerk. If not, see . + */ + +#include +#include + +#include "schedulexmlparser.h" +#include "sqlengine.h" +#include "../gui/errormessage.h" + +#include + +ScheduleXmlParser::ScheduleXmlParser(QObject *aParent) + : QObject(aParent) +{ +} + +void ScheduleXmlParser::parseData(const QByteArray &aData, const QString& url) +{ + QDomDocument document; + QString xml_error; + int xml_error_line; + int xml_error_column; + if (!document.setContent (aData, false, &xml_error, &xml_error_line, &xml_error_column)) { + error_message("Could not parse schedule: " + xml_error + " at line " + QString("%1").arg(xml_error_line) + " column " + QString("%1").arg(xml_error_column)); + return; + } + + QDomElement scheduleElement = document.firstChildElement("schedule"); + + SqlEngine::beginTransaction(); + + int confId = 0; + QString conference_title; + if (!scheduleElement.isNull()) + { + QDomElement conferenceElement = scheduleElement.firstChildElement("conference"); + if (!conferenceElement.isNull()) + { + emit(parsingScheduleBegin()); + QHash conference; + conference["id"] = QString::number(0); // conference ID is assigned automatically, or obtained from the DB + conference["title"] = conferenceElement.firstChildElement("title").text(); + conference["subtitle"] = conferenceElement.firstChildElement("subtitle").text(); + conference["venue"] = conferenceElement.firstChildElement("venue").text(); + conference["city"] = conferenceElement.firstChildElement("city").text(); + conference["start"] = conferenceElement.firstChildElement("start").text(); // date + conference["end"] = conferenceElement.firstChildElement("end").text(); // date + conference["days"] = conferenceElement.firstChildElement("days").text(); // int + conference["day_change"] = conferenceElement.firstChildElement("day_change").text(); // time + conference["timeslot_duration"] = conferenceElement.firstChildElement("timeslot_duration").text(); // time + conference["url"] = url; + SqlEngine::addConferenceToDB(conference); + confId = conference["id"].toInt(); + conference_title = conference["title"]; + } + + // we need to get count of all events in order to emit 'progressStatus' signal + int totalEventsCount = scheduleElement.elementsByTagName("event").count(); + + // parsing day elements + int currentEvent = 0; // hold global idx of processed event + QDomNodeList dayList = scheduleElement.elementsByTagName("day"); + for (int i=0; i room; + room["name"] = roomElement.attribute("name"); + room["event_id"] = eventElement.attribute("id"); + room["conference_id"] = QString::number(confId,10); + SqlEngine::addRoomToDB(room); + + // process event's nodes QHash event; event["id"] = eventElement.attribute("id");; - event["conference_id"] = QString::number(conferenceID, 10); - event["start"] = eventElement.firstChildElement("start").text(); // time eg. 10:00 + event["conference_id"] = QString::number(confId, 10); + event["start"] = eventElement.firstChildElement("start").text(); // time eg. 10:00 event["date"] = dayElement.attribute("date"); // date eg. 2009-02-07 event["duration"] = eventElement.firstChildElement("duration").text(); // time eg. 00:30 event["room_name"] = eventElement.firstChildElement("room").text(); // string eg. "Janson" event["tag"] = eventElement.firstChildElement("tag").text(); // string eg. "welcome" event["title"] = eventElement.firstChildElement("title").text(); // string eg. "Welcome" event["subtitle"] = eventElement.firstChildElement("subtitle").text(); // string - event["track"] = eventElement.firstChildElement("track").text(); // string eg. "Keynotes" + event["track"] = eventElement.firstChildElement("track").text(); // string eg. "Keynotes" event["type"] = eventElement.firstChildElement("type").text(); // string eg. "Podium" event["language"] = eventElement.firstChildElement("language").text(); // language eg. "English" event["abstract"] = eventElement.firstChildElement("abstract").text(); // string event["description"] = eventElement.firstChildElement("description").text(); // string - aDBEngine->addEventToDB(event); + SqlEngine::addEventToDB(event); // process persons' nodes QList persons; QDomElement personsElement = eventElement.firstChildElement("persons"); @@ -105,9 +133,9 @@ void ScheduleXmlParser::parseData(const QByteArray &aData, SqlEngine *aDBEngine) person["id"] = personList.at(i).toElement().attribute("id"); person["name"] = personList.at(i).toElement().text(); person["event_id"] = eventElement.attribute("id"); - person["conference_id"] = QString::number(conferenceID, 10); + person["conference_id"] = QString::number(confId, 10); //qDebug() << "adding Person: " << person["name"]; - aDBEngine->addPersonToDB(person); + SqlEngine::addPersonToDB(person); } // process links' nodes QDomElement linksElement = eventElement.firstChildElement("links"); @@ -117,16 +145,22 @@ void ScheduleXmlParser::parseData(const QByteArray &aData, SqlEngine *aDBEngine) link["name"] = linkList.at(i).toElement().text(); link["url"] = linkList.at(i).toElement().attribute("href"); link["event_id"] = eventElement.attribute("id"); - link["conference_id"] = QString::number(conferenceID, 10); - aDBEngine->addLinkToDB(link); + link["conference_id"] = QString::number(confId, 10); + SqlEngine::addLinkToDB(link); } // emit signal to inform the user about the current status (how many events are parsed so far - expressed in %) int status = currentEvent * 100 / totalEventsCount; - progressStatus(status); - } // parsing event elements - } - } // parsing room elements - } // parsing day elements - } // schedule element -} - + progressStatus(status); + } // parsing event elements + } + } // parsing room elements + } // parsing day elements + } // schedule element + SqlEngine::commitTransaction(); + if (!conference_title.isNull()) { + emit parsingScheduleEnd(conference_title); + } else { + error_message("Could not parse schedule"); + } +} +