Orthanc/OrthancServer/Plugins/Samples/CppSkeleton/Resources/SyncOrthancFolder.py
2025-06-23 19:07:37 +05:30

104 lines
3.6 KiB
Python
Executable File

#!/usr/bin/python3
# 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) 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 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This maintenance script updates the content of the "Orthanc" folder
# to match the latest version of the Orthanc source code.
#
import multiprocessing
import os
import stat
import urllib.request
TARGET = os.path.join(os.path.dirname(__file__), 'Orthanc')
PLUGIN_SDK_VERSION = '1.0.0'
REPOSITORY = 'https://orthanc.uclouvain.be/hg/%s/raw-file'
FILES = [
('orthanc', 'OrthancFramework/Resources/CMake/AutoGeneratedCode.cmake', 'CMake'),
('orthanc', 'OrthancFramework/Resources/CMake/Compiler.cmake', 'CMake'),
('orthanc', 'OrthancFramework/Resources/CMake/DownloadOrthancFramework.cmake', 'CMake'),
('orthanc', 'OrthancFramework/Resources/CMake/DownloadPackage.cmake', 'CMake'),
('orthanc', 'OrthancFramework/Resources/EmbedResources.py', 'CMake'),
('orthanc', 'OrthancFramework/Resources/Toolchains/LinuxStandardBaseToolchain.cmake', 'Toolchains'),
('orthanc', 'OrthancFramework/Resources/Toolchains/MinGW-W64-Toolchain32.cmake', 'Toolchains'),
('orthanc', 'OrthancFramework/Resources/Toolchains/MinGW-W64-Toolchain64.cmake', 'Toolchains'),
('orthanc', 'OrthancFramework/Resources/Toolchains/MinGWToolchain.cmake', 'Toolchains'),
('orthanc', 'OrthancServer/Plugins/Samples/Common/ExportedSymbolsPlugins.list', 'Plugins'),
('orthanc', 'OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.cpp', 'Plugins'),
('orthanc', 'OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.h', 'Plugins'),
('orthanc', 'OrthancServer/Plugins/Samples/Common/OrthancPluginException.h', 'Plugins'),
('orthanc', 'OrthancServer/Plugins/Samples/Common/OrthancPluginsExports.cmake', 'Plugins'),
('orthanc', 'OrthancServer/Plugins/Samples/Common/VersionScriptPlugins.map', 'Plugins'),
]
SDK = [
'orthanc/OrthancCPlugin.h',
]
def Download(x):
repository = x[0]
branch = x[1]
source = x[2]
target = os.path.join(TARGET, x[3])
print(target)
try:
os.makedirs(os.path.dirname(target))
except:
pass
url = '%s/%s/%s' % (REPOSITORY % repository, branch, source)
with open(target, 'wb') as f:
try:
f.write(urllib.request.urlopen(url).read())
except:
print('ERROR: %s' % url)
raise
commands = []
for f in FILES:
commands.append([ f[0],
'default',
f[1],
os.path.join(f[2], os.path.basename(f[1])) ])
for f in SDK:
commands.append([
'orthanc',
'Orthanc-%s' % PLUGIN_SDK_VERSION,
'Plugins/Include/%s' % f,
'Sdk-%s/%s' % (PLUGIN_SDK_VERSION, f)
])
pool = multiprocessing.Pool(10) # simultaneous downloads
pool.map(Download, commands)