b09834e784
* refactor: duplicated path helpers into common/path.hpp * update rocprof-sys-instrument to use shared path utility * Add path::realpath(std::string[, std::string*]) helper function in common/path.hpp for binaries * common: centralize remove_env implementation in environment.hpp * remove unused includes from rocprof-sys binaries and argparse * changing set to unordered_set wherever sorting is not required and additional cleanup * review comment incorporated * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * copilot review for remove_env incorporated --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
114 wiersze
3.6 KiB
C++
114 wiersze
3.6 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2022-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.
|
|
|
|
#include "rocprof-sys-run.hpp"
|
|
#include "core/mproc.hpp"
|
|
|
|
#include <timemory/log/color.hpp>
|
|
#include <timemory/log/macros.hpp>
|
|
|
|
#include <cmath>
|
|
#include <cstdlib>
|
|
#include <iostream>
|
|
#include <string_view>
|
|
#include <unistd.h>
|
|
|
|
namespace
|
|
{
|
|
auto* _getenv_at_load = getenv("TIMEMORY_LIBRARY_CTOR");
|
|
auto _setenv_at_load = setenv("TIMEMORY_LIBRARY_CTOR", "0", 0);
|
|
} // namespace
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
if(!_getenv_at_load)
|
|
unsetenv("TIMEMORY_LIBRARY_CTOR");
|
|
else
|
|
setenv("TIMEMORY_LIBRARY_CTOR", _getenv_at_load, 1);
|
|
|
|
auto _print_usage = [argv]() {
|
|
std::cerr << tim::log::color::fatal() << "Usage: " << argv[0]
|
|
<< " <OPTIONS> -- <COMMAND> <ARGS>" << tim::log::color::end()
|
|
<< std::endl;
|
|
};
|
|
|
|
if(argc == 1)
|
|
{
|
|
_print_usage();
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
auto _parse_data = parser_data_t{};
|
|
auto _fork_exec = false;
|
|
parse_args(argc, argv, _parse_data, _fork_exec);
|
|
prepare_command_for_run(argv[0], _parse_data);
|
|
prepare_environment_for_run(_parse_data);
|
|
|
|
auto& _argv = _parse_data.command;
|
|
auto& _envp = _parse_data.current;
|
|
if(!_argv.empty())
|
|
{
|
|
print_updated_environment(_parse_data, "ROCPROFSYS: ");
|
|
print_command(_parse_data, "ROCPROFSYS: ");
|
|
_argv.emplace_back(nullptr);
|
|
_envp.emplace_back(nullptr);
|
|
|
|
if(_fork_exec)
|
|
{
|
|
auto _main_pid = getpid();
|
|
auto _pid = fork();
|
|
|
|
if(_pid == 0)
|
|
{
|
|
return execvpe(_argv.front(), _argv.data(), _envp.data());
|
|
}
|
|
else
|
|
{
|
|
auto _status = rocprofsys::mproc::wait_pid(_pid);
|
|
auto _ec = rocprofsys::mproc::diagnose_status(_pid, _status);
|
|
if(_ec != 0 && _parse_data.verbose >= 0)
|
|
{
|
|
TIMEMORY_PRINTF_FATAL(
|
|
stderr, "process %i exiting with non-zero exit code: %i\n", _pid,
|
|
_ec);
|
|
}
|
|
else if(_parse_data.verbose >= 2)
|
|
{
|
|
TIMEMORY_PRINTF_FATAL(
|
|
stderr,
|
|
"rocprof-sys run in process %i completed. exit code: %i\n", _pid,
|
|
_ec);
|
|
}
|
|
return _ec;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return execvpe(_argv.front(), _argv.data(), _envp.data());
|
|
}
|
|
}
|
|
|
|
_print_usage();
|
|
return EXIT_FAILURE;
|
|
}
|