summaryrefslogtreecommitdiffstats
path: root/libdimensionxx/cookie.cpp
blob: dd8a06d2adc63fcb8576f7ffc212f34da3c1ef3b (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*************************************************************************
 * Copyright (C) 2008 Tavian Barnes <tavianator@gmail.com>               *
 *                                                                       *
 * This file is part of The Dimension Library.                           *
 *                                                                       *
 * The Dimension Library is free software; you can redistribute it and/  *
 * or modify it under the terms of the GNU Lesser General Public License *
 * as published by the Free Software Foundation; either version 3 of the *
 * License, or (at your option) any later version.                       *
 *                                                                       *
 * The Dimension Library is distributed in the hope that it will be      *
 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty   *
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  *
 * Lesser General Public License for more details.                       *
 *                                                                       *
 * You should have received a copy of the GNU Lesser General Public      *
 * License along with this program.  If not, see                         *
 * <http://www.gnu.org/licenses/>.                                       *
 *************************************************************************/

#include "dimensionxx.hpp"
#include <stdio.h>

namespace Dimension
{
  namespace
  {
    struct Cookie
    {
    public:
      std::istream* istr;
      std::ostream* ostr;
    };

    ssize_t
    cookie_read(void* cookie, char* buf, size_t size)
    {
      Cookie* streams = reinterpret_cast<Cookie*>(cookie);

      streams->istr->read(buf, size);

      if (streams->istr->eof()) {
        return streams->istr->gcount();
      } else if (!streams->istr->good()) {
        return -1;
      } else {
        return streams->istr->gcount();
      }
    }

    ssize_t
    cookie_write(void* cookie, const char* buf, size_t size)
    {
      Cookie* streams = reinterpret_cast<Cookie*>(cookie);

      streams->ostr->write(buf, size);

      if (!streams->ostr->good()) {
        return -1;
      } else {
        return size;
      }
    }

    int
    cookie_seek(void* cookie, off64_t* offset, int whence)
    {
      Cookie* streams = reinterpret_cast<Cookie*>(cookie);
      bool success = true;

      if (streams->istr) {
        switch (whence) {
        case SEEK_SET:
          streams->istr->seekg(*offset, std::ios::beg);
          break;
        case SEEK_CUR:
          streams->istr->seekg(*offset, std::ios::cur);
          break;
        case SEEK_END:
          streams->istr->seekg(*offset, std::ios::end);
          break;
        }

        if (!streams->istr->good()) {
          success = false;
        }
      }

      if (streams->ostr) {
        switch (whence) {
        case SEEK_SET:
          streams->ostr->seekp(*offset, std::ios::beg);
          break;
        case SEEK_CUR:
          streams->ostr->seekp(*offset, std::ios::cur);
          break;
        case SEEK_END:
          streams->ostr->seekp(*offset, std::ios::end);
        }

        if (!streams->ostr->good()) {
          success = false;
        }
      }

      return !success;
    }

    int
    cookie_close(void* cookie)
    {
      delete reinterpret_cast<Cookie*>(cookie);
    }
  }

  std::FILE*
  fcookie(std::istream& istr)
  {
    Cookie* cookie = new Cookie;
    cookie->istr = &istr;
    cookie->ostr = 0;

    cookie_io_functions_t io_funcs;
    io_funcs.read  = &cookie_read;
    io_funcs.write = 0;
    io_funcs.seek  = &cookie_seek;
    io_funcs.close = &cookie_close;

    return fopencookie(reinterpret_cast<void*>(cookie), "r", io_funcs);
  }

  std::FILE*
  fcookie(std::ostream& ostr)
  {
    Cookie* cookie = new Cookie;
    cookie->istr = 0;
    cookie->ostr = &ostr;

    cookie_io_functions_t io_funcs;
    io_funcs.read  = 0;
    io_funcs.write = &cookie_write;
    io_funcs.seek  = &cookie_seek;
    io_funcs.close = &cookie_close;

    return fopencookie(reinterpret_cast<void*>(cookie), "w", io_funcs);
  }

  std::FILE*
  fcookie(std::iostream& iostr)
  {
    Cookie* cookie = new Cookie;
    cookie->istr = &iostr;
    cookie->ostr = &iostr;

    cookie_io_functions_t io_funcs;
    io_funcs.read  = &cookie_read;
    io_funcs.write = &cookie_write;
    io_funcs.seek  = &cookie_seek;
    io_funcs.close = &cookie_close;

    return fopencookie(reinterpret_cast<void*>(cookie), "r+", io_funcs);
  }
}