blob: 5c8da3e0ca73a02d587109eacc37db213ae0d5da [file]
/*
* 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 "paimon/fs/file_system_factory.h"
#include "fmt/format.h"
#include "paimon/factories/factory_creator.h"
#include "paimon/status.h"
namespace paimon {
Result<std::unique_ptr<FileSystem>> FileSystemFactory::Get(
const std::string& identifier, const std::string& path,
const std::map<std::string, std::string>& fs_options) {
auto factory_creator = FactoryCreator::GetInstance();
auto factory = factory_creator->Create(identifier);
if (factory == nullptr) {
return Status::Invalid(
fmt::format("Create factory failed with identifier '{}'.", identifier));
}
auto file_system_factory = dynamic_cast<FileSystemFactory*>(factory);
if (file_system_factory == nullptr) {
return Status::Invalid(
fmt::format("Failed to cast file system factory with identifier '{}'.", identifier));
}
return file_system_factory->Create(path, fs_options);
}
} // namespace paimon