| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 | 
							- /*=============================================================================
 
-   Library: CTK
 
-   Copyright (c) German Cancer Research Center,
 
-     Division of Medical and Biological Informatics
 
-   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
 
-   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.
 
- =============================================================================*/
 
- #ifndef CTKDICOMAVAILABLEDATAHELPER_H
 
- #define CTKDICOMAVAILABLEDATAHELPER_H
 
- // Qt includes
 
- #include <QObject>
 
- #include <QString>
 
- #include <QUuid>
 
- // CTK includes
 
- #include <org_commontk_dah_core_Export.h>
 
- #include <ctkDicomAppHostingTypes.h>
 
- class ctkDicomObjectLocatorCache;
 
- class ctkDICOMItem;
 
- namespace ctkDicomAvailableDataHelper {
 
- //----------------------------------------------------------------------------
 
- class ctkDicomAvailableDataAccessorPrivate;
 
- class org_commontk_dah_core_EXPORT ctkDicomAvailableDataAccessor : public QObject
 
- {
 
- public:
 
-   ctkDicomAvailableDataAccessor(ctkDicomAppHosting::AvailableData& ad);
 
-   virtual ~ctkDicomAvailableDataAccessor();
 
-   
 
-   /**
 
-    * Method used to retrieve information about a specific patient, giving a patient struct with the ID field already 
 
-    * defined.
 
-    * \return the struct with patient information if patient is present inside available data, otherwise return NULL.
 
-    */
 
-   ctkDicomAppHosting::Patient* getPatient(const ctkDicomAppHosting::Patient& patient) const;
 
-   /**
 
-    * Method used to retrieve information about a specific study, giving Study UID.
 
-    * \return the struct with study information if study is present inside available data, otherwise return NULL.
 
-    */
 
-   ctkDicomAppHosting::Study* getStudy(const QString& studyUID) const;
 
-   /**
 
-    * Method used to retrieve information about a specific series, giving series UID.
 
-    * \return the struct with series information if series is present inside available data, otherwise return NULL.
 
-    */
 
-   ctkDicomAppHosting::Series* getSeries(const QString& seriesUID) const;
 
-   void find(const ctkDicomAppHosting::Patient& patient, 
 
-                                          const QString& studyUID, 
 
-                                          const QString& seriesUID,
 
-                                          ctkDicomAppHosting::Patient*& patientResult, 
 
-                                          ctkDicomAppHosting::Study*& studyResult, 
 
-                                          ctkDicomAppHosting::Series*& seriesResult) const;
 
- protected:
 
-   QScopedPointer<ctkDicomAvailableDataAccessorPrivate> d_ptr;
 
- private:
 
-   Q_DECLARE_PRIVATE(ctkDicomAvailableDataAccessor);
 
- };
 
- //----------------------------------------------------------------------------
 
- bool org_commontk_dah_core_EXPORT addToAvailableData(ctkDicomAppHosting::AvailableData& data, 
 
-                         ctkDicomObjectLocatorCache* objectLocatorCache, 
 
-                         const ctkDICOMItem& dataset, 
 
-                         long length, 
 
-                         long offset, 
 
-                         const QString& uri);
 
- //----------------------------------------------------------------------------
 
- bool org_commontk_dah_core_EXPORT addToAvailableData(ctkDicomAppHosting::AvailableData& data, 
 
-                         ctkDicomObjectLocatorCache* objectLocatorCache, 
 
-                         const QString& filename);
 
- //----------------------------------------------------------------------------
 
- bool org_commontk_dah_core_EXPORT addNonDICOMToAvailableData(ctkDicomAppHosting::AvailableData& data, 
 
-                         ctkDicomObjectLocatorCache* objectLocatorCache, 
 
-                         const ctkDICOMItem& dataset, 
 
-                         long length, 
 
-                         long offset, 
 
-                         const QString& uri);
 
- //----------------------------------------------------------------------------
 
- bool org_commontk_dah_core_EXPORT appendToAvailableData(ctkDicomAppHosting::AvailableData& dest,
 
-                         const ctkDicomAppHosting::AvailableData& src);
 
- //----------------------------------------------------------------------------
 
- /**
 
-  * \brief Build list of all UUIDs of data available for patient.
 
-  *
 
-  * Result can be used to retrieve data by calling ctkDicomExchangeInterface::getData.
 
-  *
 
-  * \return alls UUIDs of data for patient inside available data, otherwise empty.
 
-  */
 
- QList<QUuid> org_commontk_dah_core_EXPORT getAllUuids(const ctkDicomAppHosting::Patient& patient);
 
- //----------------------------------------------------------------------------
 
- /**
 
-  * \brief Build list of all UUIDs of available data.
 
-  *
 
-  * Result can be used to retrieve data by calling ctkDicomExchangeInterface::getData.
 
-  *
 
-  * \return alls UUIDs of all data inside available data, otherwise empty.
 
-  */
 
- QList<QUuid> org_commontk_dah_core_EXPORT getAllUuids(const ctkDicomAppHosting::AvailableData& availableData);
 
- } //end namespace ctkDicomAvailableDataHelper
 
- #endif // CTKDICOMAVAILABLEDATAHELPER_H
 
 
  |