blob: 71ab3df75b0a7a3bc0ba8a0b7464ff1247ce8f48 [file] [log] [blame]
/*
* Copyright (C) 2023 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.
*/
#ifndef SRC_PERFETTO_CMD_BUGREPORT_PATH_H_
#define SRC_PERFETTO_CMD_BUGREPORT_PATH_H_
#include <string>
#include "perfetto/base/build_config.h"
#include "perfetto/ext/base/temp_file.h"
namespace perfetto {
// Expose for testing
inline std::string GetBugreportTraceDir() {
#if PERFETTO_BUILDFLAG(PERFETTO_OS_ANDROID) && \
PERFETTO_BUILDFLAG(PERFETTO_ANDROID_BUILD)
return "/data/misc/perfetto-traces/bugreport";
#else
// Only for tests, SaveTraceForBugreport is not used on other OSes.
return base::GetSysTempDir();
#endif
}
inline std::string GetBugreportTracePath() {
return GetBugreportTraceDir() + "/systrace.pftrace";
}
} // namespace perfetto
#endif // SRC_PERFETTO_CMD_BUGREPORT_PATH_H_