40 lines
1.4 KiB
C++
40 lines
1.4 KiB
C++
#ifndef BASIC_PROTOTYPE_INFO_HPP
|
|
#define BASIC_PROTOTYPE_INFO_HPP
|
|
|
|
#include "matador/object/object_definition.hpp"
|
|
#include "matador/utils/identifier.hpp"
|
|
|
|
#include <string>
|
|
#include <typeindex>
|
|
|
|
namespace matador::object {
|
|
|
|
class schema_node;
|
|
|
|
class basic_object_info {
|
|
public:
|
|
virtual ~basic_object_info() = default;
|
|
|
|
[[nodiscard]] std::type_index type_index() const;
|
|
[[nodiscard]] std::string name() const;
|
|
[[nodiscard]] const object_definition& definition() const;
|
|
[[nodiscard]] std::shared_ptr<attribute_definition> reference_column() const;
|
|
|
|
protected:
|
|
basic_object_info(std::shared_ptr<schema_node> node, std::type_index type_index, utils::identifier &&pk, std::shared_ptr<attribute_definition> &&pk_column, object_definition &&definition);
|
|
basic_object_info(std::shared_ptr<schema_node> node, std::type_index type_index, utils::identifier &&pk, std::shared_ptr<attribute_definition> &&pk_column);
|
|
|
|
protected:
|
|
std::shared_ptr<schema_node> node_; /**< prototype node of the represented object type */
|
|
std::type_index type_index_; /**< type index of the represented object type */
|
|
object_definition definition_;
|
|
std::optional<utils::identifier> identifier_;
|
|
std::shared_ptr<attribute_definition> pk_column_;
|
|
};
|
|
|
|
using basic_object_info_ref = std::reference_wrapper<const basic_object_info>;
|
|
|
|
}
|
|
|
|
#endif //BASIC_PROTOTYPE_INFO_HPP
|