blob: 9745478155a8c5532988699cad98f35b9227a31d [file] [log] [blame]
/*
* 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.
*/
#include "utils/procfs_files.h"
#include <sstream> // for std::ostringstream
using std::string;
namespace {
// Absolute path of system stat file.
constexpr char kProcStatFilename[] = "/proc/stat";
constexpr char kSystemCpuPath[] = "/sys/devices/system/cpu/";
} // namespace
namespace profiler {
string ProcfsFiles::GetSystemStatFilePath() const { return kProcStatFilename; }
string ProcfsFiles::GetSystemCpuPath() const { return kSystemCpuPath; }
string ProcfsFiles::GetSystemCurrentCpuFrequencyPath(int32_t cpu) const {
// TODO: Use std::to_string() after we use libc++. NDK doesn't support itoa().
std::ostringstream os;
os << kSystemCpuPath << "cpu" << cpu << "/cpufreq/scaling_cur_freq";
return os.str();
}
string ProcfsFiles::GetSystemMinCpuFrequencyPath(int32_t cpu) const {
// TODO: Use std::to_string() after we use libc++. NDK doesn't support itoa().
std::ostringstream os;
os << kSystemCpuPath << "cpu" << cpu << "/cpufreq/scaling_min_freq";
return os.str();
}
string ProcfsFiles::GetSystemMaxCpuFrequencyPath(int32_t cpu) const {
// TODO: Use std::to_string() after we use libc++. NDK doesn't support itoa().
std::ostringstream os;
os << kSystemCpuPath << "cpu" << cpu << "/cpufreq/scaling_max_freq";
return os.str();
}
string ProcfsFiles::GetProcessStatFilePath(int32_t pid) const {
// TODO: Use std::to_string() after we use libc++. NDK doesn't support itoa().
std::ostringstream os;
os << "/proc/" << pid << "/stat";
return os.str();
}
string ProcfsFiles::GetProcessTaskDir(int32_t pid) const {
std::ostringstream os;
os << "/proc/" << pid << "/task/";
return os.str();
}
string ProcfsFiles::GetThreadStatFilePath(int32_t pid, int32_t tid) const {
std::ostringstream os;
os << "/proc/" << pid << "/task/" << tid << "/stat";
return os.str();
}
string ProcfsFiles::GetMemoryMapFilePath(int32_t pid) const {
std::ostringstream os;
os << "/proc/" << pid << "/maps";
return os.str();
}
} // namespace profiler