IODA
Complex.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /// \file Complex.h
9 /// \brief Type system example that implements support for std::complex<T> objects.
10 /// \todo Implement this.
11 #error "File under development. Do not use."
12 
13 #include <memory>
14 #include <vector>
15 
16 namespace ioda {
17 namespace detail {
18 template <class DataType, class value_type = DataType::value_type>
20  typedef typename std::remove_const<DataType>::type mutable_DataType;
21  // typedef typename std::remove_const<typename DataType>::type mutable_DataType;
22 
23  typedef std::shared_ptr<Marshalled_Data<DataType, mutable_DataType>> serialized_type;
24  typedef std::shared_ptr<const Marshalled_Data<DataType, mutable_DataType>> const_serialized_type;
25 
26 public:
27  /// \brief Converts an object into a void* byte stream.
28  /// \note The shared_ptr takes care of "deallocation" when we no longer need the "buffer".
29  const_serialized_type serialize(::gsl::span<const DataType> d) {
30  auto res = std::make_shared<Marshalled_Data<DataType, mutable_DataType>>();
31  res->DataPointers = std::vector<mutable_DataType>(d.size());
32  for (size_t i = 0; i < (size_t)d.size(); ++i) res->DataPointers[i] = d[i];
33  // res->DataPointers = std::vector<mutable_value_type>(d.begin(), d.end()); //return (const
34  // void*)d.data();
35  return res;
36  }
37  /// \brief Construct an object from a byte stream,
38  /// and deallocate any temporary buffer.
39  /// \note For trivial (POD) objects, there is no need to do anything.
40  serialized_type prep_deserialize(size_t numObjects) {
41  auto res = std::make_shared<Marshalled_Data<DataType, mutable_DataType>>();
42  res->DataPointers = std::vector<mutable_DataType>(numObjects);
43  return res;
44  }
45  /// Unpack the data. For POD, nothing special here.
46  void deserialize(serialized_type p, gsl::span<DataType> data) {
47  const size_t ds = data.size(), dp = p->DataPointers.size();
48  Expects(ds == dp);
49  for (size_t i = 0; i < (size_t)data.size(); ++i) {
50  data[i] = p->DataPointers[i];
51  }
52  }
53 };
54 
55 } // namespace detail
56 } // namespace ioda
std::shared_ptr< const Marshalled_Data< DataType, mutable_DataType > > const_serialized_type
Definition: Complex.h:24
void deserialize(serialized_type p, gsl::span< DataType > data)
Unpack the data. For POD, nothing special here.
Definition: Complex.h:46
std::remove_const< DataType >::type mutable_DataType
Definition: Complex.h:20
const_serialized_type serialize(::gsl::span< const DataType > d)
Converts an object into a void* byte stream.
Definition: Complex.h:29
serialized_type prep_deserialize(size_t numObjects)
Construct an object from a byte stream, and deallocate any temporary buffer.
Definition: Complex.h:40
std::shared_ptr< Marshalled_Data< DataType, mutable_DataType > > serialized_type
Definition: Complex.h:23