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
|
/*
NrrdIO: stand-alone code for basic nrrd functionality
Copyright (C) 2008, 2007, 2006, 2005 Gordon Kindlmann
Copyright (C) 2004, 2003, 2002, 2001, 2000, 1999, 1998 University of Utah
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "NrrdIO.h"
#include "privateNrrd.h"
int
_nrrdFormatVTK_available(void) {
return AIR_FALSE;
}
int
_nrrdFormatVTK_nameLooksLike(const char *fname) {
return airEndsWith(fname, NRRD_EXT_VTK);
}
int
_nrrdFormatVTK_fitsInto(const Nrrd *nrrd, const NrrdEncoding *encoding,
int useBiff) {
char me[]="_nrrdFormatVTK_fitsInto", err[AIR_STRLEN_MED];
AIR_UNUSED(nrrd);
AIR_UNUSED(encoding);
AIR_UNUSED(useBiff);
sprintf(err, "%s: Sorry, %s format not available in NrrdIO",
me, nrrdFormatVTK->name);
biffMaybeAdd(NRRD, err, useBiff);
return AIR_FALSE;
}
int
_nrrdFormatVTK_contentStartsLike(NrrdIoState *nio) {
AIR_UNUSED(nio);
return AIR_FALSE;
}
int
_nrrdFormatVTK_read(FILE *file, Nrrd *nrrd, NrrdIoState *nio) {
char me[]="_nrrdReadVTK", err[AIR_STRLEN_MED];
AIR_UNUSED(file);
AIR_UNUSED(nrrd);
AIR_UNUSED(nio);
sprintf(err, "%s: Sorry, %s format not available in NrrdIO",
me, nrrdFormatVTK->name);
biffAdd(NRRD, err);
return 1;
}
/* this strongly assumes that nrrdFitsInFormat() was true */
int
_nrrdFormatVTK_write(FILE *file, const Nrrd *nrrd, NrrdIoState *nio) {
char me[]="_nrrdFormatVTK_write", err[AIR_STRLEN_MED];
AIR_UNUSED(file);
AIR_UNUSED(nrrd);
AIR_UNUSED(nio);
sprintf(err, "%s: Sorry, %s format not available in NrrdIO",
me, nrrdFormatVTK->name);
biffAdd(NRRD, err);
return 1;
}
const NrrdFormat
_nrrdFormatVTK = {
"VTK",
AIR_FALSE, /* isImage */
AIR_FALSE, /* readable */
AIR_FALSE, /* usesDIO */
_nrrdFormatVTK_available,
_nrrdFormatVTK_nameLooksLike,
_nrrdFormatVTK_fitsInto,
_nrrdFormatVTK_contentStartsLike,
_nrrdFormatVTK_read,
_nrrdFormatVTK_write
};
const NrrdFormat *const
nrrdFormatVTK = &_nrrdFormatVTK;
|