123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- /*=============================================================================
- Library: XNAT/Core
- Copyright (c) University College London,
- Centre for Medical Image Computing
- 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.
- =============================================================================*/
- #include "ctkXnatResource.h"
- #include "ctkXnatObjectPrivate.h"
- #include "ctkXnatSession.h"
- const QString ctkXnatResource::TAGS = "tags";
- const QString ctkXnatResource::FORMAT = "format";
- const QString ctkXnatResource::CONTENT = "content";
- const QString ctkXnatResource::ID = "xnat_abstractresource_id";
- //----------------------------------------------------------------------------
- class ctkXnatResourcePrivate : public ctkXnatObjectPrivate
- {
- public:
- ctkXnatResourcePrivate()
- : ctkXnatObjectPrivate()
- {
- }
- };
- //----------------------------------------------------------------------------
- ctkXnatResource::ctkXnatResource(ctkXnatObject* parent, const QString& schemaType)
- : ctkXnatObject(*new ctkXnatResourcePrivate(), parent, schemaType)
- {
- }
- //----------------------------------------------------------------------------
- ctkXnatResource::~ctkXnatResource()
- {
- }
- //----------------------------------------------------------------------------
- QString ctkXnatResource::resourceUri() const
- {
- if (this->name().length() == 0 || this->name() == "NO NAME")
- return QString("%1/%2").arg(parent()->resourceUri(), this->id());
- else
- return QString("%1/%2").arg(parent()->resourceUri(), this->name());
- }
- //----------------------------------------------------------------------------
- QString ctkXnatResource::id() const
- {
- return this->property(ID);
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::setId(const QString &id)
- {
- this->setProperty(ID, id);
- }
- //----------------------------------------------------------------------------
- QString ctkXnatResource::name() const
- {
- return this->label();
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::setName(const QString &name)
- {
- this->setLabel(name);
- }
- //----------------------------------------------------------------------------
- QString ctkXnatResource::label() const
- {
- return this->property(LABEL);
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::setLabel(const QString &label)
- {
- this->setProperty(LABEL, label);
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::setFormat(const QString &fileFormat)
- {
- this->setProperty(FORMAT, fileFormat);
- }
- //----------------------------------------------------------------------------
- QString ctkXnatResource::format() const
- {
- return this->property(FORMAT);
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::setContent(const QString &fileContent)
- {
- this->setProperty(CONTENT, fileContent);
- }
- //----------------------------------------------------------------------------
- QString ctkXnatResource::content() const
- {
- return this->property(CONTENT);
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::setTags(const QString &fileTags)
- {
- this->setProperty(TAGS, fileTags);
- }
- //----------------------------------------------------------------------------
- QString ctkXnatResource::tags() const
- {
- return this->property(TAGS);
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::reset()
- {
- ctkXnatObject::reset();
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::fetchImpl()
- {
- QString resourceFilesUri = this->resourceUri() + "/files";
- ctkXnatSession* const session = this->session();
- QUuid queryId = session->httpGet(resourceFilesUri);
- QList<ctkXnatObject*> files = session->httpResults(queryId,
- ctkXnatDefaultSchemaTypes::XSI_FILE);
- foreach (ctkXnatObject* file, files)
- {
- QString label = file->name();
- if (label.isEmpty())
- {
- label = "NO NAME";
- }
- file->setName(label);
- this->add(file);
- }
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::downloadImpl(const QString& filename)
- {
- QString query = this->resourceUri() + "/files";
- ctkXnatSession::UrlParameters parameters;
- parameters["format"] = "zip";
- this->session()->download(filename, query, parameters);
- }
- //----------------------------------------------------------------------------
- void ctkXnatResource::saveImpl(bool /*overwrite*/)
- {
- ctkXnatSession::UrlParameters urlParams;
- urlParams["xsi:type"] = this->schemaType();
- const QMap<QString, QString>& properties = this->properties();
- QMapIterator<QString, QString> itProperties(properties);
- while (itProperties.hasNext())
- {
- itProperties.next();
- if (itProperties.key() == ID || itProperties.key() == "xsiType")
- continue;
- urlParams[itProperties.key()] = itProperties.value();
- }
- QUuid queryId = this->session()->httpPut(this->resourceUri(), urlParams);
- session()->httpResults(queryId, ctkXnatDefaultSchemaTypes::XSI_RESOURCE);
- }
|