1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed 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.
*/
#ifndef TIME_VALUE_BUFFER_H_
#define TIME_VALUE_BUFFER_H_
#include <memory>
#include <mutex>
#include <time.h>
#include <vector>
#include "timespec_math.h"
namespace profiler {
// Data per sample. The time field indicates a independent time point when
// value is collected.
template <typename T> struct TimeValue {
timespec time;
T value;
};
// Data holder class of time sequential collected information. For example,
// traffic bytes sent and received information are repeated collected. It stores
// data and provides query functionality.
template <typename T> class TimeValueBuffer {
public:
TimeValueBuffer(size_t capacity)
: capacity_(capacity), values_(new TimeValue<T>[capacity_]) {}
// Add sample value collected at a given time point.
void Add(T value, const timespec &sample_time) {
std::lock_guard<std::mutex> lock(values_mutex_);
size_t index = size_ < capacity_ ? size_ : start_;
values_[index].time = sample_time;
values_[index].value = value;
if (size_ < capacity_) {
size_++;
} else {
start_ = (start_ + 1) % capacity_;
}
}
// Returns data within the given range [time_from, time_to).
std::vector<TimeValue<T>> Get(const timespec &time_from,
const timespec &time_to) {
std::lock_guard<std::mutex> lock(values_mutex_);
std::vector<TimeValue<T>> result;
for (size_t i = 0; i < size_; i++) {
size_t index = (start_ + i) % capacity_;
if (TimespecMath::Compare(values_[index].time, time_from) >= 0 &&
TimespecMath::Compare(values_[index].time, time_to) < 0) {
result.push_back(values_[index]);
}
}
return result;
}
// Returns the number of samples stored.
size_t GetSize() {
std::lock_guard<std::mutex> lock(values_mutex_);
return size_;
}
// Returns collected sample data at given index.
TimeValue<T> Get(size_t index) {
std::lock_guard<std::mutex> lock(values_mutex_);
TimeValue<T> result = values_[(start_ + index) % capacity_];
return result;
}
private:
// Indicates the maximum number of samples it can hold.
const size_t capacity_;
// TODO: Temporarily uses dynamic array. It should change to circular buffer.
std::unique_ptr<TimeValue<T>[]> values_;
std::mutex values_mutex_;
size_t size_ = 0;
size_t start_ = 0;
};
} // namespace profiler
#endif // TIME_VALUE_BUFFER_H_
|