15 #define RES_BIN_HEADER "HECMW_BINARY_RESULT"
17 #define LINEBUF_SIZE 1023
26 static int write_bin_header(FILE* fp) {
32 if( fwrite( s,
sizeof(
char), n, fp) != n )
return -1;
34 sprintf( nbyte,
"%2zd", n );
35 if( fwrite( nbyte,
sizeof(
char), 2, fp) != 2 )
return -1;
40 static int check_bin_header(FILE* fp) {
43 char buff[256], nbyte[3];
45 if( fread( buff,
sizeof(
char), n, fp) != n )
return 0;
46 if( fread( nbyte,
sizeof(
char), 2, fp) != 2 )
return 0;
49 return ( strcmp( buff, s ) == 0 );
57 if((fp = fopen(filename,
"rb")) ==
NULL) {
63 rcode = check_bin_header(fp);
75 static int bin_output_result_header(FILE *fp) {
95 static int bin_output_result_global(FILE *fp) {
96 int i,j,k,n,rc,ng_comp;
147 if(ng_comp == 0)
return 0;
157 for(j=0; j < ng_comp; j++) {
159 for(k=0; k < p->
n_dof; k++) {
173 static int bin_output_result_dataheader(FILE *fp) {
194 static int bin_output_result_node(FILE *fp) {
195 int i,j,k,n,rc,nn_comp;
220 if(nn_comp == 0)
return 0;
236 for(j=0; j < nn_comp; j++) {
238 for(k=0; k < p->
n_dof; k++) {
253 static int bin_output_result_elem(FILE *fp) {
254 int i,j,k,n,rc,ne_comp;
279 if(ne_comp == 0)
return 0;
295 for(j=0; j < ne_comp; j++) {
297 for(k=0; k < p->
n_dof; k++) {
312 static int bin_output_result_data(FILE *fp) {
316 if(bin_output_result_header(fp)) {
320 if(bin_output_result_global(fp)) {
330 if(bin_output_result_dataheader(fp)) {
333 if(bin_output_result_node(fp)) {
336 if(bin_output_result_elem(fp)) {
356 if ((fp = fopen(filename,
"wb")) ==
NULL) {
363 if (write_bin_header(fp))
goto error;
364 if (bin_output_result_data(fp))
goto error;
385 char *header, FILE *fp) {
397 while(len <
sizeof(head)-1 && *p && *p !=
'\n') {
419 char *comment, FILE *fp) {
425 if(comment ==
NULL) {
426 comment_line[0] =
'\0';
431 while(len <
sizeof(comment_line)-1 && *p && *p !=
'\n') {
488 for(k=0; k < result->
ng_dof[j]; k++) {
510 int n_node,
int n_elem, FILE *fp) {
532 int n_node, FILE *fp) {
558 for(i=0; i < n_node; i++) {
565 for(k=0; k < result->
nn_dof[j]; k++) {
581 int n_elem, FILE *fp) {
607 for(i=0; i < n_elem; i++) {
614 for(k=0; k < result->
ne_dof[j]; k++) {
630 int n_node,
int n_elem,
char *header,
631 char *comment, FILE *fp) {
634 if(bin_output_result_header_ST(result, header, fp)) {
638 if(bin_output_result_global_ST(result, comment, fp)) {
642 if(bin_output_result_dataheader_ST(result, n_node, n_elem, fp)) {
645 if(bin_output_result_node_ST(result, n_node, fp)) {
648 if(bin_output_result_elem_ST(result, n_elem, fp)) {
659 int n_node,
int n_elem,
char *header,
char *comment) {
670 if ((fp = fopen(filename,
"wb")) ==
NULL) {
677 if (write_bin_header(fp))
goto error;
678 if (bin_output_result_data_ST(result, n_node, n_elem, header, comment, fp))
goto error;
707 ptr = strtok(Line_Buf,
" ");
708 sprintf(Line_Buf,
"%s",
ptr);
790 for(k=0; k < result->
ng_dof[j]; k++) {
810 int *n_node,
int *n_elem, FILE *fp) {
831 static int bin_input_result_node(
struct hecmwST_result_data *result,
int n_node, FILE *fp) {
887 for(i=0; i < n_node; i++) {
893 for(k=0; k < result->
nn_dof[j]; k++) {
908 static int bin_input_result_elem(
struct hecmwST_result_data *result,
int n_elem, FILE *fp) {
964 for(i=0; i < n_elem; i++) {
970 for(k=0; k < result->
ne_dof[j]; k++) {
997 if(bin_input_result_header(result, fp)) {
1002 if(bin_input_result_global(result, fp)) {
1006 if(bin_input_result_dataheader(result, &n_node, &n_elem, fp)) {
1012 if(bin_input_result_node(result, n_node, fp)) {
1016 if(bin_input_result_elem(result, n_elem, fp)) {
1031 if((fp = fopen(filename,
"rb")) ==
NULL) {
1038 if(!check_bin_header(fp)) {
1043 result = bin_input_result_data(fp);
1044 if(result ==
NULL) {
void hecmw_set_endian_info(void)
int hecmw_write_bin(FILE *fp, const char *fmt,...)
int hecmw_read_bin(FILE *fp, const char *fmt,...)
int HECMW_ctrl_is_subdir(void)
int HECMW_ctrl_make_subdir(char *filename)
int HECMW_set_error(int errorno, const char *fmt,...)
#define HECMW_calloc(nmemb, size)
#define HECMW_malloc(size)
char * HECMW_strmsg(int msgno)
int HECMW_result_io_count_ng_comp(void)
int HECMW_result_io_count_ne_comp(void)
int HECMW_result_io_count_nn_comp(void)
struct hecmwST_result_io_data ResIO
#define HECMW_RESULT_FILEVER_MINOR
#define HECMW_RESULT_FILEVER_MAJOR
int HECMW_result_io_bin_judge_file(char *filename)
struct hecmwST_result_data * HECMW_result_io_bin_read_by_fname(char *filename)
int HECMW_result_io_bin_write_ST_by_fname(char *filename, struct hecmwST_result_data *result, int n_node, int n_elem, char *header, char *comment)
int HECMW_result_io_bin_write_by_fname(char *filename)
#define HECMW_assert(cond)
char comment_line[HECMW_MSG_LEN+1]
struct result_list * global_list
struct result_list * node_list
char head[HECMW_HEADER_LEN+1]
struct result_list * elem_list
struct result_list * next