Skip to content

Commit

Permalink
Some documentation and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Jun 25, 2024
1 parent 46a0e69 commit f49ffad
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 14 deletions.
69 changes: 56 additions & 13 deletions include/openPMD/LoadStoreChunk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ namespace internal
std::optional<MemorySelection> memorySelection;
};

/*
* Actual data members of `ConfigureLoadStore<>`. They don't depend on the
* template parameter of that class template, so by extracting the members
* to this struct, we can pass them around between different instances of
* the class template.
*/
struct ConfigureLoadStoreData
{
ConfigureLoadStoreData(RecordComponent &);
Expand All @@ -42,6 +48,13 @@ namespace internal
};
} // namespace internal

/** Basic configuration for a Load/Store operation.
*
* @tparam ChildClass CRT pattern.
* The purpose is that in child classes `return *this` should return
* an instance of the child class, not of ConfigureLoadStore.
* Instantiate with void when using without subclass.
*/
template <typename ChildClass = void>
class ConfigureLoadStore : protected internal::ConfigureLoadStoreData
{
Expand All @@ -53,7 +66,7 @@ class ConfigureLoadStore : protected internal::ConfigureLoadStoreData
ConfigureLoadStore(RecordComponent &rc);
ConfigureLoadStore(ConfigureLoadStoreData &&);

auto dim() const -> uint8_t;
[[nodiscard]] auto dim() const -> uint8_t;
auto getOffset() -> Offset const &;
auto getExtent() -> Extent const &;
auto storeChunkConfig() -> internal::LoadStoreConfig;
Expand All @@ -67,34 +80,37 @@ class ConfigureLoadStore : protected internal::ConfigureLoadStoreData
auto offset(Offset) -> return_type &;
auto extent(Extent) -> return_type &;

/*
* If the type is non-const, then the return type should be
* ConfigureLoadStoreFromBuffer<>, ...
*/
template <typename T>
struct shared_ptr_return_type_impl
{
using type = ConfigureLoadStoreFromBuffer<
std::shared_ptr<std::remove_extent_t<T>>>;
using type = ConfigureLoadStoreFromBuffer<std::shared_ptr<T>>;
};
/*
* ..., but if it is a const type, Load operations make no sense, so the
* return type should be ConfigureStoreChunkFromBuffer<>.
*/
template <typename T>
struct shared_ptr_return_type_impl<T const>
{
using type =
ConfigureStoreChunkFromBuffer<std::shared_ptr<T const>, void>;
};
template <typename T>
struct shared_ptr_return_type_impl<T const[]>
{
using type =
ConfigureStoreChunkFromBuffer<std::shared_ptr<T const>, void>;
};

template <typename T>
using shared_ptr_return_type =
typename shared_ptr_return_type_impl<T>::type;
typename shared_ptr_return_type_impl<std::remove_extent_t<T>>::type;

template <typename T>
using normalize_dataset_type = std::remove_cv_t<std::remove_extent_t<T>>;
/*
* As loading into unique pointer types makes no sense, the case is simpler
* for unique pointers. Just remove the array extents here.
*/
template <typename T>
using unique_ptr_return_type = ConfigureStoreChunkFromBuffer<
UniquePtrWithLambda<normalize_dataset_type<T>>,
UniquePtrWithLambda<std::remove_extent_t<T>>,
void>;

// @todo rvalue references..?
Expand Down Expand Up @@ -127,6 +143,19 @@ class ConfigureLoadStore : protected internal::ConfigureLoadStoreData
[[nodiscard]] auto enqueueLoadVariant() -> shared_ptr_dataset_types;
};

/** Configuration for a Store operation with a buffer type.
*
* This class does intentionally not support Load operations since there are
* pointer types (const pointers, unique pointers) where Load operations make no
* sense. See the \ref ConfigureLoadStoreFromBuffer class template for both
* Load/Store operations.
*
* @tparam Ptr_Type The type of pointer used internally.
* @tparam ChildClass CRT pattern.
* The purpose is that in child classes `return *this` should return
* an instance of the child class, not of ConfigureStoreChunkFromBuffer.
* Instantiate with void when using without subclass.
*/
template <typename Ptr_Type, typename ChildClass = void>
class ConfigureStoreChunkFromBuffer
: public ConfigureLoadStore<std::conditional_t<
Expand Down Expand Up @@ -161,6 +190,12 @@ class ConfigureStoreChunkFromBuffer
auto as_parent() const & -> parent_t const &;

auto enqueueStore() -> void;

/** This intentionally shadows the parent class's enqueueLoad method in
* order to show a compile error when using enqueueLoad() on an object of
* this class. The parent method can still be accessed through as_parent()
* if needed.
*/
template <typename X = void>
auto enqueueLoad()
{
Expand All @@ -171,6 +206,14 @@ class ConfigureStoreChunkFromBuffer
}
};

/** Configuration for a Load/Store operation with a buffer type.
*
* Only instantiated for pointer types where Load operations make sense (e.g. no
* const pointers and no unique pointers).
* \ref ConfigureStoreChunkFromBuffer is used otherwise.
*
* @tparam Ptr_Type The type of pointer used internally.
*/
template <typename Ptr_Type>
class ConfigureLoadStoreFromBuffer
: public ConfigureStoreChunkFromBuffer<
Expand Down
6 changes: 5 additions & 1 deletion include/openPMD/LoadStoreChunk.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,17 @@ auto ConfigureLoadStore<ChildClass>::withUniquePtr(UniquePtrWithLambda<T> data)
-> unique_ptr_return_type<T>

{
// should we support them?
static_assert(
!std::is_const_v<T>,
"Unique pointers to const types not supported as storeChunk buffers.");
if (!data)
{
throw std::runtime_error(
"Unallocated pointer passed during chunk store.");
}
return unique_ptr_return_type<T>(
std::move(data).template static_cast_<normalize_dataset_type<T>>(),
std::move(data).template static_cast_<std::remove_extent_t<T>>(),
{std::move(*this)});
}
template <typename ChildClass>
Expand Down

0 comments on commit f49ffad

Please sign in to comment.