| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 | 
							- /*=========================================================================
 
-   Library:   CTK
 
-   Copyright (c) Kitware Inc.
 
-   Licensed under the Apache License, Version 2.0 (the "License");
 
-   you may not use this file except in compliance with the License.
 
-   You may obtain a copy of the License at
 
-       http://www.commontk.org/LICENSE
 
-   Unless required by applicable law or agreed to in writing, software
 
-   distributed under the License is distributed on an "AS IS" BASIS,
 
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-   See the License for the specific language governing permissions and
 
-   limitations under the License.
 
- =========================================================================*/
 
- // Qt includes
 
- #include <QDebug>
 
- #include <QSqlDatabase>
 
- #include <QSqlError>
 
- #include <QSqlQuery>
 
- #include <QFile>
 
- #include <QStringList>
 
- // ctkDICOMCore includes
 
- #include "ctkDICOM.h"
 
- // STD includes
 
- #include <iostream>
 
- #include <stdexcept>
 
- //----------------------------------------------------------------------------
 
- class ctkDICOMPrivate
 
- {
 
- public:
 
-   ctkDICOMPrivate(); 
 
-   bool executeScript(const QString& script);
 
-   QSqlDatabase  Database;
 
-   QString       DatabaseFileName;
 
-   QString       LastError;
 
- };
 
- //----------------------------------------------------------------------------
 
- // ctkDICOMPrivate methods
 
- //------------------------------------------------------------------------------
 
- ctkDICOMPrivate::ctkDICOMPrivate()
 
- {
 
- }
 
- //----------------------------------------------------------------------------
 
- // ctkDICOMWidget methods
 
- //------------------------------------------------------------------------------
 
- ctkDICOM::ctkDICOM(QObject* _parent): Superclass(_parent), d_ptr(new ctkDICOMPrivate)
 
- {
 
- }
 
- //----------------------------------------------------------------------------
 
- ctkDICOM::~ctkDICOM()
 
- {
 
- }
 
- //----------------------------------------------------------------------------
 
- void ctkDICOM::openDatabase(const QString& databaseFileName)
 
- {
 
-   Q_D(ctkDICOM);
 
-   d->Database = QSqlDatabase::addDatabase("QSQLITE","DICOM-DB");
 
-   d->Database.setDatabaseName(databaseFileName);
 
-   if ( ! (d->Database.open()) )
 
-     {
 
-     d->LastError = d->Database.lastError().text();
 
-     throw std::runtime_error(qPrintable(d->LastError));
 
-     }
 
-   if ( d->Database.tables().empty() ) 
 
-     {
 
-     initializeDatabase();
 
-     }
 
- }
 
- //------------------------------------------------------------------------------
 
- const QString& ctkDICOM::GetLastError() const {
 
-   Q_D(const ctkDICOM);
 
-   return d->LastError; 
 
- }
 
- //------------------------------------------------------------------------------
 
- const QSqlDatabase& ctkDICOM::database() const {
 
-   Q_D(const ctkDICOM);
 
-   return d->Database;
 
- }
 
- //------------------------------------------------------------------------------
 
- bool ctkDICOMPrivate::executeScript(const QString& script) {
 
-   QFile scriptFile(script);
 
-   scriptFile.open(QIODevice::ReadOnly);
 
-   if  ( !scriptFile.isOpen() )
 
-     {
 
-     qDebug() << "Script file " << script << " could not be opened!\n";
 
-     return false;
 
-     }
 
-   QString sqlCommands( QTextStream(&scriptFile).readAll() );
 
-   sqlCommands.replace( '\n', ' ' );
 
-   sqlCommands.replace("; ", ";\n");
 
-   QStringList sqlCommandsLines = sqlCommands.split('\n');
 
-   QSqlQuery query(Database);
 
-   for (QStringList::iterator it = sqlCommandsLines.begin(); it != sqlCommandsLines.end()-1; ++it)
 
-   {
 
-     if (! (*it).startsWith("--") )
 
-       {
 
-       qDebug() << *it << "\n";
 
-       query.exec(*it);
 
-       if (query.lastError().type())
 
-         {
 
-         qDebug() << "There was an error during execution of the statement: " << (*it);
 
-         qDebug() << "Error message: " << query.lastError().text();
 
-         return false;
 
-         }
 
-       }
 
-   }
 
-   return true;
 
- }
 
- //------------------------------------------------------------------------------
 
- bool ctkDICOM::initializeDatabase(const char* sqlFileName)
 
- {
 
-   Q_D(ctkDICOM);
 
-   return d->executeScript(sqlFileName);
 
- }
 
- //------------------------------------------------------------------------------
 
- void ctkDICOM::closeDatabase()
 
- {
 
-   Q_D(ctkDICOM);
 
-   d->Database.close();
 
- }
 
 
  |