File size: 3,383 Bytes
3230c19 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
// 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 <memory>
#include <string>
#include "arrow/json/options.h"
#include "arrow/status.h"
#include "arrow/util/key_value_metadata.h"
#include "arrow/util/macros.h"
#include "arrow/util/visibility.h"
namespace arrow {
class Array;
class Buffer;
class MemoryPool;
class KeyValueMetadata;
class ResizableBuffer;
namespace json {
struct Kind {
enum type : uint8_t {
kNull,
kBoolean,
kNumber,
kString,
kArray,
kObject,
kNumberOrString
};
static const std::string& Name(Kind::type);
static const std::shared_ptr<const KeyValueMetadata>& Tag(Kind::type);
static Kind::type FromTag(const std::shared_ptr<const KeyValueMetadata>& tag);
static Status ForType(const DataType& type, Kind::type* kind);
};
/// \class BlockParser
/// \brief A reusable block-based parser for JSON data
///
/// The parser takes a block of newline delimited JSON data and extracts Arrays
/// of unconverted strings which can be fed to a Converter to obtain a usable Array.
///
/// Note that in addition to parse errors (such as malformed JSON) some conversion
/// errors are caught at parse time:
/// - A null value in non-nullable column
/// - Change in the JSON kind of a column. For example, if an explicit schema is provided
/// which stipulates that field "a" is integral, a row of {"a": "not a number"} will
/// result in an error. This also applies to fields outside an explicit schema.
class ARROW_EXPORT BlockParser {
public:
virtual ~BlockParser() = default;
/// \brief Reserve storage for scalars parsed from a block of json
virtual Status ReserveScalarStorage(int64_t nbytes) = 0;
/// \brief Parse a block of data
virtual Status Parse(const std::shared_ptr<Buffer>& json) = 0;
/// \brief Extract parsed data
virtual Status Finish(std::shared_ptr<Array>* parsed) = 0;
/// \brief Return the number of parsed rows
int32_t num_rows() const { return num_rows_; }
/// \brief Construct a BlockParser
///
/// \param[in] pool MemoryPool to use when constructing parsed array
/// \param[in] options ParseOptions to use when parsing JSON
/// \param[out] out constructed BlockParser
static Status Make(MemoryPool* pool, const ParseOptions& options,
std::unique_ptr<BlockParser>* out);
static Status Make(const ParseOptions& options, std::unique_ptr<BlockParser>* out);
protected:
ARROW_DISALLOW_COPY_AND_ASSIGN(BlockParser);
explicit BlockParser(MemoryPool* pool) : pool_(pool) {}
MemoryPool* pool_;
int32_t num_rows_ = 0;
};
} // namespace json
} // namespace arrow
|