blob: ecaf00cf030547a408ea05aa72f40f28e09a7c54 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromiumos-wide-profiling/utils.h"
#include <openssl/md5.h>
#include <sys/stat.h>
#include <cstddef>
#include <cstdlib>
#include <cstring>
#include <fstream> // NOLINT(readability/streams)
#include <iomanip>
#include <sstream>
#include "base/logging.h"
#include "base/macros.h"
namespace {
// Number of hex digits in a byte.
const int kNumHexDigitsInByte = 2;
} // namespace
namespace quipper {
int64_t GetFileSizeFromHandle(FILE* fp) {
int64_t position = ftell(fp);
fseek(fp, 0, SEEK_END);
int64_t file_size = ftell(fp);
// Restore the original file handle position.
fseek(fp, position, SEEK_SET);
return file_size;
}
event_t* CallocMemoryForEvent(size_t size) {
event_t* event = reinterpret_cast<event_t*>(calloc(1, size));
CHECK(event);
return event;
}
event_t* ReallocMemoryForEvent(event_t* event, size_t new_size) {
event_t* new_event = reinterpret_cast<event_t*>(realloc(event, new_size));
CHECK(new_event); // NB: event is "leaked" if this CHECK fails.
return new_event;
}
build_id_event* CallocMemoryForBuildID(size_t size) {
build_id_event* event = reinterpret_cast<build_id_event*>(calloc(1, size));
CHECK(event);
return event;
}
static uint64_t Md5Prefix(
const unsigned char* data,
unsigned long length) { // NOLINT
uint64_t digest_prefix = 0;
unsigned char digest[MD5_DIGEST_LENGTH + 1];
MD5(data, length, digest);
// We need 64-bits / # of bits in a byte.
stringstream ss;
for (size_t i = 0; i < sizeof(uint64_t); i++)
// The setw(2) and setfill('0') calls are needed to make sure we output 2
// hex characters for every 8-bits of the hash.
ss << std::hex << std::setw(2) << std::setfill('0')
<< static_cast<unsigned int>(digest[i]);
ss >> digest_prefix;
return digest_prefix;
}
uint64_t Md5Prefix(const string& input) {
auto data = reinterpret_cast<const unsigned char*>(input.data());
return Md5Prefix(data, input.size());
}
uint64_t Md5Prefix(const std::vector<char>& input) {
auto data = reinterpret_cast<const unsigned char*>(input.data());
return Md5Prefix(data, input.size());
}
bool FileToBuffer(const string& filename, std::vector<char>* contents) {
FILE* fp = fopen(filename.c_str(), "rb");
if (!fp)
return false;
int64_t file_size = quipper::GetFileSizeFromHandle(fp);
contents->resize(file_size);
// Do not read anything if the file exists but is empty.
if (file_size > 0)
CHECK_GT(fread(contents->data(), file_size, 1, fp), 0U);
fclose(fp);
return true;
}
bool FileExists(const string& filename) {
struct stat st;
return stat(filename.c_str(), &st) == 0;
}
string HexToString(const u8* array, size_t length) {
// Convert the bytes to hex digits one at a time.
// There will be kNumHexDigitsInByte hex digits, and 1 char for NUL.
char buffer[kNumHexDigitsInByte + 1];
string result = "";
for (size_t i = 0; i < length; ++i) {
snprintf(buffer, sizeof(buffer), "%02x", array[i]);
result += buffer;
}
return result;
}
bool StringToHex(const string& str, u8* array, size_t length) {
const int kHexRadix = 16;
char* err;
// Loop through kNumHexDigitsInByte characters at a time (to get one byte)
// Stop when there are no more characters, or the array has been filled.
for (size_t i = 0;
(i + 1) * kNumHexDigitsInByte <= str.size() && i < length;
++i) {
string one_byte = str.substr(i * kNumHexDigitsInByte, kNumHexDigitsInByte);
array[i] = strtol(one_byte.c_str(), &err, kHexRadix);
if (*err)
return false;
}
return true;
}
uint64_t AlignSize(uint64_t size, uint32_t align_size) {
return ((size + align_size - 1) / align_size) * align_size;
}
// In perf data, strings are packed into the smallest number of 8-byte blocks
// possible, including the null terminator.
// e.g.
// "0123" -> 5 bytes -> packed into 8 bytes
// "0123456" -> 8 bytes -> packed into 8 bytes
// "01234567" -> 9 bytes -> packed into 16 bytes
// "0123456789abcd" -> 15 bytes -> packed into 16 bytes
// "0123456789abcde" -> 16 bytes -> packed into 16 bytes
// "0123456789abcdef" -> 17 bytes -> packed into 24 bytes
//
// Returns the size of the 8-byte-aligned memory for storing |string|.
size_t GetUint64AlignedStringLength(const string& str) {
return AlignSize(str.size() + 1, sizeof(uint64_t));
}
bool ReadFileToData(const string& filename, std::vector<char>* data) {
std::ifstream in(filename.c_str(), std::ios::binary);
if (!in.good()) {
LOG(ERROR) << "Failed to open file " << filename;
return false;
}
in.seekg(0, in.end);
size_t length = in.tellg();
in.seekg(0, in.beg);
data->resize(length);
in.read(&(*data)[0], length);
if (!in.good()) {
LOG(ERROR) << "Error reading from file " << filename;
return false;
}
return true;
}
bool WriteDataToFile(const std::vector<char>& data, const string& filename) {
std::ofstream out(filename.c_str(), std::ios::binary);
out.seekp(0, std::ios::beg);
out.write(&data[0], data.size());
return out.good();
}
void TrimWhitespace(string* str) {
const char kWhitespaceCharacters[] = " \t\n\r";
size_t end = str->find_last_not_of(kWhitespaceCharacters);
if (end != std::string::npos) {
size_t start = str->find_first_not_of(kWhitespaceCharacters);
*str = str->substr(start, end + 1 - start);
} else {
// The string contains only whitespace.
*str = "";
}
}
void SplitString(const string& str,
char delimiter,
std::vector<string>* tokens) {
std::stringstream ss(str);
std::string token;
while (std::getline(ss, token, delimiter))
tokens->push_back(token);
}
} // namespace quipper