2 * This file is part of the GROMACS molecular simulation package.
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.
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.
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.
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.
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.
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.
47 #include "gromacs/utility/smalloc.h"
48 #include "gromacs/utility/futil.h"
53 #include "gmxfio_int.h"
55 /* This is the part that reads dummy and ascii files. */
58 static gmx_bool
do_binread(t_fileio
*fio
, void *item
, int nitem
, int eio
,
59 const char *desc
, const char *srcfile
, int line
);
60 static gmx_bool
do_binwrite(t_fileio
*fio
, const void *item
, int nitem
, int eio
,
61 const char *desc
, const char *srcfile
, int line
);
64 const t_iotype bin_iotype
= {do_binread
, do_binwrite
};
67 static gmx_bool
do_binwrite(t_fileio
*fio
, const void *item
, int nitem
, int eio
,
68 const char *desc
, const char *srcfile
, int line
)
70 size_t size
= 0, wsize
;
73 gmx_fio_check_nitem(eio
, nitem
, srcfile
, line
);
83 size
= sizeof(double);
89 size
= sizeof(gmx_int64_t
);
92 size
= sizeof(unsigned char);
95 size
= sizeof(unsigned char);
98 size
= sizeof(unsigned short);
110 size
= ssize
= strlen((char *) item
) + 1;
111 do_binwrite(fio
, &ssize
, 1, eioINT
, desc
, srcfile
, line
);
114 gmx_fio_fe(fio
, eio
, desc
, srcfile
, line
);
117 wsize
= fwrite(item
, size
, nitem
, fio
->fp
);
119 if ((wsize
!= nitem
) && fio
->bDebug
)
122 "Error writing %s %s to file %s (source %s, line %d)\n",
123 eioNames
[eio
], desc
, fio
->fn
, srcfile
, line
);
124 fprintf(stderr
, "written size %u bytes, source size %u bytes\n",
125 (unsigned int) wsize
, (unsigned int) size
);
127 return (wsize
== nitem
);
130 static gmx_bool
do_binread(t_fileio
*fio
, void *item
, int nitem
, int eio
,
131 const char *desc
, const char *srcfile
, int line
)
133 size_t size
= 0, rsize
;
136 gmx_fio_check_nitem(eio
, nitem
, srcfile
, line
);
142 size
= sizeof(double);
146 size
= sizeof(float);
150 size
= sizeof(float);
153 size
= sizeof(double);
159 size
= sizeof(gmx_int64_t
);
162 size
= sizeof(unsigned char);
165 size
= sizeof(unsigned char);
168 size
= sizeof(unsigned short);
174 size
= sizeof(double) * DIM
;
178 size
= sizeof(float) * DIM
;
185 do_binread(fio
, &ssize
, 1, eioINT
, desc
, srcfile
, line
);
189 gmx_fio_fe(fio
, eio
, desc
, srcfile
, line
);
193 rsize
= fread(item
, size
, nitem
, fio
->fp
);
197 /* Skip over it if we have a NULL pointer here */
198 gmx_fseek(fio
->fp
, (gmx_off_t
)(size
*nitem
), SEEK_CUR
);
201 if ((rsize
!= nitem
) && (fio
->bDebug
))
204 "Error reading %s %s from file %s (source %s, line %d)\n",
205 eioNames
[eio
], desc
, fio
->fn
, srcfile
, line
);
208 return (rsize
== nitem
);