#include #include #include #include #include #include "schema.h" namespace schema { ChannelList channel; Channel EmptyChannel; QHash ChanTypes; QHash DataTypes; QHash Scopes; bool schema_initialized=false; void init() { if (schema_initialized) return; schema_initialized=true; EmptyChannel=Channel(0,DATA,DAY,"Empty","Empty Channel","",""); ChanTypes["data"]=DATA; //Types["waveform"]=WAVEFORM; ChanTypes["setting"]=SETTING; Scopes["session"]=SESSION; Scopes["day"]=DAY; Scopes["machine"]=MACHINE; Scopes["global"]=GLOBAL; DataTypes[""]=DEFAULT; DataTypes["bool"]=BOOL; DataTypes["double"]=DOUBLE; DataTypes["integer"]=INTEGER; DataTypes["string"]=STRING; DataTypes["richtext"]=RICHTEXT; DataTypes["date"]=DATE; DataTypes["datetime"]=DATETIME; DataTypes["time"]=TIME; schema::channel.Load(":/docs/channels.xml"); } Channel::Channel(int id, ChanType type, ScopeType scope, QString name, QString description, QString label, QString unit, DataType datatype, QColor color, int link): m_id(id), m_type(type), m_scope(scope), m_name(name), m_description(description), m_label(label), m_unit(unit), m_datatype(datatype), m_defaultcolor(color), m_link(link) { } bool Channel::isNull() { return (this==&EmptyChannel); } ChannelList::ChannelList() :m_doctype("channels") { } ChannelList::~ChannelList() { for (QHash::iterator i=channels.begin();i!=channels.end();i++) { delete i.value(); } } bool ChannelList::Load(QString filename) { QDomDocument doc(m_doctype); QFile file(filename); qDebug() << "Opening " << filename; if (!file.open(QIODevice::ReadOnly)) { qWarning() << "Could not open" << filename; return false; } QString errorMsg; int errorLine; if (!doc.setContent(&file,false,&errorMsg,&errorLine)) { qWarning() << "Invalid XML Content in" << filename; qWarning() << "Error line" << errorLine <<":" << errorMsg; return false; } file.close(); QDomElement root=doc.documentElement(); if (root.tagName().toLower() != "channels") { return false; } QString language=root.attribute("language","en"); QString version=root.attribute("version",""); if (version.isEmpty()) { qWarning() << "No Version Field in" << m_doctype << "Schema, assuming 1.0" << filename; version="1.0"; } qDebug() << "Processing xml file:" << m_doctype << language << version; QDomNodeList grp=root.elementsByTagName("group"); QDomNode node,n,ch; QDomElement e; bool ok; int id,linkid; QString chantype,scopestr,typestr,name,group,idtxt,details,label,unit,datatypestr,defcolor,link; ChanType type; DataType datatype; Channel *chan; QColor color; bool multi; ScopeType scope; int line; for (int i=0;i0) { if (channels.contains(linkid)) { Channel *it=channels[linkid]; it->m_links.push_back(chan); int i=0; } else { qWarning() << "Linked channel must be defined first in" << filename <<"line" << line; } } // process children while(!ch.isNull()) { e=ch.toElement(); QString sub=ch.nodeName().toLower(); QString id2str,name2str; int id2; if (sub=="option") { id2str=e.attribute("id"); id2=id2str.toInt(&ok,10); name2str=e.attribute("value"); //qDebug() << sub << id2 << name2str; chan->addOption(id2,name2str); } else if (sub=="color") { } ch=ch.nextSibling(); } } } return true; } bool ChannelList::Save(QString filename) { return false; } } //typedef schema::Channel * ChannelID;