Files
Nagaraj, Sriraksha 2e7d0b3aec [rocprofv3] signal handler fix (#332)
* rocprofv3: LD_PRELOAD for signal and sigaction

- wrappers around `signal` and `sigaction` to prevent applications which install signal handlers to replace the rocprofv3 signal handlers
- minor tweaks to buffer sizes (use page_size instead of
KiB)

* [DO NOT COMMIT] extra logging

* Switch git submodule url for perfetto

- use GitHub URL as this is more accessible

* Update ring_buffer<Tp>

- account for alignment padding

* Update buffered_output

- track number of bytes stored
- add nullptr checks

* Update tmp_file_buffer

- track number of bytes
- read_tmp_file does not create tmp file if it does not already exist

* Update tmp_file

- add exists member function for checking whether temporary file already exists
- tweak remove() implementation

* Update config.hpp

- add option to enable/disable signal handlers
- add option for minimum_output_bytes

* Make signal, sigaction functions visible

* rocprofv3 tool updates

- chained signals
- override the signal handler(s) installed by the application
- improve cleanup of temporary files
- support minimum output bytes

* Add commandline support

* fixing test

* minor fix

* minor fix

* fix clang issue

* fix

* Adding docs

* review comments

* review changes

* review

* YUV pulldown additions to rocdecode

* More rocdecode changes

---------

Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
Co-authored-by: Jonathan R. Madsen <Jonathan.Madsen@amd.com>
Co-authored-by: Benjamin Welton <bewelton@amd.com>

[ROCm/rocprofiler-sdk commit: 87badfbd15]
2025-04-17 21:10:52 -07:00

122 行
3.9 KiB
C++

// MIT License
//
// Copyright (c) 2023-2025 Advanced Micro Devices, Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#pragma once
#include "lib/common/logging.hpp"
#include <fmt/format.h>
#include <fstream>
#include <ios>
#include <mutex>
#include <set>
#include <string>
#include <type_traits>
#include <vector>
struct tmp_file
{
tmp_file(std::string _filename);
~tmp_file();
bool open(std::ios::openmode = std::ios::binary | std::ios::in | std::ios::out);
bool fopen(const char* = "r+");
bool flush();
bool close();
bool remove();
bool exists() const;
explicit operator bool() const;
template <typename Tp>
std::streampos write(const Tp* data, size_t num_records);
template <typename Tp>
std::streampos write(const Tp& data);
template <typename Tp>
std::vector<Tp> read(std::streampos seekpos);
std::string filename = {};
std::string subdirectory = {};
std::fstream stream = {};
FILE* file = nullptr;
int fd = -1;
std::set<std::streampos> file_pos = {};
std::mutex file_mutex = {};
};
template <typename Tp>
std::streampos
tmp_file::write(const Tp* data, size_t num_records)
{
auto lk = std::unique_lock<std::mutex>{file_mutex};
if(!stream.is_open()) open();
ROCP_CI_LOG_IF(WARNING, stream.tellg() != stream.tellp()) // this should always be true
<< "tellg=" << stream.tellg() << ", tellp=" << stream.tellp();
auto pos = stream.tellp();
stream.write(reinterpret_cast<const char*>(&num_records), sizeof(size_t));
stream.write(reinterpret_cast<const char*>(data), num_records * sizeof(Tp));
return pos;
}
template <typename Tp>
std::streampos
tmp_file::write(const Tp& data)
{
static_assert(std::is_standard_layout<Tp>::value, "only supports standard layout types");
static_assert(!std::is_pointer<Tp>::value, "only supports non-pointer types");
auto lk = std::unique_lock<std::mutex>{file_mutex};
if(!stream.is_open()) open();
ROCP_CI_LOG_IF(WARNING, stream.tellg() != stream.tellp())
<< fmt::format("tellg={}, tellp={}", stream.tellg(), stream.tellp());
auto pos = stream.tellp();
size_t num_records = 1;
stream.write(reinterpret_cast<const char*>(&num_records), sizeof(size_t));
stream.write(reinterpret_cast<const char*>(&data), num_records * sizeof(Tp));
return pos;
}
template <typename Tp>
std::vector<Tp>
tmp_file::read(std::streampos seekpos)
{
auto lk = std::unique_lock<std::mutex>{file_mutex};
if(!stream.is_open()) open();
stream.seekg(seekpos);
size_t num_elements = 0;
stream.read(reinterpret_cast<char*>(&num_elements), sizeof(size_t));
auto ret = std::vector<Tp>{};
ret.resize(num_elements, Tp{});
stream.read(reinterpret_cast<char*>(ret.data()), num_elements * sizeof(Tp));
return ret;
}