| // 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 <cstring> |
| #include <memory> |
| #include <string> |
| #include <vector> |
| |
| #include <arrow-adbc/adbc.h> |
| #include <libpq-fe.h> |
| #include <nanoarrow/nanoarrow.h> |
| |
| #include "copy/reader.h" |
| #include "driver/common/utils.h" |
| #include "postgres_type.h" |
| |
| #define ADBC_POSTGRESQL_OPTION_BATCH_SIZE_HINT_BYTES \ |
| "adbc.postgresql.batch_size_hint_bytes" |
| |
| #define ADBC_POSTGRESQL_OPTION_USE_COPY "adbc.postgresql.use_copy" |
| |
| namespace adbcpq { |
| class PostgresConnection; |
| class PostgresStatement; |
| |
| constexpr static int64_t kDefaultBatchSizeHintBytes = 16777216; |
| |
| /// \brief An ArrowArrayStream that reads tuples from a PGresult. |
| class TupleReader final : public std::enable_shared_from_this<TupleReader> { |
| public: |
| TupleReader(PGconn* conn) |
| : status_(ADBC_STATUS_OK), |
| error_(ADBC_ERROR_INIT), |
| conn_(conn), |
| result_(nullptr), |
| pgbuf_(nullptr), |
| copy_reader_(nullptr), |
| row_id_(-1), |
| batch_size_hint_bytes_(kDefaultBatchSizeHintBytes), |
| is_finished_(false) { |
| ArrowErrorInit(&na_error_); |
| data_.data.as_char = nullptr; |
| data_.size_bytes = 0; |
| } |
| |
| int GetSchema(struct ArrowSchema* out); |
| int GetNext(struct ArrowArray* out); |
| const char* last_error() const { return error_.message; } |
| void Release(); |
| void ExportTo(struct ArrowArrayStream* stream); |
| |
| static const struct AdbcError* ErrorFromArrayStream(struct ArrowArrayStream* stream, |
| AdbcStatusCode* status); |
| |
| private: |
| friend class PostgresStatement; |
| |
| int GetCopyData(); |
| int AppendRowAndFetchNext(); |
| int BuildOutput(struct ArrowArray* out); |
| |
| static int GetSchemaTrampoline(struct ArrowArrayStream* self, struct ArrowSchema* out); |
| static int GetNextTrampoline(struct ArrowArrayStream* self, struct ArrowArray* out); |
| static const char* GetLastErrorTrampoline(struct ArrowArrayStream* self); |
| static void ReleaseTrampoline(struct ArrowArrayStream* self); |
| |
| AdbcStatusCode status_; |
| struct AdbcError error_; |
| struct ArrowError na_error_; |
| PGconn* conn_; |
| PGresult* result_; |
| char* pgbuf_; |
| struct ArrowBufferView data_; |
| std::unique_ptr<PostgresCopyStreamReader> copy_reader_; |
| int64_t row_id_; |
| int64_t batch_size_hint_bytes_; |
| bool is_finished_; |
| }; |
| |
| class PostgresStatement { |
| public: |
| PostgresStatement() |
| : connection_(nullptr), |
| query_(), |
| prepared_(false), |
| use_copy_(-1), |
| reader_(nullptr), |
| batch_size_hint_bytes_(kDefaultBatchSizeHintBytes) { |
| std::memset(&bind_, 0, sizeof(bind_)); |
| } |
| |
| // --------------------------------------------------------------------- |
| // ADBC API implementation |
| |
| AdbcStatusCode Bind(struct ArrowArray* values, struct ArrowSchema* schema, |
| struct AdbcError* error); |
| AdbcStatusCode Bind(struct ArrowArrayStream* stream, struct AdbcError* error); |
| AdbcStatusCode Cancel(struct AdbcError* error); |
| AdbcStatusCode ExecuteQuery(struct ArrowArrayStream* stream, int64_t* rows_affected, |
| struct AdbcError* error); |
| AdbcStatusCode ExecuteSchema(struct ArrowSchema* schema, struct AdbcError* error); |
| AdbcStatusCode GetOption(const char* key, char* value, size_t* length, |
| struct AdbcError* error); |
| AdbcStatusCode GetOptionBytes(const char* key, uint8_t* value, size_t* length, |
| struct AdbcError* error); |
| AdbcStatusCode GetOptionDouble(const char* key, double* value, struct AdbcError* error); |
| AdbcStatusCode GetOptionInt(const char* key, int64_t* value, struct AdbcError* error); |
| AdbcStatusCode GetParameterSchema(struct ArrowSchema* schema, struct AdbcError* error); |
| AdbcStatusCode New(struct AdbcConnection* connection, struct AdbcError* error); |
| AdbcStatusCode Prepare(struct AdbcError* error); |
| AdbcStatusCode Release(struct AdbcError* error); |
| AdbcStatusCode SetOption(const char* key, const char* value, struct AdbcError* error); |
| AdbcStatusCode SetOptionBytes(const char* key, const uint8_t* value, size_t length, |
| struct AdbcError* error); |
| AdbcStatusCode SetOptionDouble(const char* key, double value, struct AdbcError* error); |
| AdbcStatusCode SetOptionInt(const char* key, int64_t value, struct AdbcError* error); |
| AdbcStatusCode SetSqlQuery(const char* query, struct AdbcError* error); |
| |
| // --------------------------------------------------------------------- |
| // Helper methods |
| |
| void ClearResult(); |
| AdbcStatusCode CreateBulkTable(const std::string& current_schema, |
| const struct ArrowSchema& source_schema, |
| std::string* escaped_table, |
| std::string* escaped_field_list, |
| struct AdbcError* error); |
| AdbcStatusCode ExecuteIngest(struct ArrowArrayStream* stream, int64_t* rows_affected, |
| struct AdbcError* error); |
| AdbcStatusCode ExecuteBind(struct ArrowArrayStream* stream, int64_t* rows_affected, |
| struct AdbcError* error); |
| |
| private: |
| std::shared_ptr<PostgresTypeResolver> type_resolver_; |
| std::shared_ptr<PostgresConnection> connection_; |
| |
| // Query state |
| std::string query_; |
| bool prepared_; |
| struct ArrowArrayStream bind_; |
| |
| // Bulk ingest state |
| enum class IngestMode { |
| kCreate, |
| kAppend, |
| kReplace, |
| kCreateAppend, |
| }; |
| |
| // Options |
| int use_copy_; |
| |
| struct { |
| std::string db_schema; |
| std::string target; |
| IngestMode mode = IngestMode::kCreate; |
| bool temporary = false; |
| } ingest_; |
| |
| std::shared_ptr<TupleReader> reader_; |
| int64_t batch_size_hint_bytes_; |
| |
| int UseCopy(); |
| }; |
| } // namespace adbcpq |