blob: ea89cdc181f8caba8753abf732ca3f4a9f480896 [file] [log] [blame]
/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 "core/repository/FileSystemRepository.h"
#include <memory>
#include <string>
#include "io/FileStream.h"
#include "utils/file/FileUtils.h"
namespace org {
namespace apache {
namespace nifi {
namespace minifi {
namespace core {
namespace repository {
bool FileSystemRepository::initialize(const std::shared_ptr<minifi::Configure> &configuration) {
std::string value;
if (configuration->get(Configure::nifi_dbcontent_repository_directory_default, value)) {
directory_ = value;
} else {
directory_ = configuration->getHome();
}
utils::file::FileUtils::create_dir(directory_);
return true;
}
void FileSystemRepository::stop() {
}
std::shared_ptr<io::BaseStream> FileSystemRepository::write(const minifi::ResourceClaim &claim, bool append) {
return std::make_shared<io::FileStream>(claim.getContentFullPath(), append);
}
bool FileSystemRepository::exists(const minifi::ResourceClaim &streamId) {
std::ifstream file(streamId.getContentFullPath());
return file.good();
}
std::shared_ptr<io::BaseStream> FileSystemRepository::read(const minifi::ResourceClaim &claim) {
return std::make_shared<io::FileStream>(claim.getContentFullPath(), 0, false);
}
bool FileSystemRepository::remove(const minifi::ResourceClaim &claim) {
logger_->log_debug("Deleting resource %s", claim.getContentFullPath());
std::remove(claim.getContentFullPath().c_str());
return true;
}
} /* namespace repository */
} /* namespace core */
} /* namespace minifi */
} /* namespace nifi */
} /* namespace apache */
} /* namespace org */