##// END OF EJS Templates
Sets the number of sync groups to create for fuzzing tests
Sets the number of sync groups to create for fuzzing tests

File last commit:

r1236:ea04bef9c90c
r1237:d97a694e6326
Show More
FuzzingOperations.h
50 lines | 1.9 KiB | text/x-c | CLexer
#ifndef SCIQLOP_FUZZINGOPERATIONS_H
#define SCIQLOP_FUZZINGOPERATIONS_H
#include "FuzzingDefs.h"
#include <memory>
#include <set>
#include <QLoggingCategory>
#include <QMetaType>
Q_DECLARE_LOGGING_CATEGORY(LOG_FuzzingOperations)
class VariableController;
/**
* Enumeration of types of existing fuzzing operations
*/
enum class FuzzingOperationType { CREATE, DELETE, PAN_LEFT, PAN_RIGHT, ZOOM_IN, ZOOM_OUT };
/// Interface that represents an operation that can be executed during a fuzzing test
struct IFuzzingOperation {
virtual ~IFuzzingOperation() noexcept = default;
/// Checks if the operation can be executed according to the current test's state for the
/// variable passed in parameter
virtual bool canExecute(VariableId variableId, const FuzzingState &fuzzingState) const = 0;
/// Executes the operation on the variable for which its identifier is passed in parameter
/// @param variableId the variable identifier
/// @param fuzzingState the current test's state on which to find the variable and execute the
/// operation
/// @param variableController the controller associated to the operation
/// @param properties properties that can be used to configure the operation
/// @remarks fuzzingState is passed as a reference because, according to the operation, it can
/// be modified (in/out parameter)
virtual void execute(VariableId variableId, FuzzingState &fuzzingState,
VariableController &variableController,
const Properties &properties = {}) const = 0;
};
/// Factory of @sa IFuzzingOperation
struct FuzzingOperationFactory {
/// Creates a fuzzing operation from a type
static std::unique_ptr<IFuzzingOperation> create(FuzzingOperationType type);
};
using WeightedOperationsTypes = std::map<FuzzingOperationType, double>;
Q_DECLARE_METATYPE(WeightedOperationsTypes)
#endif // SCIQLOP_FUZZINGOPERATIONS_H