IODA
copy1.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /** \file copy1.cpp Tests generic copying functions. Used for benchmarking.
8  * \details
9  * This test tries to copy data between backends. The initial data file
10  * is passed form the command line.
11  **/
12 
13 #include <iostream>
14 #include <vector>
15 
16 #include "ioda/Copying.h"
17 #include "ioda/Engines/HH.h"
18 #include "ioda/Engines/ObsStore.h"
19 #include "ioda/Exception.h"
20 #include "ioda/Group.h"
21 
22 int main(int argc, char** argv) {
23  try {
24  using namespace std;
25  using namespace ioda;
26 
27  if (argc < 3 || argc > 4) throw std::logic_error("Bad number of arguments.");
28  string srcfile{argv[1]};
29  string srcmode{argv[2]};
30  Group src = (srcmode == "memmap")
31  ? Engines::HH::openMemoryFile(srcfile, Engines::BackendOpenModes::Read_Only)
32  : Engines::HH::openFile(srcfile, Engines::BackendOpenModes::Read_Only);
33 
34  std::map<string, Group> grps{
36  Engines::BackendCreateModes::Truncate_If_Exists)},
37  {"ObsStore", Engines::ObsStore::createRootGroup()}};
38 
39  auto doTest = [](const std::string& name, Group src, Group dest) {
40  std::cout << "Testing " << name << std::endl;
41  ScaleMapping sm;
42  sm.autocreate = true;
43  ObjectSelection dgrp{dest};
44  ioda::copy({src}, dgrp, sm);
45  std::cout << "Done testing " << name << std::endl;
46  };
47 
48  if (argc == 4) {
49  // Attempt timing information for only one backend.
50  // Useful when running in a profiler.
51  // If name matches one of the special strings, use that
52  // in-memory backend. Otherwise, create an output file and
53  // use that as the backend. Output name equals the final
54  // string argument.
55  string backend{argv[3]};
56  if (grps.count(backend))
57  doTest(backend, src, grps.at(backend));
58  else
59  doTest(backend, src,
60  Engines::HH::createFile(backend, Engines::BackendCreateModes::Truncate_If_Exists));
61  } else {
62  // Attempt timing information for all backends
63  for (auto& b : grps) doTest(b.first, src, b.second);
64  }
65 
66  return 0;
67  } catch (const std::exception& e) {
69  return 1;
70  } catch (...) {
71  std::cerr << "Unhandled exception\n";
72  return 2;
73  }
74 }
Generic copying facility.
IODA's error system.
Interfaces for ioda::Group and related classes.
HDF5 engine.
ObsStore engine.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
Allows you to select objects for a copy operation.
Definition: Copying.h:40
int main(int argc, char **argv)
Definition: copy1.cpp:22
IODA_DL Group createFile(const std::string &filename, BackendCreateModes mode, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:120
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:147
IODA_DL std::string genUniqueName()
Convenience function to generate a random file name.
Definition: HH.cpp:50
IODA_DL Group openMemoryFile(const std::string &filename, BackendOpenModes mode=BackendOpenModes::Read_Only, bool flush_on_close=false, size_t increment_len_bytes=1000000, HDF5_Version_Range compat=defaultVersionRange())
Map an HDF5 file in memory and open a ioda::Group.
Definition: HH.cpp:171
IODA_DL Group createMemoryFile(const std::string &filename, BackendCreateModes mode, bool flush_on_close=false, size_t increment_len_bytes=1000000, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by the HDF5 in-memory-store.
Definition: HH.cpp:86
IODA_DL Group createRootGroup()
Create a ioda::Group backed by an OsbStore Group object.
Definition: ObsStore.cpp:24
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.
Definition: Exception.cpp:48
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