/*************************************************************************** fileread.cpp - description ------------------- begin : Wed May 23 2001 copyright : (C) 2001 by Javier Campos email : javi@asyris.org ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #include "fileread.h" #include #include #include #include #include #include #include #include #include FileRead::FileRead( TQObject *parent, const char *name ) :TQObject(parent, name), _changed(false), _tmpfile(0) { } FileRead::~FileRead() { } bool FileRead::openFile(const KURL &url) { TQString tmpFile; bool returnval=false; if( KIO::NetAccess::download( url, tmpFile, 0 ) ) { returnval=loadFile( tmpFile ); if (returnval) { _currentURL = url; kdDebug()<<"... load successful: "<<_currentURL.url()<name() << endl; TQFile file(filename); if(!file.open(IO_ReadOnly)) { return false; } if (type->name() == "text/html") // Non-compressed files are recognized as HTML... { doc.setContent(&file); } else { doc.setContent(tqUncompress(file.readAll())); } TQDomElement docElem = doc.documentElement(); if( (doc.doctype().isNull()) || (doc.doctype().name() != "educa") ) { file.close(); return false; } TQDomNode n = docElem.firstChild(); TQDomNodeList dnList = n.childNodes(); for( unsigned int i = 0; i < dnList.count(); ++i) { // ------------------- INFORMATION BODY ----------------------- TQDomElement element = dnList.item(i).toElement(); if( element.tagName() == "default" || element.tagName() == "author" ) { if( element.tagName() == "default" ) { _header.insert( "image", element.attribute( "image", "default.png" ) ); } if( element.tagName() == "author" ) { TQDomNodeList AuthordnList = element.childNodes(); for( unsigned int i = 0; i < AuthordnList.count(); ++i) { TQDomElement authorelement = AuthordnList.item(i).toElement(); _header.insert( authorelement.tagName(), authorelement.text() ); } } } else { _header.insert( element.tagName(), element.text() ); } } n = n.nextSibling(); dnList = n.childNodes(); for( unsigned int i = 0; i < dnList.count(); ++i) { insertQuestion(); // --------------------- QUESTION ATTRIBUTE------------------------ TQDomElement elementNODE = dnList.item(i).toElement(); setQuestion( TQF_TYPE, elementNODE.attribute( "type", "1" ).toInt() ); setQuestion( TQF_PICTURE, elementNODE.attribute( "image", "" ) ); setQuestion( TQF_TIME, elementNODE.attribute( "time", "0" ).toInt() ); setQuestion( TQF_POINTS, elementNODE.attribute( "points", "0" ).toInt() ); TQDomNodeList quList = elementNODE.childNodes(); for( unsigned int x = 0; x < quList.count(); ++x) { // --------------------- QUESTION AND RESPONSES------------------ TQDomElement element = quList.item(x).toElement(); if( element.tagName() == "text" ) setQuestion( TQF_TEXT, element.text() ); if( element.tagName() == "true" ) setAnswer( element.text(), true, element.attribute( "points", "0" ).toInt() ); if( element.tagName() == "false" ) setAnswer( element.text(), false,element.attribute( "points", "0" ).toInt() ); if( element.tagName() == "tip" ) setQuestion( TQF_TIP, element.text() ); if( element.tagName() == "explain" ) setQuestion( TQF_EXPLAIN, element.text() ); } } n = n.nextSibling(); dnList = n.childNodes(); if( dnList.count() > 0 ) { for( unsigned int i = 0; i < dnList.count(); ++i) { insertResult(); // --------------------- QUESTION ATTRIBUTE------------------------ TQDomElement elementNODE = dnList.item(i).toElement(); setResult( RS_TEXT, elementNODE.text() ); setResult( RS_PICTURE, elementNODE.attribute( "image", "" ) ); setResult( RS_MIN, elementNODE.attribute( "min", "0" ).toInt() ); setResult( RS_MAX, elementNODE.attribute( "max", "0" ).toInt() ); } } file.close(); refreshData(); _changed=false; return true; } void FileRead::setQuestion( QuestionField field, const TQString& text) { // TQF_text, TQF_picture, TQF_type, TQF_time, TQF_tip, TQF_explain switch( field ) { case TQF_TEXT: (*_recordQuestions).text = text; break; case TQF_PICTURE: (*_recordQuestions).picture = text; break; case TQF_TIP: (*_recordQuestions).tip = text; break; case TQF_EXPLAIN: (*_recordQuestions).explain = text; break; default: kdDebug()<<"FileRead::setQuestion(QuestionField field, TQString text) called for not handled field value "<unlink(); delete _tmpfile; _tmpfile = 0; } if( saveFile(_currentURL.path(), copyimages, saveCompressed) ) { emit completed(); emit setWindowCaption( _currentURL.prettyURL() ); return true; } } else { // Remote file // We haven't saved yet, or we did but locally - provide a temp file if ( _tmpfile == 0 ) { _tmpfile = new KTempFile; } // otherwise, we already had a temp file if( saveFile(_tmpfile->name(), copyimages, saveCompressed) ) { // upload the file KIO::Job * job = KIO::file_copy( KURL::fromPathOrURL( _tmpfile->name() ), _currentURL, -1, true /*overwrite*/ ); connect( job, TQT_SIGNAL( result( KIO::Job * ) ), this, TQT_SLOT( slotUploadFinished (KIO::Job *) ) ); return true; } } // Save local file and upload local file return false; } bool FileRead::saveFile( const TQString &filename, bool copyimages, bool saveCompressed ) { TQDomDocument doc("document.xml"); TQTextStream stream; TQString line; TQByteArray data; TQBuffer buffer(data); TQFile file(filename); TQStringList copyJOB; stream.setDevice(TQT_TQIODEVICE(&buffer)); if ( (!file.open(IO_WriteOnly)) || (!buffer.open(IO_WriteOnly)) ) { return false; } /* stream.setDevice(&file); if(!file.open(IO_WriteOnly)) { // No puede abrir la base return false; } */ TQString head( "" ); doc.setContent( head ); TQDomElement Root = doc.createElement("Document"); doc.appendChild( Root ); TQDomElement NodeInfo = doc.createElement("Info"); Root.appendChild( NodeInfo ); insertXML( doc, NodeInfo, "title", _header["title"] ); insertXML( doc, NodeInfo, "category", _header["category"] ); insertXML( doc, NodeInfo, "type", _header["type"] ); insertXML( doc, NodeInfo, "level", _header["level"] ); insertXML( doc, NodeInfo, "language", _header["language"] ); if( !(_header["image"]).isEmpty() ) { TQDomElement Nodedefault = doc.createElement("default"); if( copyimages ) { copyJOB.append( _header["image"] ); Nodedefault.setAttribute( "image", TQFileInfo(_header["image"]).fileName() ); } else { Nodedefault.setAttribute( "image", _header["image"]); } NodeInfo.appendChild( Nodedefault ); } if( !_header["name"].isEmpty() || !_header["email"].isEmpty() || !_header["www"].isEmpty() ) { TQDomElement Nodeauthor = doc.createElement("author"); NodeInfo.appendChild( Nodeauthor ); if( !_header["name"].isEmpty() ) insertXML( doc, Nodeauthor, "name", _header["name"] ); if( !_header["email"].isEmpty() ) insertXML( doc, Nodeauthor, "email", _header["email"] ); if( !_header["www"].isEmpty() ) insertXML( doc, Nodeauthor, "www", _header["www"] ); } TQDomElement NodeData = doc.createElement("Data"); Root.appendChild( NodeData ); recordFirst(); while ( !recordEOF() ) { TQDomElement question = doc.createElement("question"); if( !getQuestion( TQF_PICTURE ).isEmpty() ) { if( copyimages ) { copyJOB.append( getQuestion( TQF_PICTURE ) ); question.setAttribute("image", TQFileInfo( getQuestion( TQF_PICTURE ) ).fileName() ); } else { question.setAttribute("image", getQuestion( TQF_PICTURE ) ); } } question.setAttribute( "type", getQuestionInt( TQF_TYPE ) ); if( getQuestionInt( TQF_POINTS ) > 0 ) question.setAttribute( "points", getQuestion( TQF_POINTS ) ); if( getQuestionInt( TQF_TIME ) > 0 ) question.setAttribute( "time", getQuestion( TQF_TIME ) ); insertXML( doc, question, "text", getQuestion( TQF_TEXT ) ); recordAnswerFirst(); while( !recordAnswerEOF() ) { if( getAnswerValue() ) { TQDomElement domELEMENT = doc.createElement( "true" ); if( getAnswerPoints() > 0 ) domELEMENT.setAttribute("points", getAnswerPoints() ); TQDomText DATAelement = doc.createTextNode( getAnswer( AF_TEXT ) ); question.appendChild( domELEMENT ); domELEMENT.appendChild( DATAelement ); } else { // insertXML( doc, question, "false", getAnswer( AF_text ) ); TQDomElement domELEMENT = doc.createElement( "false" ); if( getAnswerPoints() > 0 ) domELEMENT.setAttribute("points", getAnswerPoints() ); TQDomText DATAelement = doc.createTextNode( getAnswer( AF_TEXT ) ); question.appendChild( domELEMENT ); domELEMENT.appendChild( DATAelement ); } recordAnswerNext(); }; if( !getQuestion( TQF_TIP ).isEmpty() ) insertXML( doc, question, "tip", getQuestion( TQF_TIP ) ); if( !getQuestion( TQF_EXPLAIN ).isEmpty() ) insertXML( doc, question, "explain", getQuestion( TQF_EXPLAIN ) ); NodeData.appendChild( question ); recordNext(); } doc.save( stream, 4); buffer.close(); if ( saveCompressed ) file.writeBlock(tqCompress(data)); else file.writeBlock(data); file.close(); if( copyimages == true && copyJOB.count() > 0 ) { KURL::List KurlLIST( copyJOB ); KIO::CopyJob *copyjob; copyjob = KIO::copy( KurlLIST, KURL( _currentURL.directory(false,true) ), true); } _changed=false; return true; } /** Save results */ bool FileRead::saveResults( const KURL &url, const TQString &results ) { if (url.isValid()) { _currentURL = url; } kdDebug()<<"FileRead::saveResults() to "<<_currentURL.url()<unlink(); delete _tmpfile; _tmpfile = 0; } if( saveResults(_currentURL.path(), results) ) { emit completed(); emit setWindowCaption( _currentURL.prettyURL() ); return true; } } else { // Remote file // We haven't saved yet, or we did but locally - provide a temp file if ( _tmpfile == 0 ) { _tmpfile = new KTempFile; } // otherwise, we already had a temp file if( saveResults(_tmpfile->name(), results) ) { // upload the file KIO::Job * job = KIO::file_copy( KURL::fromPathOrURL( _tmpfile->name() ), _currentURL, -1, true /*overwrite*/ ); connect( job, TQT_SIGNAL( result( KIO::Job * ) ), this, TQT_SLOT( slotUploadFinished (KIO::Job *) ) ); return true; } } // Save local file and upload local file return false; } bool FileRead::saveResults( const TQString &filename, const TQString &results ) { TQTextStream stream; TQFile file(filename); TQStringList copyJOB; stream.setDevice(TQT_TQIODEVICE(&file)); if(!file.open(IO_WriteOnly)) { // Cannot open return false; } stream << results; file.close(); return true; } /** Insert xml format data */ void FileRead::insertXML( TQDomDocument &doc, TQDomElement &parent, const TQString &tagName, const TQString &data) { TQDomElement domELEMENT = doc.createElement( tagName ); TQDomText DATAelement = doc.createTextNode( data ); parent.appendChild( domELEMENT ); domELEMENT.appendChild( DATAelement ); } /** Insert xml data format */ void FileRead::insertXML( TQDomDocument &doc, TQDomElement &parent, const TQString &data) { TQDomText DATAelement = doc.createTextNode( data ); parent.appendChild( DATAelement ); } /** Get Header */ TQString FileRead::getHeader(const TQString &head) { return _header[head]; } /** Set header data */ void FileRead::setHeader( const TQString field, const TQString value) { _changed = _header[field]!=value; if( (_header[field]).isEmpty() ) _header.insert( field, value ); else _header.replace( field, value ); } /** is Multi Answer */ bool FileRead::isMultiAnswer() { int numOKanswer = 0; recordAnswerFirst(); while( !recordAnswerEOF() ) { if( (*(*_recordQuestions).recordAnswers).value == true ) numOKanswer++; recordAnswerNext(); } if( numOKanswer > 1 ) { return true; } else { return false; } } /** is Multi Answer */ bool FileRead::isResult() { return _listResults.count() > 0 ? true : false; } void FileRead::slotUploadFinished( KIO::Job * job ) { if (job->error()) { emit canceled( job->errorString() ); kdDebug()<< "FileRead::slotUploadFinished(): " <errorString()< remove temp file { _tmpfile->unlink(); delete _tmpfile; _tmpfile=0; } emit setWindowCaption( _currentURL.prettyURL() ); emit completed(); } } /** Record at index */ void FileRead::recordAt( uint index ) { _recordQuestions = _listQuestions.begin(); for( unsigned int i = 0; i < index; ++i) ++_recordQuestions; } /** Total questions */ uint FileRead::getTotalQuestions() { return _totalQuestions; } /** Total points */ uint FileRead::getTotalPoints() { return _totalPoints; } /** Total time */ uint FileRead::getTotalTime() { return _totalTime; } /** Refresh stadistical data - Points, number questions and total points */ void FileRead::refreshData() { _totalTime = 0; _totalPoints = 0; _totalQuestions = 0; _recordQuestions = _listQuestions.begin(); while ( _recordQuestions != _listQuestions.end() ) { _totalQuestions++; _totalPoints += (*_recordQuestions).points; _totalTime += (*_recordQuestions).time; ++_recordQuestions; } } #include "fileread.moc"