Move smalloc.h to utility/
[alexxy/gromacs.git] / src / gromacs / fileio / gmxfio_bin.c
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37 #ifdef HAVE_CONFIG_H
38 #include <config.h>
39 #endif
40
41 #include <errno.h>
42 #include <stdio.h>
43 #include <string.h>
44 #ifdef HAVE_IO_H
45 #include <io.h>
46 #endif
47
48 #include "gmx_fatal.h"
49 #include "macros.h"
50 #include "gromacs/utility/smalloc.h"
51 #include "futil.h"
52 #include "filenm.h"
53 #include "gmxfio.h"
54 #include "md5.h"
55
56 #include "gmxfio_int.h"
57
58 /* This is the part that reads dummy and ascii files.  */
59
60
61 static gmx_bool do_binread(t_fileio *fio, void *item, int nitem, int eio,
62                            const char *desc, const char *srcfile, int line);
63 static gmx_bool do_binwrite(t_fileio *fio, const void *item, int nitem, int eio,
64                             const char *desc, const char *srcfile, int line);
65
66
67 const t_iotype bin_iotype = {do_binread, do_binwrite};
68
69
70 static gmx_bool do_binwrite(t_fileio *fio, const void *item, int nitem, int eio,
71                             const char *desc, const char *srcfile, int line)
72 {
73     size_t size = 0, wsize;
74     int    ssize;
75
76     gmx_fio_check_nitem(eio, nitem, srcfile, line);
77     switch (eio)
78     {
79         case eioREAL:
80             size = sizeof(real);
81             break;
82         case eioFLOAT:
83             size = sizeof(float);
84             break;
85         case eioDOUBLE:
86             size = sizeof(double);
87             break;
88         case eioINT:
89             size = sizeof(int);
90             break;
91         case eioINT64:
92             size = sizeof(gmx_int64_t);
93             break;
94         case eioUCHAR:
95             size = sizeof(unsigned char);
96             break;
97         case eioNUCHAR:
98             size = sizeof(unsigned char);
99             break;
100         case eioUSHORT:
101             size = sizeof(unsigned short);
102             break;
103         case eioRVEC:
104             size = sizeof(rvec);
105             break;
106         case eioNRVEC:
107             size = sizeof(rvec);
108             break;
109         case eioIVEC:
110             size = sizeof(ivec);
111             break;
112         case eioSTRING:
113             size = ssize = strlen((char *) item) + 1;
114             do_binwrite(fio, &ssize, 1, eioINT, desc, srcfile, line);
115             break;
116         default:
117             gmx_fio_fe(fio, eio, desc, srcfile, line);
118     }
119
120     wsize = fwrite(item, size, nitem, fio->fp);
121
122     if ((wsize != nitem) && fio->bDebug)
123     {
124         fprintf(stderr,
125                 "Error writing %s %s to file %s (source %s, line %d)\n",
126                 eioNames[eio], desc, fio->fn, srcfile, line);
127         fprintf(stderr, "written size %u bytes, source size %u bytes\n",
128                 (unsigned int) wsize, (unsigned int) size);
129     }
130     return (wsize == nitem);
131 }
132
133 static gmx_bool do_binread(t_fileio *fio, void *item, int nitem, int eio,
134                            const char *desc, const char *srcfile, int line)
135 {
136     size_t size = 0, rsize;
137     int    ssize;
138
139     gmx_fio_check_nitem(eio, nitem, srcfile, line);
140     switch (eio)
141     {
142         case eioREAL:
143             if (fio->bDouble)
144             {
145                 size = sizeof(double);
146             }
147             else
148             {
149                 size = sizeof(float);
150             }
151             break;
152         case eioFLOAT:
153             size = sizeof(float);
154             break;
155         case eioDOUBLE:
156             size = sizeof(double);
157             break;
158         case eioINT:
159             size = sizeof(int);
160             break;
161         case eioINT64:
162             size = sizeof(gmx_int64_t);
163             break;
164         case eioUCHAR:
165             size = sizeof(unsigned char);
166             break;
167         case eioNUCHAR:
168             size = sizeof(unsigned char);
169             break;
170         case eioUSHORT:
171             size = sizeof(unsigned short);
172             break;
173         case eioRVEC:
174         case eioNRVEC:
175             if (fio->bDouble)
176             {
177                 size = sizeof(double) * DIM;
178             }
179             else
180             {
181                 size = sizeof(float) * DIM;
182             }
183             break;
184         case eioIVEC:
185             size = sizeof(ivec);
186             break;
187         case eioSTRING:
188             do_binread(fio, &ssize, 1, eioINT, desc, srcfile, line);
189             size = ssize;
190             break;
191         default:
192             gmx_fio_fe(fio, eio, desc, srcfile, line);
193     }
194     if (item)
195     {
196         rsize = fread(item, size, nitem, fio->fp);
197     }
198     else
199     {
200         /* Skip over it if we have a NULL pointer here */
201         gmx_fseek(fio->fp, (gmx_off_t)(size*nitem), SEEK_CUR);
202         rsize = nitem;
203     }
204     if ((rsize != nitem) && (fio->bDebug))
205     {
206         fprintf(stderr,
207                 "Error reading %s %s from file %s (source %s, line %d)\n",
208                 eioNames[eio], desc, fio->fn, srcfile, line);
209     }
210
211     return (rsize == nitem);
212 }