1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/**
* Orthanc - A Lightweight, RESTful DICOM Store
* Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
* Department, University Hospital of Liege, Belgium
* Copyright (C) 2017-2023 Osimis S.A., Belgium
* Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
#pragma once
#include "../../Resources/Orthanc/Databases/DatabaseConstraint.h"
namespace OrthancDatabases
{
class IDatabaseBackendOutput : public boost::noncopyable
{
public:
/**
* Contrarily to its parent "IDatabaseBackendOutput" class, the
* "IFactory" subclass *can* be invoked from multiple threads if
* used through "DatabaseBackendAdapterV3". Make sure to implement
* proper locking if need be.
**/
class IFactory : public boost::noncopyable
{
public:
virtual ~IFactory()
{
}
virtual IDatabaseBackendOutput* CreateOutput() = 0;
};
virtual ~IDatabaseBackendOutput()
{
}
virtual void SignalDeletedAttachment(const std::string& uuid,
int32_t contentType,
uint64_t uncompressedSize,
const std::string& uncompressedHash,
int32_t compressionType,
uint64_t compressedSize,
const std::string& compressedHash) = 0;
virtual void SignalDeletedResource(const std::string& publicId,
OrthancPluginResourceType resourceType) = 0;
virtual void SignalRemainingAncestor(const std::string& ancestorId,
OrthancPluginResourceType ancestorType) = 0;
virtual void AnswerAttachment(const std::string& uuid,
int32_t contentType,
uint64_t uncompressedSize,
const std::string& uncompressedHash,
int32_t compressionType,
uint64_t compressedSize,
const std::string& compressedHash) = 0;
virtual void AnswerChange(int64_t seq,
int32_t changeType,
OrthancPluginResourceType resourceType,
const std::string& publicId,
const std::string& date) = 0;
virtual void AnswerDicomTag(uint16_t group,
uint16_t element,
const std::string& value) = 0;
virtual void AnswerExportedResource(int64_t seq,
OrthancPluginResourceType resourceType,
const std::string& publicId,
const std::string& modality,
const std::string& date,
const std::string& patientId,
const std::string& studyInstanceUid,
const std::string& seriesInstanceUid,
const std::string& sopInstanceUid) = 0;
#if ORTHANC_PLUGINS_HAS_DATABASE_CONSTRAINT == 1
virtual void AnswerMatchingResource(const std::string& resourceId) = 0;
#endif
#if ORTHANC_PLUGINS_HAS_DATABASE_CONSTRAINT == 1
virtual void AnswerMatchingResource(const std::string& resourceId,
const std::string& someInstanceId) = 0;
#endif
};
}
|