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') {
408 memcpy(head, tmp,
sizeof(head));
421 char *comment, FILE *fp) {
427 if(comment ==
NULL) {
428 comment_line[0] =
'\0';
433 while(len <
sizeof(comment_line)-1 && *p && *p !=
'\n') {
490 for(k=0; k < result->
ng_dof[j]; k++) {
512 int n_node,
int n_elem, FILE *fp) {
534 int n_node, FILE *fp) {
560 for(i=0; i < n_node; i++) {
567 for(k=0; k < result->
nn_dof[j]; k++) {
583 int n_elem, FILE *fp) {
609 for(i=0; i < n_elem; i++) {
616 for(k=0; k < result->
ne_dof[j]; k++) {
632 int n_node,
int n_elem,
char *header,
633 char *comment, FILE *fp) {
636 if(bin_output_result_header_ST(result, header, fp)) {
640 if(bin_output_result_global_ST(result, comment, fp)) {
644 if(bin_output_result_dataheader_ST(result, n_node, n_elem, fp)) {
647 if(bin_output_result_node_ST(result, n_node, fp)) {
650 if(bin_output_result_elem_ST(result, n_elem, fp)) {
661 int n_node,
int n_elem,
char *header,
char *comment) {
672 if ((fp = fopen(filename,
"wb")) ==
NULL) {
679 if (write_bin_header(fp))
goto error;
680 if (bin_output_result_data_ST(result, n_node, n_elem, header, comment, fp))
goto error;
709 ptr = strtok(Line_Buf,
" ");
710 if(
ptr != Line_Buf) {
711 size_t len = strlen(
ptr);
712 memmove(Line_Buf,
ptr, len + 1);
797 for(k=0; k < result->
ng_dof[j]; k++) {
817 int *n_node,
int *n_elem, FILE *fp) {
838 static int bin_input_result_node(
struct hecmwST_result_data *result,
int n_node, FILE *fp) {
894 for(i=0; i < n_node; i++) {
900 for(k=0; k < result->
nn_dof[j]; k++) {
915 static int bin_input_result_elem(
struct hecmwST_result_data *result,
int n_elem, FILE *fp) {
971 for(i=0; i < n_elem; i++) {
977 for(k=0; k < result->
ne_dof[j]; k++) {
1004 if(bin_input_result_header(result, fp)) {
1009 if(bin_input_result_global(result, fp)) {
1013 if(bin_input_result_dataheader(result, &n_node, &n_elem, fp)) {
1019 if(bin_input_result_node(result, n_node, fp)) {
1023 if(bin_input_result_elem(result, n_elem, fp)) {
1038 if((fp = fopen(filename,
"rb")) ==
NULL) {
1045 if(!check_bin_header(fp)) {
1050 result = bin_input_result_data(fp);
1051 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