| /* |
| * 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 <cstdint> |
| #include <memory> |
| #include <string> |
| |
| #include "paimon/memory/bytes.h" |
| #include "paimon/memory/memory_pool.h" |
| #include "paimon/result.h" |
| |
| namespace paimon { |
| /// Blob descriptor to describe a blob reference. |
| /// Memory Layout Description: All multi-byte numerical values (int/long) are stored using Little |
| /// Endian byte order. |
| /// |
| /// | Offset | Field Name | Type | Size | |
| /// |--------|---------------|-----------|------| |
| /// | 0 | version | byte | 1 | |
| /// | 1 | magic_number | long | 8 | |
| /// | 9 | uri_length | int | 4 | |
| /// | 13 | uri_bytes | byte[N] | N | |
| /// | 13 + N | offset | long | 8 | |
| /// | 21 + N | length | long | 8 | |
| |
| class BlobDescriptor { |
| public: |
| static Result<std::unique_ptr<BlobDescriptor>> Create(const std::string& uri, int64_t offset, |
| int64_t length); |
| |
| static Result<std::unique_ptr<BlobDescriptor>> Create(int8_t version, const std::string& uri, |
| int64_t offset, int64_t length); |
| |
| static Result<std::unique_ptr<BlobDescriptor>> Deserialize(const char* buffer, uint64_t size); |
| |
| static Result<bool> IsBlobDescriptor(const char* buffer, uint64_t size); |
| |
| PAIMON_UNIQUE_PTR<Bytes> Serialize(const std::shared_ptr<MemoryPool>& pool) const; |
| |
| std::string ToString() const; |
| |
| int8_t Version() const { |
| return version_; |
| } |
| |
| const std::string& Uri() const { |
| return uri_; |
| } |
| |
| int64_t Offset() const { |
| return offset_; |
| } |
| |
| int64_t Length() const { |
| return length_; |
| } |
| |
| private: |
| BlobDescriptor(int8_t version, const std::string& uri, int64_t offset, int64_t length) |
| : version_(version), uri_(uri), offset_(offset), length_(length) {} |
| |
| private: |
| static constexpr int64_t kMagic = 0x424C4F4244455343l; |
| /// one byte for version, eight bytes for magic number. |
| static constexpr uint64_t kMinDescriptorLength = 9; |
| static constexpr int8_t kCurrentVersion = 2; |
| |
| const int8_t version_ = kCurrentVersion; |
| std::string uri_; |
| int64_t offset_ = 0; |
| int64_t length_ = -1; |
| }; |
| |
| } // namespace paimon |