Yabin Cui | 67d3abd | 2015-04-16 15:26:31 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef SIMPLE_PERF_EVENT_ATTR_H_ |
| 18 | #define SIMPLE_PERF_EVENT_ATTR_H_ |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <string> |
| 22 | |
| 23 | #include "perf_event.h" |
| 24 | |
| 25 | struct EventType; |
| 26 | |
| 27 | // EventAttr manages perf_event_attr, which provides detailed configuration information when |
| 28 | // opening a perf_event_file. The configuration information tells the kernel how to count and |
| 29 | // record events. |
| 30 | class EventAttr { |
| 31 | public: |
| 32 | static EventAttr CreateDefaultAttrToMonitorEvent(const EventType& event_type); |
| 33 | |
| 34 | EventAttr(const perf_event_attr& attr) : attr_(attr) { |
| 35 | } |
| 36 | |
| 37 | perf_event_attr Attr() const { |
| 38 | return attr_; |
| 39 | } |
| 40 | |
| 41 | uint64_t SampleType() const { |
| 42 | return attr_.sample_type; |
| 43 | } |
| 44 | |
| 45 | void EnableOnExec() { |
| 46 | attr_.enable_on_exec = 1; |
| 47 | } |
| 48 | |
| 49 | void SetSampleFreq(uint64_t freq) { |
| 50 | attr_.freq = 1; |
| 51 | attr_.sample_freq = freq; |
| 52 | } |
| 53 | |
| 54 | void SetSamplePeriod(uint64_t period) { |
| 55 | attr_.freq = 0; |
| 56 | attr_.sample_period = period; |
| 57 | } |
| 58 | |
| 59 | void SetSampleAll() { |
| 60 | attr_.sample_id_all = 1; |
| 61 | } |
| 62 | |
| 63 | void Dump(size_t indent = 0) const; |
| 64 | |
| 65 | private: |
| 66 | perf_event_attr attr_; |
| 67 | }; |
| 68 | |
| 69 | #endif // SIMPLE_PERF_EVENT_ATTR_H_ |