File: c_clone.c

package info (click to toggle)
eccodes 2.44.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 150,248 kB
  • sloc: cpp: 163,056; ansic: 26,308; sh: 21,602; f90: 6,854; perl: 6,363; python: 5,087; java: 2,226; javascript: 1,427; yacc: 854; fortran: 543; lex: 359; makefile: 285; xml: 183; awk: 66
file content (59 lines) | stat: -rw-r--r-- 1,177 bytes parent folder | download | duplicates (4)
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
#include <stdio.h>

#include "grib_api.h"

void usage(char *app) {
	fprintf(stderr,"Usage is: %s input_file ouput_file \n",app); 
}

int main(int argc, char *argv[]) {
	FILE *in = NULL;
	FILE *out = NULL;

	grib_handle *source_handle = NULL;
	grib_handle *clone_handle = NULL;
	const void *buffer = NULL;
	size_t size = 0;
	int err = 0;

	/* check number of arguments */
	if (argc != 3) {
		usage(argv[0]);	
		return 1;
	}

	in = fopen(argv[1],"r");
	out = fopen(argv[2],"w");

	if (!in || !out) {
		perror("ERROR: unable to open input files");
		return 1;
	}

	/* loop over the messages in the source grib and clone them */
	while ((source_handle = grib_handle_new_from_file(0,in,&err))!=NULL) {
		clone_handle = grib_handle_clone(source_handle);

		if (clone_handle == NULL) {
			perror("ERROR: coult not clone field");
			return 1;
		}

		/* get the coded message in a buffer */
		GRIB_CHECK(grib_get_message(clone_handle,&buffer,&size),0);
		/* write the buffer to a file */
		if(fwrite(buffer,1,size,out) != size)
		{
			perror(argv[1]);
			return 1;
		}
	}

	grib_handle_delete(source_handle);
	grib_handle_delete(clone_handle);

	fclose(out);
	fclose(in);

	return 0;
}