/***************************************************************************** Major portions of this software are copyrighted by the Medical College of Wisconsin, 1994-2000, and are released under the Gnu General Public License, Version 2. See the file README.Copyright for details. ******************************************************************************/ /******************************************************* * 3dNotes * * T. Ross 8/99 * * -- Modified by RWCox to use thd_notes.c functions * * -- Modified -help menu, P Christidis 21 Jul 2005 * *******************************************************/ #include "mrilib.h" #undef ZMAX #undef SZMAX #define ZMAX 8000 #define SZMAX "%.8000s" /* same as ZMAX */ void Error_Exit(char *message) { fprintf (stderr, "\n\nError: %s\n", message); exit(1); } void Show_Help(void) { fprintf(stdout, "Program: 3dNotes \n" "Author: T. Ross \n" "(c)1999 Medical College of Wisconsin \n" " \n" "3dNotes - a program to add, delete and show notes for AFNI datasets. \n" " \n" "----------------------------------------------------------------------- \n" " \n" "Usage: 3dNotes [-a \"string\"] [-h \"string\"][-d num] [-help] dataset \n" " \n" "Examples: \n" " \n" "3dNotes -a \"Subject sneezed in scanner, Aug 13 2004\" elvis+orig \n" "3dNotes -h \"Subject likes fried PB & banana sandwiches\" elvis+orig \n" "3dNotes -HH \"Subject has left the building\" elvis+orig \n" "3dNotes -d 2 -h \"Subject sick of PB'n'banana sandwiches\" elvis+orig \n" " \n" "----------------------------------------------------------------------- \n" " \n" "Explanation of Options:\n" "---------------------- \n" " dataset : AFNI compatible dataset [required].\n" " \n" " -a \"str\" : Add the string \"str\" to the list of notes.\n" " \n" " Note that you can use the standard C escape codes,\n" " \\n for newline \\t for tab, etc.\n" " \n" " -h \"str\" : Append the string \"str\" to the dataset's history. This\n" " can only appear once on the command line. As this is\n" " added to the history, it cannot easily be deleted. But,\n" " history is propagated to the children of this dataset.\n" " \n" " -HH \"str\" : Replace any existing history note with \"str\". This \n" " line cannot be used with '-h'.\n" /* 09 Dec 2000 */ " \n" " -d num : deletes note number num.\n" " \n" " -ses : Print to stdout the expanded notes. \n" " \n" " -help : Displays this screen.\n" " \n" " \n" "The default action, with no options, is to display the notes for the\n" "dataset. If there are options, all deletions occur first and essentially\n" "simultaneously. Then, notes are added in the order listed on the command\n" "line. If you do something like -d 10 -d 10, it will delete both notes 10\n" "and 11. Don't do that.\n\n" ); PRINT_COMPILE_DATE ; exit(0); } void Display_Notes(THD_3dim_dataset *dset) { ATR_int *notecount; int num_notes, i, hnotecount; char * chn , * chd ; notecount = THD_find_int_atr(dset->dblk, "NOTES_COUNT"); /** If present, print out History **/ chn = tross_Get_History(dset) ; if( chn != NULL ) hnotecount = strlen(chn) ; else hnotecount = 0; if ((notecount == NULL) && (hnotecount==0)) Error_Exit("There are no notes in the dataset"); if(hnotecount) { printf("\n----- HISTORY -----\n") ; for( i=0 ; i < hnotecount ; i += ZMAX ) printf(SZMAX,chn+i); free(chn) ; printf("\n"); } if(notecount==NULL) return; num_notes = notecount->in[0]; for (i=1; i<= num_notes; i++) { chn = tross_Get_Note( dset , i ) ; if( chn == NULL ) Error_Exit("Could not get the next note;" " is there a problem with the HEAD file?"); chd = tross_Get_Notedate(dset,i) ; if( chd == NULL ){ printf("\n----- NOTE %d [no date] -----\n%s\n",i,chn) ; } else { printf("\n----- NOTE %d [%s] -----\n%s\n",i,chd,chn) ; free(chd) ; } free(chn) ; } } int main (int argc, char * argv[]) { THD_3dim_dataset *dset=NULL; int narg = 1, i, curr_note=0, curr_del=0; char *notes[MAX_DSET_NOTES]; char *history_note = NULL; int delnotes[MAX_DSET_NOTES], delindex=0, delnum; int HH=0 ; /* 09 Dec 2000 */ int ShowString; RwcBoolean write_output; /* 21 Jun 2006 [dg] - similar to change in 3drefit by rickr */ if (argc == 1) /* no file listed */ Show_Help(); mainENTRY("3dNotes main"); machdep(); AFNI_logger("3dNotes",argc,argv); for (i=0; i= argc) { if (!ShowString) { Error_Exit("No input dataset!?\n") ; } else { exit(0); } } THD_set_write_compression(COMPRESS_NONE); /* do not alter compression*/ dset = THD_open_one_dataset( argv[narg] ) ; if( dset == NULL ) Error_Exit("Cannot open dataset") ; if( DSET_IS_MINC(dset) ) Error_Exit("Cannot use MINC dataset") ; if( DSET_IS_ANALYZE(dset) ) Error_Exit("Cannot use ANALYZE dataset") ; if( DSET_IS_1D(dset) ) Error_Exit("Cannot use .1D dataset") ; if( DSET_IS_3D(dset) ) Error_Exit("Cannot use .3D dataset") ; if( DSET_IS_CTFMRI(dset) ) Error_Exit("Cannot use CTF dataset") ; if( DSET_IS_CTFSAM(dset) ) Error_Exit("Cannot use CTF dataset") ; /* any surviving non-AFNI dataset needs the data written out */ if( IS_VALID_NON_AFNI_DSET(dset) ) /* 13 Jul 2006 [rickr] */ write_output = True ; else write_output = False ; /* First, delete notes */ do { delnum = 0; /* find the largest note to delete, since numbering for those > than deleted changes */ for(i=0; idelnum) { delnum=delnotes[i]; delindex = i; } if (delnum) { delnotes[delindex]=0; tross_Delete_Note(dset, delnum); } } while (delnum); /* loop ends when no more to delete */ /* Next, add notes */ tross_Dont_Encode_Slash( 1 ) ; /* 13 Mar 2003 */ for (i=0; i