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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/**
* SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* Python plugin for Orthanc
* Copyright (C) 2020-2023 Osimis S.A., Belgium
* Copyright (C) 2024-2025 Orthanc Team SRL, Belgium
* Copyright (C) 2021-2025 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/>.
**/
#include "OnChangeCallback.h"
#include "PythonHeaderWrapper.h"
#include "../Resources/Orthanc/Plugins/OrthancPluginCppWrapper.h"
#include "ICallbackRegistration.h"
#include "PythonString.h"
#include <Compatibility.h> // For std::unique_ptr<>
#include <boost/thread.hpp>
class PendingChange : public boost::noncopyable
{
private:
OrthancPluginChangeType changeType_;
OrthancPluginResourceType resourceType_;
std::string resourceId_;
public:
PendingChange(OrthancPluginChangeType changeType,
OrthancPluginResourceType resourceType,
const char* resourceId) :
changeType_(changeType),
resourceType_(resourceType)
{
if (resourceId == NULL)
{
resourceId_.clear();
}
else
{
resourceId_.assign(resourceId);
}
}
OrthancPluginChangeType GetChangeType() const
{
return changeType_;
}
OrthancPluginResourceType GetResourceType() const
{
return resourceType_;
}
const std::string& GetResourceId() const
{
return resourceId_;
}
};
// This corresponds to a simplified, standalone version of
// "Orthanc::SharedMessageQueue" from the Orthanc framework
class PendingChanges : public boost::noncopyable
{
private:
typedef std::list<PendingChange*> Queue;
boost::mutex mutex_;
Queue queue_;
boost::condition_variable elementAvailable_;
boost::condition_variable emptied_;
public:
~PendingChanges()
{
for (Queue::iterator it = queue_.begin(); it != queue_.end(); ++it)
{
assert(*it != NULL);
delete *it;
}
}
void Enqueue(OrthancPluginChangeType changeType,
OrthancPluginResourceType resourceType,
const char* resourceId)
{
boost::mutex::scoped_lock lock(mutex_);
queue_.push_back(new PendingChange(changeType, resourceType, resourceId));
elementAvailable_.notify_one();
}
PendingChange* Dequeue(unsigned int millisecondsTimeout)
{
if (millisecondsTimeout == 0)
{
ORTHANC_PLUGINS_THROW_EXCEPTION(ParameterOutOfRange);
}
boost::mutex::scoped_lock lock(mutex_);
// Wait for a message to arrive in the FIFO queue
while (queue_.empty())
{
bool success = elementAvailable_.timed_wait
(lock, boost::posix_time::milliseconds(millisecondsTimeout));
if (!success)
{
return NULL;
}
}
std::unique_ptr<PendingChange> change(queue_.front());
queue_.pop_front();
if (queue_.empty())
{
emptied_.notify_all();
}
return change.release();
}
void WaitEmpty()
{
boost::mutex::scoped_lock lock(mutex_);
while (!queue_.empty())
{
emptied_.wait(lock);
}
}
};
static PendingChanges pendingChanges_;
static bool stopping_ = false;
static boost::thread changesThread_;
static PyObject* changesCallback_ = NULL;
static void StopThread()
{
stopping_ = true;
if (changesThread_.joinable())
{
changesThread_.join();
}
}
static void ChangesWorker()
{
while (!stopping_)
{
for (;;)
{
std::unique_ptr<PendingChange> change(pendingChanges_.Dequeue(100));
if (change.get() == NULL)
{
break;
}
else if (changesCallback_ != NULL)
{
try
{
PythonLock lock;
PythonString resourceId(lock, change->GetResourceId());
PythonObject args(lock, PyTuple_New(3));
PyTuple_SetItem(args.GetPyObject(), 0, PyLong_FromLong(change->GetChangeType()));
PyTuple_SetItem(args.GetPyObject(), 1, PyLong_FromLong(change->GetResourceType()));
PyTuple_SetItem(args.GetPyObject(), 2, resourceId.Release());
PythonObject result(lock, PyObject_CallObject(changesCallback_, args.GetPyObject()));
std::string traceback;
if (lock.HasErrorOccurred(traceback))
{
ORTHANC_PLUGINS_LOG_ERROR("Error in the Python on-change callback, traceback:\n" + traceback);
}
}
catch (OrthancPlugins::PluginException& e)
{
ORTHANC_PLUGINS_LOG_ERROR("Error during Python on-change callback: " +
std::string(e.What(OrthancPlugins::GetGlobalContext())));
}
}
}
}
}
static OrthancPluginErrorCode OnChangeCallback(OrthancPluginChangeType changeType,
OrthancPluginResourceType resourceType,
const char* resourceId)
{
pendingChanges_.Enqueue(changeType, resourceType, resourceId);
if (changeType == OrthancPluginChangeType_OrthancStopped)
{
// If stopping, make sure to have processed all the events that
// are pending in the queue before returning (new in 3.4)
pendingChanges_.WaitEmpty();
StopThread();
}
return OrthancPluginErrorCode_Success;
}
PyObject* RegisterOnChangeCallback(PyObject* module, PyObject* args)
{
// The GIL is locked at this point (no need to create "PythonLock")
class Registration : public ICallbackRegistration
{
public:
virtual void Register() ORTHANC_OVERRIDE
{
OrthancPluginRegisterOnChangeCallback(OrthancPlugins::GetGlobalContext(), OnChangeCallback);
stopping_ = false;
changesThread_ = boost::thread(ChangesWorker);
}
};
Registration registration;
return ICallbackRegistration::Apply(
registration, args, changesCallback_, "Python on-changes callback");
}
void FinalizeOnChangeCallback()
{
StopThread();
ICallbackRegistration::Unregister(changesCallback_);
}
|