aboutsummaryrefslogtreecommitdiff
path: root/v0_1_5/lib/marisa_alpha/writer.h
blob: a31f2666f8bde06df7499ab239193881d9055107 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef MARISA_ALPHA_WRITER_H_
#define MARISA_ALPHA_WRITER_H_

#include <cstdio>
#include <iostream>

#include "base.h"

namespace marisa_alpha {

class Writer {
 public:
  Writer();
  explicit Writer(std::FILE *file);
  explicit Writer(int fd);
  explicit Writer(std::ostream *stream);
  ~Writer();

  void open(const char *filename, bool trunc_flag = true,
      long offset = 0, int whence = SEEK_SET);

  template <typename T>
  void write(const T &obj) {
    write_data(&obj, sizeof(T));
  }

  template <typename T>
  void write(const T *objs, std::size_t num_objs) {
    MARISA_ALPHA_THROW_IF((objs == NULL) && (num_objs != 0),
        MARISA_ALPHA_PARAM_ERROR);
    MARISA_ALPHA_THROW_IF(num_objs > (MARISA_ALPHA_UINT32_MAX / sizeof(T)),
        MARISA_ALPHA_SIZE_ERROR);
    if (num_objs != 0) {
      write_data(objs, sizeof(T) * num_objs);
    }
  }

  bool is_open() const {
    return (file_ != NULL) || (fd_ != -1) || (stream_ != NULL);
  }

  void clear();
  void swap(Writer *rhs);

 private:
  std::FILE *file_;
  int fd_;
  std::ostream *stream_;
  bool needs_fclose_;

  void write_data(const void *data, std::size_t size);

  // Disallows copy and assignment.
  Writer(const Writer &);
  Writer &operator=(const Writer &);
};

}  // namespace marisa_alpha

#endif  // MARISA_ALPHA_WRITER_H_