ORE Studio 0.0.4
Loading...
Searching...
No Matches
generation_options.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * Copyright (C) 2025 Marco Craveiro <marco.craveiro@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 */
20#ifndef ORES_SYNTHETIC_DOMAIN_GENERATION_OPTIONS_HPP
21#define ORES_SYNTHETIC_DOMAIN_GENERATION_OPTIONS_HPP
22
23#include <cstddef>
24#include <cstdint>
25#include <optional>
26#include <string>
27#include <vector>
28#include <boost/uuid/uuid.hpp>
29
30namespace ores::synthetic::domain {
31
38struct generation_options final {
44 std::optional<std::uint64_t> seed;
45
49 std::size_t account_count = 5;
50
54 std::size_t catalog_count = 3;
55
59 std::size_t data_domain_count = 4;
60
64 std::size_t subject_areas_per_domain = 3;
65
69 std::size_t origin_dimension_count = 5;
70
74 std::size_t nature_dimension_count = 4;
75
80
90 std::optional<boost::uuids::uuid> methodology_id;
91
95 std::size_t dataset_count = 20;
96
106 std::vector<std::string> dependencies;
107};
108
109}
110
111#endif
Options for controlling synthetic dataset generation.
Definition generation_options.hpp:38
std::size_t catalog_count
Number of DQ catalogs to generate.
Definition generation_options.hpp:54
std::size_t subject_areas_per_domain
Number of subject areas per domain to generate.
Definition generation_options.hpp:64
std::size_t account_count
Number of IAM accounts to generate.
Definition generation_options.hpp:49
std::size_t data_domain_count
Number of data domains to generate.
Definition generation_options.hpp:59
std::optional< boost::uuids::uuid > methodology_id
Optional methodology ID to link to generated datasets.
Definition generation_options.hpp:90
std::vector< std::string > dependencies
Catalog dependencies to declare for the generated catalog.
Definition generation_options.hpp:106
std::size_t treatment_dimension_count
Number of treatment dimensions to generate.
Definition generation_options.hpp:79
std::size_t dataset_count
Number of DQ datasets to generate.
Definition generation_options.hpp:95
std::optional< std::uint64_t > seed
Optional seed for reproducible generation.
Definition generation_options.hpp:44
std::size_t nature_dimension_count
Number of nature dimensions to generate.
Definition generation_options.hpp:74
std::size_t origin_dimension_count
Number of origin dimensions to generate.
Definition generation_options.hpp:69