Esempio n. 1
0
File: Tag.cpp Progetto: G-Node/nix
bool Tag::hasReference(const DataArray &reference) const {
    if (!util::checkEntityInput(reference, false)) {
        return false;
    }
    DataArray da = backend()->getReference(reference.name());
    return da && da.id() == reference.id();
}
Esempio n. 2
0
void Feature::data(const DataArray &data) {
    util::checkEntityInput(data);
    if (!data.isValidEntity()) {
        throw UninitializedEntity();
    }
    backend()->data(data.id());
}
Esempio n. 3
0
void MultiTag::extents(const DataArray &extents) {
    if (extents == none) {
        backend()->extents(none);
    }
    else {
        backend()->extents(extents.id());
    }
}
Esempio n. 4
0
void Feature::data(const DataArray &data) {
    if (data == none) {
        throw std::runtime_error("Empty data entity (DataArray) given");
    }
    else {
        backend()->data(data.id());
    }
}
Esempio n. 5
0
FeatureHDF5::FeatureHDF5(const shared_ptr<IFile> &file, const shared_ptr<IBlock> &block, const Group &group,
                         const string &id, DataArray data, LinkType link_type, time_t time)
    : EntityHDF5(file, group, id, time), block(block)
{
    linkType(link_type);
    // TODO: the line below currently throws an exception if the DataArray
    // is not in block - to consider if we prefer copying it to the block
    this->data(data.id());
}
Esempio n. 6
0
FeatureFS::FeatureFS(const std::shared_ptr<base::IFile> &file, const std::shared_ptr<base::IBlock> &block, const std::string &loc,
                     const std::string &id, DataArray data, LinkType link_type, time_t time)
    : EntityFS(file, (bfs::path(loc) / bfs::path(id)).string(), id, time), block(block)
{
    linkType(link_type);
    // TODO: the line below currently throws an exception if the DataArray
    // is not in block - to consider if we prefer copying it to the block
    this->data(data.id());
}
Esempio n. 7
0
File: Tag.cpp Progetto: asobolev/nix
Feature Tag::createFeature(const DataArray &data, LinkType link_type) {
    if (data == none) {
        throw std::runtime_error("Tag::createFeature: Empty DataArray entity given!");
    }
    return backend()->createFeature(data.id(), link_type);
}
Esempio n. 8
0
File: Tag.cpp Progetto: asobolev/nix
bool Tag::removeReference(const DataArray &reference) {
    if (reference == none) {
        throw std::runtime_error("Tag::removeReference: Empty DataArray entity given!");
    }
    return backend()->removeReference(reference.id());
}
Esempio n. 9
0
File: Tag.cpp Progetto: asobolev/nix
void Tag::addReference(const DataArray &reference) {
    if (reference == none) {
        throw std::runtime_error("Tag::addReference: Empty DataArray entity given!");
    }
    backend()->addReference(reference.id());
}
Esempio n. 10
0
File: Tag.cpp Progetto: G-Node/nix
Feature Tag::createFeature(const DataArray &data, LinkType link_type) {
    if (!util::checkEntityInput(data)) {
        throw UninitializedEntity();
    }
    return backend()->createFeature(data.id(), link_type);
}
Esempio n. 11
0
bool MultiTag::removeReference(const DataArray &reference) {
    util::checkEntityInput(reference);
    return backend()->removeReference(reference.id());
}
Esempio n. 12
0
void MultiTag::addReference(const DataArray &reference) {
    util::checkEntityInput(reference);
    backend()->addReference(reference.id());
}
Esempio n. 13
0
bool MultiTag::hasReference(const DataArray &reference) const {
    util::checkEntityInput(reference);
    return backend()->hasReference(reference.id());
}
Esempio n. 14
0
void MultiTag::positions(const DataArray &positions) {
    util::checkEntityInput(positions);
    backend()->positions(positions.id());
}
Esempio n. 15
0
bool Group::removeDataArray(const DataArray &data_array) {
    if (!util::checkEntityInput(data_array, false)) {
        return false;
    }
    return backend()->removeDataArray(data_array.id());
}
Esempio n. 16
0
void Group::addDataArray(const DataArray &data_array) {
    if (!util::checkEntityInput(data_array)) {
        throw UninitializedEntity();
    }
    backend()->addDataArray(data_array.id());
}