123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- /*=========================================================================
- 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.apache.org/licenses/LICENSE-2.0.txt
- 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 <QCoreApplication>
- #include <QDir>
- #include <QTimer>
- // ctkDICOMCore includes
- #include "ctkDICOMDatabase.h"
- // STD includes
- #include <iostream>
- #include <cstdlib>
- int ctkDICOMDatabaseTest2( int argc, char * argv [] )
- {
- QCoreApplication app(argc, argv);
- if (argc < 2)
- {
- std::cerr << "ctkDICOMDatabaseTest2: missing dicom filePath argument";
- std::cerr << std::endl;
- return EXIT_FAILURE;
- }
- QString dicomFilePath(argv[1]);
- ctkDICOMDatabase database;
- QDir databaseDirectory = QDir::temp();
- databaseDirectory.remove("ctkDICOMDatabase.sql");
- databaseDirectory.remove("ctkDICOMTagCache.sql");
- QFileInfo databaseFile(databaseDirectory, QString("database.test"));
- database.openDatabase(databaseFile.absoluteFilePath());
- if (!database.lastError().isEmpty())
- {
- std::cerr << "ctkDICOMDatabase::openDatabase() failed: "
- << qPrintable(database.lastError()) << std::endl;
- return EXIT_FAILURE;
- }
- if (!database.database().isValid())
- {
- std::cerr << "ctkDICOMDatabase::openDatabase() failed: "
- << "invalid sql database" << std::endl;
- return EXIT_FAILURE;
- }
- if (database.isInMemory())
- {
- std::cerr << "ctkDICOMDatabase::openDatabase() failed: "
- << "database should not be in memory" << std::endl;
- return EXIT_FAILURE;
- }
- bool res = database.initializeDatabase();
- if (!res)
- {
- std::cerr << "ctkDICOMDatabase::initializeDatabase() failed." << std::endl;
- return EXIT_FAILURE;
- }
- //
- // Test that the tag interface works to parse ascii
- //
- QString tag("0008,103e");
- unsigned short group, element;
- if ( !database.tagToGroupElement(tag, group, element) )
- {
- std::cerr << "ctkDICOMDatabase: could not parse tag" << std::endl;
- return EXIT_FAILURE;
- }
- if ( group != 0x8 || element != 0x103e )
- {
- std::cerr << "ctkDICOMDatabase: expected: " << "0008,103e" << std::endl;
- std::cerr << "ctkDICOMDatabase: got: " << group << " " << element << std::endl;
- std::cerr << "ctkDICOMDatabase: parsed tag does not match group/element" << std::endl;
- return EXIT_FAILURE;
- }
- if ( database.groupElementToTag(group, element) != tag )
- {
- std::cerr << "ctkDICOMDatabase: could not convert a uints to tag string" << std::endl;
- return EXIT_FAILURE;
- }
- //
- // Basic test:
- // - insert the file specified on the command line
- // - ask for tag values and compare to known results
- //
- database.insert(dicomFilePath, false, false);
- QString instanceUID("1.2.840.113619.2.135.3596.6358736.4843.1115808177.83");
- QString foundFile = database.fileForInstance(instanceUID);
- if (foundFile != dicomFilePath)
- {
- std::cerr << "ctkDICOMDatabase: didn't get back the original file path" << std::endl;
- return EXIT_FAILURE;
- }
- QString foundInstance = database.instanceForFile(dicomFilePath);
- if (foundInstance != instanceUID)
- {
- std::cerr << "ctkDICOMDatabase: didn't get back the original instance uid" << std::endl;
- return EXIT_FAILURE;
- }
- //
- // Test the tag cache
- //
- if (!database.tagCacheExists())
- {
- std::cerr << "ctkDICOMDatabase: tag cache should be configured when database opens" << std::endl;
- return EXIT_FAILURE;
- }
- if (!database.initializeTagCache())
- {
- std::cerr << "ctkDICOMDatabase: could not initialize tag cache" << std::endl;
- return EXIT_FAILURE;
- }
- if (!database.tagCacheExists())
- {
- std::cerr << "ctkDICOMDatabase: tag cache should exist but is not detected" << std::endl;
- return EXIT_FAILURE;
- }
- if (database.cachedTag(instanceUID, tag) != QString(""))
- {
- std::cerr << "ctkDICOMDatabase: tag cache should return empty string for unknown instance tag" << std::endl;
- return EXIT_FAILURE;
- }
- QString knownSeriesDescription("3D Cor T1 FAST IR-prepped GRE");
- if (!database.cacheTag(instanceUID, tag, knownSeriesDescription))
- {
- std::cerr << "ctkDICOMDatabase: could not insert instance tag" << std::endl;
- return EXIT_FAILURE;
- }
- if (database.cachedTag(instanceUID, tag) != knownSeriesDescription)
- {
- std::cerr << "ctkDICOMDatabase: could not retrieve cached tag" << std::endl;
- return EXIT_FAILURE;
- }
- QString foundSeriesDescription = database.instanceValue(instanceUID, tag);
- if (foundSeriesDescription != knownSeriesDescription)
- {
- std::cerr << "ctkDICOMDatabase: invalid element value returned" << std::endl;
- return EXIT_FAILURE;
- }
- // now update the database
- database.updateSchema();
- // and repeat the above checks
- foundFile = database.fileForInstance(instanceUID);
- if (foundFile != dicomFilePath)
- {
- std::cerr << "ctkDICOMDatabase: didn't get back the original file path" << std::endl;
- return EXIT_FAILURE;
- }
- foundSeriesDescription = database.instanceValue(instanceUID, tag);
- if (foundSeriesDescription != knownSeriesDescription)
- {
- std::cerr << "ctkDICOMDatabase: invalid element value returned" << std::endl;
- return EXIT_FAILURE;
- }
- database.closeDatabase();
- database.initializeDatabase();
- return EXIT_SUCCESS;
- }
|