| /* |
| * 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 "iceberg/update/update_statistics.h" |
| |
| #include <cstdint> |
| #include <memory> |
| #include <unordered_map> |
| #include <vector> |
| |
| #include "iceberg/result.h" |
| #include "iceberg/statistics_file.h" |
| #include "iceberg/transaction.h" |
| #include "iceberg/util/macros.h" |
| |
| namespace iceberg { |
| |
| Result<std::shared_ptr<UpdateStatistics>> UpdateStatistics::Make( |
| std::shared_ptr<TransactionContext> ctx) { |
| ICEBERG_PRECHECK(ctx != nullptr, "Cannot create UpdateStatistics without a context"); |
| return std::shared_ptr<UpdateStatistics>(new UpdateStatistics(std::move(ctx))); |
| } |
| |
| UpdateStatistics::UpdateStatistics(std::shared_ptr<TransactionContext> ctx) |
| : PendingUpdate(std::move(ctx)) {} |
| |
| UpdateStatistics::~UpdateStatistics() = default; |
| |
| UpdateStatistics& UpdateStatistics::SetStatistics( |
| std::shared_ptr<StatisticsFile> statistics_file) { |
| ICEBERG_BUILDER_CHECK(statistics_file != nullptr, "Statistics file cannot be null"); |
| statistics_to_set_[statistics_file->snapshot_id] = std::move(statistics_file); |
| return *this; |
| } |
| |
| UpdateStatistics& UpdateStatistics::RemoveStatistics(int64_t snapshot_id) { |
| statistics_to_set_[snapshot_id] = nullptr; |
| return *this; |
| } |
| |
| Result<UpdateStatistics::ApplyResult> UpdateStatistics::Apply() { |
| ICEBERG_RETURN_UNEXPECTED(CheckErrors()); |
| |
| ApplyResult result; |
| for (const auto& [snapshot_id, stats] : statistics_to_set_) { |
| if (stats) { |
| result.to_set.emplace_back(snapshot_id, stats); |
| } else { |
| result.to_remove.push_back(snapshot_id); |
| } |
| } |
| return result; |
| } |
| |
| } // namespace iceberg |