This repository has been archived by the owner on Jul 6, 2019. It is now read-only.
forked from Nik-U/pbc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
memstream_other.go
70 lines (61 loc) · 1.8 KB
/
memstream_other.go
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
// Copyright © 2015 Nik Unger
//
// This file is part of The PBC Go Wrapper.
//
// The PBC Go Wrapper 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 PBC Go Wrapper 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 The PBC Go Wrapper. If not, see <http://www.gnu.org/licenses/>.
//
// The PBC Go Wrapper makes use of The PBC library. The PBC Library and its use
// are covered under the terms of the GNU Lesser General Public License
// version 3, or (at your option) any later version.
// +build !linux,!darwin,!freebsd
package pbc
/*
#include <stdlib.h>
#include "memstream.h"
struct memstream_s {
FILE* fd;
};
memstream_t* pbc_open_memstream() {
FILE* fd = tmpfile();
if (fd == NULL) return NULL;
memstream_t* result = malloc(sizeof(memstream_t));
result->fd = fd;
return result;
}
FILE* pbc_memstream_to_fd(memstream_t* m) { return m->fd; }
int pbc_close_memstream(memstream_t* m, char** bufp, size_t* sizep) {
*bufp = NULL;
*sizep = 0;
FILE* fd = m->fd;
m->fd = NULL;
free(m);
m = NULL;
if (!ferror(fd)) {
fseek(fd, 0, SEEK_END);
*sizep = (size_t)ftell(fd);
rewind(fd);
*bufp = malloc(*sizep + 1);
size_t readBytes = fread(*bufp, 1, *sizep, fd);
if (readBytes < *sizep || ferror(fd)) {
free(*bufp);
*bufp = NULL;
*sizep = 0;
}
bufp[*sizep] = '\0';
}
fclose(fd);
return (*bufp != NULL);
}
*/
import "C"