mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Add a capability for AUB subcapture feature to dump into several files and read file name from the outside (via regkey and env variable). Change-Id: I2d5f7945cfbc740b0316fe23b8c5ae9fd698ac57
82 lines
2.7 KiB
C++
82 lines
2.7 KiB
C++
/*
|
|
* Copyright (c) 2018, Intel Corporation
|
|
*
|
|
* 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 "runtime/command_stream/aub_subcapture.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
class AubSubCaptureManagerMock : public AubSubCaptureManager {
|
|
public:
|
|
using AubSubCaptureManager::AubSubCaptureManager;
|
|
|
|
void setSubCaptureIsActive(bool on) {
|
|
subCaptureIsActive = on;
|
|
}
|
|
bool isSubCaptureActive() const {
|
|
return subCaptureIsActive;
|
|
}
|
|
void setSubCaptureWasActive(bool on) {
|
|
subCaptureWasActive = on;
|
|
}
|
|
bool wasSubCaptureActive() const {
|
|
return subCaptureWasActive;
|
|
}
|
|
void setKernelCurrentIndex(uint32_t index) {
|
|
kernelCurrentIdx = index;
|
|
}
|
|
uint32_t getKernelCurrentIndex() const {
|
|
return kernelCurrentIdx;
|
|
}
|
|
bool getUseExternalFileName() const {
|
|
return useExternalFileName;
|
|
}
|
|
const std::string &getInitialFileName() const {
|
|
return initialFileName;
|
|
}
|
|
const std::string &getCurrentFileName() const {
|
|
return currentFileName;
|
|
}
|
|
SettingsReader *getSettingsReader() const {
|
|
return settingsReader.get();
|
|
}
|
|
void setSubCaptureToggleActive(bool on) {
|
|
isToggledOn = on;
|
|
}
|
|
bool isSubCaptureToggleActive() const override {
|
|
return isToggledOn;
|
|
}
|
|
void setExternalFileName(const std::string &fileName) {
|
|
externalFileName = fileName;
|
|
}
|
|
std::string getExternalFileName() const override {
|
|
return externalFileName;
|
|
}
|
|
|
|
using AubSubCaptureManager::generateFilterFileName;
|
|
using AubSubCaptureManager::generateToggleFileName;
|
|
|
|
protected:
|
|
bool isToggledOn = false;
|
|
std::string externalFileName = "";
|
|
};
|