OSDN Git Service

Implement simpleperf list subcommand.
[android-x86/system-extras.git] / simpleperf / event_fd.h
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_FD_H_
18 #define SIMPLE_PERF_EVENT_FD_H_
19
20 #include <sys/types.h>
21
22 #include <memory>
23 #include <string>
24
25 #include <base/macros.h>
26
27 class EventAttr;
28
29 // EventFd represents an opened perf_event_file.
30 class EventFd {
31  public:
32   static std::unique_ptr<EventFd> OpenEventFileForProcess(const EventAttr& attr, pid_t pid);
33   static std::unique_ptr<EventFd> OpenEventFileForCpu(const EventAttr& attr, int cpu);
34   static std::unique_ptr<EventFd> OpenEventFile(const EventAttr& attr, pid_t pid, int cpu);
35
36   ~EventFd();
37
38   // Give information about this perf_event_file, like (event_name, pid, cpu).
39   std::string Name() const;
40
41   // It tells the kernel to start counting and recording events specified by this file.
42   bool EnableEvent();
43
44   // It tells the kernel to stop counting and recording events specified by this file.
45   bool DisableEvent();
46
47  private:
48   EventFd(int perf_event_fd, const std::string& event_name, pid_t pid, int cpu)
49       : perf_event_fd_(perf_event_fd), event_name_(event_name), pid_(pid), cpu_(cpu) {
50   }
51
52   int perf_event_fd_;
53   const std::string event_name_;
54   pid_t pid_;
55   int cpu_;
56
57   DISALLOW_COPY_AND_ASSIGN(EventFd);
58 };
59
60 #endif  // SIMPLE_PERF_EVENT_FD_H_