Coverage Report

Created: 2025-04-29 13:43

/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.86M
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.86M
    if (newcapacity < capacity_ * 3 / 2) {
33
1.47M
        newcapacity = capacity_ * 3 / 2;
34
1.47M
    }
35
1.86M
    GrowArray(newcapacity);
36
1.86M
}
37
38
12.7M
void faststring::GrowArray(size_t newcapacity) {
39
12.7M
    DCHECK_GE(newcapacity, capacity_);
40
12.7M
    std::unique_ptr<uint8_t[]> newdata(reinterpret_cast<uint8_t*>(Allocator::alloc(newcapacity)));
41
12.7M
    if (len_ > 0) {
42
3.21M
        memcpy(&newdata[0], &data_[0], len_);
43
3.21M
    }
44
45
12.7M
    if (data_ != initial_data_) {
46
1.33M
        Allocator::free(data_, capacity_);
47
11.4M
    } else {
48
11.4M
        ASAN_POISON_MEMORY_REGION(initial_data_, arraysize(initial_data_));
49
11.4M
    }
50
51
12.7M
    data_ = newdata.release();
52
12.7M
    capacity_ = newcapacity;
53
12.7M
    ASAN_POISON_MEMORY_REGION(data_ + len_, capacity_ - len_);
54
12.7M
}
55
56
39
void faststring::ShrinkToFitInternal() {
57
39
    DCHECK_NE(data_, initial_data_);
58
39
    if (len_ <= kInitialCapacity) {
59
23
        ASAN_UNPOISON_MEMORY_REGION(initial_data_, len_);
60
23
        memcpy(initial_data_, &data_[0], len_);
61
23
        Allocator::free(data_, capacity_);
62
23
        data_ = initial_data_;
63
23
        capacity_ = kInitialCapacity;
64
23
    } else {
65
16
        std::unique_ptr<uint8_t[]> newdata(reinterpret_cast<uint8_t*>(Allocator::alloc(len_)));
66
16
        memcpy(&newdata[0], &data_[0], len_);
67
16
        Allocator::free(data_, capacity_);
68
16
        data_ = newdata.release();
69
16
        capacity_ = len_;
70
16
    }
71
39
}
72
73
} // namespace doris