summaryrefslogtreecommitdiffhomepage
path: root/file.cpp
blob: 72522b38ccd1f6f1635716eba7268a8b0a16e2e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "file.h"

#include "minicc.h"

#include <fstream>

std::vector<uint8_t> File::getFile(const fs::path& filename)
{
 std::ifstream file(filename.string(), std::ios::in | std::ios::binary | std::ios::ate);

 if (file.is_open()) {
  std::ifstream::pos_type fileSize = file.tellg();
  file.seekg(0, std::ios::beg);

  std::vector<uint8_t> bytes(fileSize, 0);
  file.read(reinterpret_cast<char*>(bytes.data()), fileSize);

  return bytes;

 } else {
  throw std::runtime_error("Opening "s + filename.string() + " for reading");
 }
}

void File::setFile(const fs::path& filename, const std::string& s)
{
 File::setFile(filename, s.data(), s.size());
}

void File::setFile(const fs::path& filename, const char* data, size_t size)
{
 std::ofstream file(filename.string(), std::ios::out | std::ios::binary);
 if (file.is_open()) {
  file.write(data, size);
 } else {
  throw std::runtime_error("Opening "s + filename.string() + " for writing");
 }
}

void File::setFile(const fs::path& filename, const std::vector<uint8_t>& data)
{
 File::setFile(filename, reinterpret_cast<const char*>(data.data()), data.size());
}