Coverage Report

Created: 2025-04-28 10:28

/root/doris/be/src/util/faststring.cc
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
#include "util/faststring.h"
19
20
#include <glog/logging.h>
21
22
#include <memory>
23
24
namespace doris {
25
26
1.91M
void faststring::GrowToAtLeast(size_t newcapacity) {
27
    // Not enough space, need to reserve more.
28
    // Don't reserve exactly enough space for the new string -- that makes it
29
    // too easy to write perf bugs where you get O(n^2) append.
30
    // Instead, always expand by at least 50%.
31
32
1.91M
    if (newcapacity < capacity_ * 3 / 2) {
33
1.49M
        newcapacity = capacity_ * 3 / 2;
34
1.49M
    }
35
1.91M
    GrowArray(newcapacity);
36
1.91M
}
37
38
13.0M
void faststring::GrowArray(size_t newcapacity) {
39
13.0M
    DCHECK_GE(newcapacity, capacity_);
40
13.0M
    std::unique_ptr<uint8_t[]> newdata(reinterpret_cast<uint8_t*>(Allocator::alloc(newcapacity)));
41
13.0M
    if (len_ > 0) {
42
3.19M
        memcpy(&newdata[0], &data_[0], len_);
43
3.19M
    }
44
45
13.0M
    if (data_ != initial_data_) {
46
1.37M
        Allocator::free(data_, capacity_);
47
11.7M
    } else {
48
11.7M
        ASAN_POISON_MEMORY_REGION(initial_data_, arraysize(initial_data_));
49
11.7M
    }
50
51
13.0M
    data_ = newdata.release();
52
13.0M
    capacity_ = newcapacity;
53
13.0M
    ASAN_POISON_MEMORY_REGION(data_ + len_, capacity_ - len_);
54
13.0M
}
55
56
31
void faststring::ShrinkToFitInternal() {
57
31
    DCHECK_NE(data_, initial_data_);
58
31
    if (len_ <= kInitialCapacity) {
59
21
        ASAN_UNPOISON_MEMORY_REGION(initial_data_, len_);
60
21
        memcpy(initial_data_, &data_[0], len_);
61
21
        Allocator::free(data_, capacity_);
62
21
        data_ = initial_data_;
63
21
        capacity_ = kInitialCapacity;
64
21
    } else {
65
10
        std::unique_ptr<uint8_t[]> newdata(reinterpret_cast<uint8_t*>(Allocator::alloc(len_)));
66
10
        memcpy(&newdata[0], &data_[0], len_);
67
10
        Allocator::free(data_, capacity_);
68
10
        data_ = newdata.release();
69
10
        capacity_ = len_;
70
10
    }
71
31
}
72
73
} // namespace doris