blob: 90df2216e11e366e2dc2c6d8054d5e548c6ad1e9 [file] [log] [blame]
// Copyright 2023 The Centipede Authors.
//
// 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
//
// https://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.
// Data types used for mutation inputs.
//
// This library is for both engine and runner.
#ifndef THIRD_PARTY_CENTIPEDE_MUTATION_INPUT_H_
#define THIRD_PARTY_CENTIPEDE_MUTATION_INPUT_H_
#include <vector>
#include "./centipede/defs.h"
#include "./centipede/execution_metadata.h"
namespace centipede {
// {data (required), metadata (optional)} reference pairs as mutation inputs.
struct MutationInputRef {
const ByteArray &data;
const ExecutionMetadata *metadata = nullptr;
};
inline std::vector<ByteArray> CopyDataFromMutationInputRefs(
const std::vector<MutationInputRef> &inputs) {
std::vector<ByteArray> results;
results.reserve(inputs.size());
for (const auto &input : inputs) results.push_back(input.data);
return results;
}
inline std::vector<MutationInputRef> GetMutationInputRefsFromDataInputs(
const std::vector<ByteArray> &inputs) {
std::vector<MutationInputRef> results;
results.reserve(inputs.size());
for (const auto &input : inputs) results.push_back({.data = input});
return results;
}
} // namespace centipede
#endif // THIRD_PARTY_CENTIPEDE_MUTATION_INPUT_H_