/usr/include/gromacs/futil.h is in gromacs-dev 4.6.5-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | /*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 1991-2000, University of Groningen, The Netherlands.
* Copyright (c) 2001-2004, The GROMACS development team,
* check out http://www.gromacs.org for more information.
* Copyright (c) 2012,2013, by the GROMACS development team, led by
* David van der Spoel, Berk Hess, Erik Lindahl, and including many
* others, as listed in the AUTHORS file in the top-level source
* directory and at http://www.gromacs.org.
*
* GROMACS 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 2.1
* of the License, or (at your option) any later version.
*
* GROMACS 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 GROMACS; if not, see
* http://www.gnu.org/licenses, or write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* If you want to redistribute modifications to GROMACS, please
* consider that scientific software is very special. Version
* control is crucial - bugs must be traceable. We will be happy to
* consider code for inclusion in the official distribution, but
* derived work must not be called official GROMACS. Details are found
* in the README & COPYING files - if they are missing, get the
* official version at http://www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the research papers on the package. Check out http://www.gromacs.org.
*/
#ifndef _futil_h
#define _futil_h
#include "visibility.h"
#include <stdio.h>
#include "typedefs.h"
#include "types/commrec.h"
#ifdef __cplusplus
extern "C" {
#endif
#if 0
}
#endif
/* Native windows uses backslash path separators.
* Cygwin and everybody else in the world use slash.
* When reading the PATH environment variable, Unix separates entries
* with colon, while windows uses semicolon.
*/
#include "gmx_header_config.h"
#ifdef GMX_NATIVE_WINDOWS
#define DIR_SEPARATOR '\\'
#define PATH_SEPARATOR ";"
#else
#define DIR_SEPARATOR '/'
#define PATH_SEPARATOR ":"
#endif
/* Now get the maximum path size. */
#ifdef PATH_MAX
# define GMX_PATH_MAX PATH_MAX
#elif defined MAX_PATH
# define GMX_PATH_MAX MAX_PATH
#else
# define GMX_PATH_MAX 4096
#endif
#ifdef HAVE_FSEEKO
typedef off_t gmx_off_t;
# define SIZEOF_GMX_OFF_T SIZEOF_OFF_T
#elif defined HAVE__FSEEKI64
typedef __int64 gmx_off_t;
# define SIZEOF_GMX_OFF_T 8
#else
/* Almost certainly 64 bits, and guaranteed to be available */
typedef gmx_large_int_t gmx_off_t;
# define SIZEOF_GMX_OFF_T SIZEOF_GMX_LARGE_INT
#endif
void no_buffers(void);
/* Turn off buffering of files (which is default) for debugging purposes */
GMX_LIBGMX_EXPORT
gmx_bool gmx_fexist(const char *fname);
/* Return TRUE when fname exists, FALSE otherwise */
GMX_LIBGMX_EXPORT
gmx_bool gmx_fexist_master(const char *fname, t_commrec *cr);
/* Return TRUE when fname exists, FALSE otherwise, bcast from master to others */
gmx_bool gmx_eof(FILE *fp);
/* Return TRUE on end-of-file, FALSE otherwise */
gmx_bool is_pipe(FILE *fp);
/* Check whether the file (opened by ffopen) is a pipe */
/* Make a backup of file if necessary.
Return false if there was a problem.
*/
GMX_LIBGMX_EXPORT
gmx_bool make_backup(const char * file);
GMX_LIBGMX_EXPORT
FILE *ffopen(const char *file, const char *mode);
/* Return a valid file pointer when successful, exits otherwise
* If the file is in compressed format, open a pipe which uncompresses
* the file! Therefore, files must be closed with ffclose (see below)
*/
GMX_LIBGMX_EXPORT
int ffclose(FILE *fp);
/* Close files or pipes */
void frewind(FILE *fp);
/* Does not rewind pipes, but does so for normal files */
#define rewind frewind
GMX_LIBGMX_EXPORT
int gmx_fseek(FILE *stream, gmx_off_t offset, int whence);
/* OS-independent fseek. 64-bit when available */
GMX_LIBGMX_EXPORT
gmx_off_t gmx_ftell(FILE *stream);
/* OS-independent fseek. 64-bit when available. */
gmx_bool is_pipe(FILE *fp);
GMX_LIBGMX_EXPORT
char *gmxlibfn(const char *file);
/* allocates and returns a string with the full file name for a library file */
GMX_LIBGMX_EXPORT
FILE *libopen(const char *file);
/* Open a library file for reading. This looks in the current directory
* first, and then in the library directory. If the file is not found,
* it terminates with a fatal_error
*/
/* Opaque data type to list directories */
typedef struct gmx_directory *
gmx_directory_t;
/* Open a directory for reading. The first argument should be a pointer
* to a declared gmx_directory_t variable. Returns 0 on success.
*/
GMX_LIBGMX_EXPORT
int
gmx_directory_open(gmx_directory_t *p_gmxdir, const char *dirname);
/* Given an initialized gmx_directory_t, if there are more files in
* the directory this routine returns 0 and write the next name
* into the USER-PROVIDED buffer name. The last argument is the max
* number of characters that will be written. Just as strncpy, the
* string will NOT be terminated it it is longer than maxlength_name.
*/
GMX_LIBGMX_EXPORT
int
gmx_directory_nextfile(gmx_directory_t gmxdir, char *name, int maxlength_name);
/* Release all data for a directory structure */
GMX_LIBGMX_EXPORT
int
gmx_directory_close(gmx_directory_t gmxdir);
GMX_LIBGMX_EXPORT
gmx_bool get_libdir(char *libdir);
GMX_LIBGMX_EXPORT
char *low_gmxlibfn(const char *file, gmx_bool bAddCWD, gmx_bool bFatal);
FILE *low_libopen(const char *file, gmx_bool bFatal);
/* The same as the above, but does not terminate if (!bFatal) */
/* Create unique name for temp file (wrapper around mkstemp).
* Buf should be at least 7 bytes long
*/
GMX_LIBGMX_EXPORT
void gmx_tmpnam(char *buf);
/* truncte the file to the specified length */
int gmx_truncatefile(char *path, gmx_off_t length);
/* rename/move the file (atomically, if the OS makes that available) oldname
to newname */
int gmx_file_rename(const char *oldname, const char *newname);
/* copy the file (data only) oldname to newname. if copy_if_empty==FALSE,
the file won't be copied if it's empty.*/
int gmx_file_copy(const char *oldname, const char *newname, gmx_bool copy_if_empty);
/* do an fsync() on an open file pointer.
Only use this during checkpointing! */
int gmx_fsync(FILE *fp);
#ifdef GMX_NATIVE_WINDOWS
#define chdir _chdir
#define getcwd _getcwd
#endif
#ifdef __cplusplus
}
#endif
#endif /* _futil_h */
|