Doxygen Source Code Documentation
plug_compress.c File Reference
#include "afni.h"
Go to the source code of this file.
Defines | |
#define | NUM_COMP_STRINGS (sizeof(comp_strings)/sizeof(char *)) |
Functions | |
char * | COMP_main (PLUGIN_interface *) |
DEFINE_PLUGIN_PROTOTYPE PLUGIN_interface * | PLUGIN_init (int ncall) |
Variables | |
char | helpstring [] |
char * | comp_strings [] |
Define Documentation
|
Definition at line 44 of file plug_compress.c. Referenced by COMP_main(), and PLUGIN_init(). |
Function Documentation
|
Definition at line 115 of file plug_compress.c. References comp_strings, COMPRESS_LASTCODE, COMPRESS_NONE, NUM_COMP_STRINGS, PLUTO_string_index(), and THD_set_write_compression(). Referenced by PLUGIN_init().
00116 { 00117 char * str ; 00118 int meth ; 00119 00120 PLUTO_next_option(plint) ; 00121 00122 str = PLUTO_get_string(plint) ; 00123 meth = PLUTO_string_index(str,NUM_COMP_STRINGS,comp_strings) - 1 ; 00124 if( meth < 0 || meth > COMPRESS_LASTCODE ) meth = COMPRESS_NONE ; 00125 THD_set_write_compression(meth) ; 00126 return NULL ; 00127 } |
|
Definition at line 66 of file plug_compress.c. References COMP_main(), comp_strings, helpstring, NUM_COMP_STRINGS, PLUTO_add_hint(), PLUTO_set_runlabels(), PLUTO_set_sequence(), and THD_get_write_compression().
00067 { 00068 PLUGIN_interface * plint ; /* will be the output of this routine */ 00069 int meth ; 00070 00071 if( ncall > 0 ) return NULL ; /* only one interface */ 00072 00073 /*---------------- set titles and call point ----------------*/ 00074 00075 plint = PLUTO_new_interface( "BRIK Compressor" , 00076 "Control .BRIK compression" , 00077 helpstring , 00078 PLUGIN_CALL_VIA_MENU , COMP_main ) ; 00079 00080 PLUTO_add_hint( plint , "Control .BRIK compression" ) ; 00081 00082 PLUTO_set_sequence( plint , "A:afnicontrol:dset" ) ; 00083 00084 PLUTO_set_runlabels( plint , "Set+Keep" , "Set+Close" ) ; /* 04 Nov 2003 */ 00085 00086 /*---------- 2nd line: other inputs ----------*/ 00087 00088 PLUTO_add_option( plint , 00089 "Input" , /* label at left of input line */ 00090 "Input" , /* tag to return to plugin */ 00091 TRUE /* is this mandatory? */ 00092 ) ; 00093 00094 meth = THD_get_write_compression()+1 ; 00095 if( meth < 0 || meth >= NUM_COMP_STRINGS ) meth = 0 ; 00096 00097 PLUTO_add_string( plint , 00098 "Mode" , /* label next to chooser button */ 00099 NUM_COMP_STRINGS , /* number of strings to choose among */ 00100 comp_strings , /* list of strings to choose among */ 00101 meth /* index of default string */ 00102 ) ; 00103 00104 /*--------- done with interface setup ---------*/ 00105 00106 return plint ; 00107 } |
Variable Documentation
|
Initial value: { "NONE" , "GZIP" , "BZIP2" , "COMPRESS" } Definition at line 40 of file plug_compress.c. Referenced by COMP_main(), and PLUGIN_init(). |
|
Initial value: "Purpose: control the way AFNI compresses datasets.\n" "\n" "The input 'Mode' specifies how dataset .BRIK files will be\n" "compress when written to disk. The options are\n" "\n" " NONE = no compression\n" " GZIP = use program 'gzip'\n" " BZIP2 = use program 'bzip2' [very slow; most compression]\n" " COMPRESS = use program 'compress'\n" "\n" "Compressed datasets will save disk space. The principal cost is\n" "the CPU time it takes to read and write compressed files." "\n" "After you make your choice, you must press one of the\n" "'Set' buttons for the plugin to send its data to AFNI.\n" "Author -- RW Cox" Definition at line 19 of file plug_compress.c. Referenced by PLUGIN_init(). |