20#ifndef ORES_DQ_REPOSITORY_DATASET_MAPPER_HPP
21#define ORES_DQ_REPOSITORY_DATASET_MAPPER_HPP
23#include "ores.dq/domain/dataset.hpp"
24#include "ores.dq/repository/dataset_entity.hpp"
25#include "ores.logging/make_logger.hpp"
27namespace ores::dq::repository {
34 inline static std::string_view logger_name =
35 "ores.dq.repository.dataset_mapper";
37 [[nodiscard]]
static auto& lg() {
39 static auto instance = make_logger(logger_name);
46 static std::vector<domain::dataset>
47 map(
const std::vector<dataset_entity>& v);
48 static std::vector<dataset_entity>
49 map(
const std::vector<domain::dataset>& v);
Implements logging infrastructure for ORE Studio.
Definition boost_severity.hpp:28
Represents a data quality dataset with lineage tracking.
Definition dataset.hpp:36
Represents a dataset in the database.
Definition dataset_entity.hpp:33
Maps dataset domain entities to data storage layer and vice-versa.
Definition dataset_mapper.hpp:32