/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #include #include #include #include #include namespace AtomSampleViewer { namespace Utils { bool SupportsResizeClientArea() { return true; } bool RunDiffTool(const AZStd::string& filePathA, const AZStd::string& filePathB) { bool result = true; AZStd::string executablePath = "/usr/local/bin/bcompare"; //Fork a process to run Beyond Compare app pid_t childPid = fork(); if (childPid == 0) { //In child process char* args[] = { const_cast(executablePath.c_str()), const_cast(filePathA.c_str()), const_cast(filePathB.c_str()), static_cast(0)}; execv(executablePath.c_str(), args); AZ_TracePrintf("RunDiffTool", "RunDiffTool: Unable to launch Beyond Compare %s : errno = %s . Make sure you have installed Beyond Compare command line tools.", executablePath.c_str(), strerror(errno)); std::cerr << strerror(errno) << std::endl; _exit(errno); } else if (childPid > 0) { //In parent process int status; pid_t result = waitpid(childPid, &status, WNOHANG); if (result == -1) { result = false; } } else { result = false; } return result; } } // namespace Utils } // namespace AtomSampleViewer