// 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. #pragma once #include #include #include "arrow/csv/options.h" #include "arrow/dataset/file_base.h" #include "arrow/dataset/type_fwd.h" #include "arrow/dataset/visibility.h" #include "arrow/status.h" namespace arrow { namespace dataset { /// \brief A FileFormat implementation that reads from and writes to Csv files class ARROW_DS_EXPORT CsvFileFormat : public FileFormat { public: /// Options affecting the parsing of CSV files csv::ParseOptions parse_options = csv::ParseOptions::Defaults(); std::string type_name() const override { return "csv"; } bool Equals(const FileFormat& other) const override; Result IsSupported(const FileSource& source) const override; /// \brief Return the schema of the file if possible. Result> Inspect(const FileSource& source) const override; /// \brief Open a file for scanning Result ScanFile(std::shared_ptr options, std::shared_ptr context, FileFragment* fragment) const override; Result> MakeWriter( std::shared_ptr destination, std::shared_ptr schema, std::shared_ptr options) const override { return Status::NotImplemented("writing fragment of CsvFileFormat"); } std::shared_ptr DefaultWriteOptions() override { return NULLPTR; } }; } // namespace dataset } // namespace arrow