IODA
Copying.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 Copying.h
9 /// \brief Generic copying facility
10 /// \note Feature is under development. This is a placeholder header file.
11 
12 #include <algorithm>
13 #include <gsl/gsl-lite.hpp>
14 #include <memory>
15 #include <set>
16 #include <utility>
17 #include <vector>
18 
19 #include "ioda/Group.h"
20 #include "ioda/defs.h"
21 
22 namespace ioda {
23 class Group;
24 class Has_Variables;
25 
26 class ObjectSelection;
27 struct ScaleMapping;
28 
29 /// \todo This function is not yet complete.
30 /// It exists in its present form to provide the guts for
31 /// a timing test. Do not use.
32 /// \brief Generic data copying function
33 /// \param from contains the objects that we are copying
34 /// \param to contains the destination(s) of the copy
35 /// \param scale_map contains settings regarding how dimension scales
36 /// are propagated
37 IODA_DL void copy(const ObjectSelection& from, ObjectSelection& to, const ScaleMapping& scale_map);
38 
39 /// \brief Allows you to select objects for a copy operation
41  // friend IODA_DL void copy(const ObjectSelection&, ObjectSelection&, const ScaleMapping&);
42 public:
44  bool recurse_ = false;
45 
46 public:
47  ~ObjectSelection();
49  ObjectSelection(const Group& g, bool recurse = true);
50  /*
51  ObjectSelection(const Variable& v) : ObjectSelection() { insert(v); }
52  ObjectSelection(const std::vector<Variable>& v) : ObjectSelection() { insert(v); }
53  ObjectSelection(const Has_Variables& v) : ObjectSelection() { insert(v); }
54  ObjectSelection(const Group& g, const std::vector<std::string>& v) : ObjectSelection() {
55  insert(g,v); }
56 
57  void insert(const ObjectSelection&);
58  void insert(const Variable&);
59  void insert(const std::vector<Variable>&);
60  void insert(const Has_Variables&);
61  void insert(const Group&, const std::vector<std::string>&);
62  void insert(const Group&, bool recurse = true);
63 
64  ObjectSelection operator+(const ObjectSelection&) const;
65  ObjectSelection operator+(const Variable&) const;
66  ObjectSelection operator+(const std::vector<Variable>&) const;
67  ObjectSelection operator+(const Has_Variables&) const;
68  // Group insertions need to be wrapped by an ObjectSelection.
69 
70  ObjectSelection& operator+=(const ObjectSelection&);
71  ObjectSelection& operator+=(const Variable&);
72  ObjectSelection& operator+=(const std::vector<Variable>&);
73  ObjectSelection& operator+=(const Has_Variables&);
74  */
75 };
76 
77 /// \brief Settings for how to remap dimension scales
79 public:
80  ~ScaleMapping();
81 
82  std::vector<std::pair<Variable, Variable>> map_from_to;
83  std::vector<Variable> map_new;
84  bool autocreate = false;
85 };
86 
87 } // namespace ioda
Interfaces for ioda::Group and related classes.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
Allows you to select objects for a copy operation.
Definition: Copying.h:40
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
IODA_DL void copy(const ObjectSelection &from, ObjectSelection &to, const ScaleMapping &scale_map)
Generic data copying function.
Definition: Copying.cpp:63
Settings for how to remap dimension scales.
Definition: Copying.h:78
std::vector< std::pair< Variable, Variable > > map_from_to
Definition: Copying.h:82
std::vector< Variable > map_new
Definition: Copying.h:83