Coverage Report

Created: 2026-03-17 00:16

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/service/http/action/delete_bitmap_action.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <stdint.h>
21
22
#include <string>
23
24
#include "common/status.h"
25
#include "service/http/http_handler_with_auth.h"
26
#include "storage/storage_engine.h"
27
#include "storage/tablet/tablet.h"
28
29
namespace doris {
30
#include "common/compile_check_begin.h"
31
class HttpRequest;
32
33
class ExecEnv;
34
35
enum class DeleteBitmapActionType { COUNT_LOCAL = 1, COUNT_MS = 2, COUNT_AGG_CACHE = 3 };
36
37
/// This action is used for viewing the delete bitmap status
38
class DeleteBitmapAction : public HttpHandlerWithAuth {
39
public:
40
    DeleteBitmapAction(DeleteBitmapActionType ctype, ExecEnv* exec_env, BaseStorageEngine& engine,
41
                       TPrivilegeHier::type hier, TPrivilegeType::type ptype);
42
43
0
    ~DeleteBitmapAction() override = default;
44
45
    void handle(HttpRequest* req) override;
46
47
private:
48
    Status _handle_show_local_delete_bitmap_count(HttpRequest* req, std::string* json_result);
49
    Status _handle_show_ms_delete_bitmap_count(HttpRequest* req, std::string* json_result);
50
    Status _handle_show_agg_cache_delete_bitmap_count(HttpRequest* req, std::string* json_result);
51
52
private:
53
    BaseStorageEngine& _engine;
54
    DeleteBitmapActionType _delete_bitmap_action_type;
55
};
56
#include "common/compile_check_end.h"
57
} // namespace doris