MRPT  2.0.1
vector_loadsave.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include "io-precomp.h" // Precompiled headers
11 
12 #include <mrpt/core/exceptions.h>
16 
17 using namespace mrpt;
18 using namespace mrpt::io;
19 using namespace std;
20 
22  std::vector<uint8_t>& out_data, const std::string& fileName)
23 {
24  try
25  {
26  CFileInputStream fi(fileName);
27  size_t N = fi.getTotalBytesCount();
28 
29  out_data.resize(N);
30  if (N)
31  {
32  size_t NN = fi.Read(&out_data[0], N);
33  return NN == N;
34  }
35  else
36  return true;
37  }
38  catch (...)
39  {
40  return false;
41  }
42 }
43 
45  const std::vector<uint8_t>& vec, const std::string& fileName)
46 {
47  try
48  {
49  mrpt::io::CFileOutputStream of(fileName);
50  if (!vec.empty()) of.Write(&vec[0], sizeof(vec[0]) * vec.size());
51  return true;
52  }
53  catch (...)
54  {
55  return false;
56  }
57 }
58 
60  std::vector<std::string>& o, const std::string& fileName)
61 {
62  o.clear();
63  std::ifstream f(fileName);
64  if (!f.is_open()) return false;
65  std::string s;
66  while (std::getline(f, s)) o.emplace_back(std::move(s));
67  return true;
68 }
69 
70 std::string mrpt::io::file_get_contents(const std::string& fileName)
71 {
72  // Credits: https://stackoverflow.com/a/2602258/1631514
73  // Note: Add "binary" to make sure the "tellg" file size matches the actual
74  // number of read bytes afterwards:
75  std::ifstream t(fileName, ios::binary);
76  if (!t.is_open())
78  "file_get_contents(): Error opening for read file `%s`",
79  fileName.c_str());
80 
81  t.seekg(0, std::ios::end);
82  std::size_t size = t.tellg();
83  std::string buffer(size, ' ');
84  t.seekg(0);
85  t.read(&buffer[0], size);
86  return buffer;
87 }
bool vectorToBinaryFile(const std::vector< uint8_t > &vec, const std::string &fileName)
Saves a vector directly as a binary dump to a file:
size_t size(const MATRIXLIKE &m, const int dim)
STL namespace.
bool loadBinaryFile(std::vector< uint8_t > &out_data, const std::string &fileName)
Loads a entire file as a vector of bytes.
This CStream derived class allow using a file as a read-only, binary stream.
bool loadTextFile(std::vector< std::string > &o, const std::string &fileName)
Loads a text file as a vector of string lines.
This CStream derived class allow using a file as a write-only, binary stream.
const_iterator end() const
Definition: ts_hash_map.h:246
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
std::string file_get_contents(const std::string &fileName)
Loads an entire text file and return its contents as a single std::string.
#define THROW_EXCEPTION_FMT(_FORMAT_STRING,...)
Definition: exceptions.h:69



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020