-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathcreate_from_cdl.c
More file actions
229 lines (188 loc) · 6.91 KB
/
create_from_cdl.c
File metadata and controls
229 lines (188 loc) · 6.91 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
* Copyright (C) 2025, Northwestern University and Argonne National Laboratory
* See COPYRIGHT notice in top-level directory.
*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* This example program reads the header of a text file in CDL format and
* creates a new netCDF file with the same metadata.
*
* The compile and run commands are given below.
*
* % mpicc -g -o create_from_cdl create_from_cdl.c -lpnetcdf
*
* % mpiexec -n 4 create_from_cdl -i cdl_header.txt -o testfile.nc
*
* File header of the newly created file, testfile.nc, should be the same as
* the input CDL file, except for the number of records (i.e. dimension
* NC_UNLIMITED). This fact can be verified by running 'ncmpidump/ncdump'
* utility with command-line option '-h'.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h> /* getopt() */
#include <libgen.h> /* basename() */
#include <mpi.h>
#include <pnetcdf.h>
static int verbose;
#define CHECK_ERR { \
if (err != NC_NOERR) { \
printf("Error at %s:%d : %s\n", __FILE__,__LINE__, \
ncmpi_strerror(err)); \
nerrs++; \
} \
}
/*----< pnetcdf_check_mem_usage() >------------------------------------------*/
/* check PnetCDF library internal memory usage */
static int
pnetcdf_check_mem_usage(MPI_Comm comm)
{
int err, nerrs=0, rank;
MPI_Offset malloc_size, sum_size;
MPI_Comm_rank(comm, &rank);
/* print info about PnetCDF internal malloc usage */
err = ncmpi_inq_malloc_max_size(&malloc_size);
if (err == NC_NOERR) {
MPI_Reduce(&malloc_size, &sum_size, 1, MPI_OFFSET, MPI_SUM, 0, MPI_COMM_WORLD);
if (rank == 0 && verbose)
printf("maximum heap memory allocated by PnetCDF internally is %lld bytes\n",
sum_size);
/* check if there is any PnetCDF internal malloc residue */
err = ncmpi_inq_malloc_size(&malloc_size);
MPI_Reduce(&malloc_size, &sum_size, 1, MPI_OFFSET, MPI_SUM, 0, MPI_COMM_WORLD);
if (rank == 0 && sum_size > 0)
printf("heap memory allocated by PnetCDF internally has %lld bytes yet to be freed\n",
sum_size);
}
else if (err != NC_ENOTENABLED) {
printf("Error at %s:%d: %s\n", __FILE__,__LINE__,ncmpi_strerror(err));
nerrs++;
}
return nerrs;
}
/*----< usage() >------------------------------------------------------------*/
static void usage (char *argv0) {
char *help = "Usage: %s [OPTION] FILE\n\
[-h] Print this help message\n\
[-v] Verbose mode\n\
[-o path] Output netCDF file path\n\
FILE: Input CDL file path (required)\n";
fprintf (stderr, help, argv0);
}
/*----< main() >-------------------------------------------------------------*/
int main(int argc, char **argv)
{
extern int optind;
char *outfile, *infile, *name;
int i, j, rank, err=0, nerrs=0, hid;
int ncid, cmode, format, ndims, nvars, nattrs;
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
verbose = 1;
infile = NULL;
outfile = NULL;
/* get command-line arguments */
while ((i = getopt(argc, argv, "hqo:")) != EOF)
switch(i) {
case 'q': verbose = 0;
break;
case 'o': outfile = strdup(optarg);
break;
case 'h':
default: if (rank==0) usage(argv[0]);
MPI_Finalize();
return 1;
}
if (outfile == NULL) outfile = strdup("testfile.nc");
if (argv[optind] == NULL) {
if (rank == 0) usage(argv[0]);
MPI_Finalize();
return 1;
}
infile = strdup(argv[optind]);
/* read and parse the input CDL header file */
err = cdl_hdr_open(infile, &hid);
if (err != NC_NOERR) exit(1);
/* obtain file format version */
err = cdl_hdr_inq_format(hid, &format);
CHECK_ERR
/* create a new netcdf file */
cmode = NC_CLOBBER;
if (format == 2) cmode |= NC_64BIT_OFFSET;
else if (format == 5) cmode |= NC_64BIT_DATA;
err = ncmpi_create(MPI_COMM_WORLD, outfile, cmode, MPI_INFO_NULL, &ncid);
CHECK_ERR
/* retrieve the number of dimensions defined in the CDL file */
err = cdl_hdr_inq_ndims(hid, &ndims);
CHECK_ERR
if (verbose) printf("Number of dimensions : %d\n", ndims);
for (i=0; i<ndims; i++) {
int dimid;
MPI_Offset dimlen;
/* retrieve metadata of dimension i */
err = cdl_hdr_inq_dim(hid, i, &name, &dimlen);
CHECK_ERR
/* define a new dimension in the new file */
err = ncmpi_def_dim(ncid, name, dimlen, &dimid);
CHECK_ERR
}
/* retrieve number of variables defined in the CDL file */
err = cdl_hdr_inq_nvars(hid, &nvars);
CHECK_ERR
if (verbose) printf("Number of variables : %d\n", nvars);
for (i=0; i<nvars; i++) {
int varid, *dimids;
nc_type xtype;
/* retrieve metadata of variable i defined in the CDL file */
err = cdl_hdr_inq_var(hid, i, &name, &xtype, &ndims, &dimids);
CHECK_ERR
/* define a new variable in the new file */
err = ncmpi_def_var(ncid, name, xtype, ndims, dimids, &varid);
CHECK_ERR
/* fill with default fill value */
err = ncmpi_def_var_fill(ncid, varid, 0, NULL);
CHECK_ERR
/* retrieve metadata of attribute j associated with variable i */
err = cdl_hdr_inq_nattrs(hid, i, &nattrs);
CHECK_ERR
for (j=0; j<nattrs; j++) {
void *value;
MPI_Offset nelems;
/* retrieve metadata of attribute j associated with variable i */
err = cdl_hdr_inq_attr(hid, i, j, &name, &xtype, &nelems, &value);
CHECK_ERR
/* define a new attribute and associate it to variable, varid */
err = ncmpi_put_att(ncid, varid, name, xtype, nelems, value);
CHECK_ERR
}
}
/* retrieve the number of global attributes */
err = cdl_hdr_inq_nattrs(hid, NC_GLOBAL, &nattrs);
CHECK_ERR
if (verbose) printf("Number of global attributes: %d\n", nattrs);
for (i=0; i<nattrs; i++) {
void *value;
nc_type xtype;
MPI_Offset nelems;
/* retrieve metadata of global attribute i */
err = cdl_hdr_inq_attr(hid, NC_GLOBAL, i, &name, &xtype, &nelems,
&value);
CHECK_ERR
/* define a global attribute in the new file */
err = ncmpi_put_att(ncid, NC_GLOBAL, name, xtype, nelems, value);
CHECK_ERR
}
/* close the NetCDF file */
err = ncmpi_close(ncid);
CHECK_ERR
/* close the CDL file */
err = cdl_hdr_close(hid);
CHECK_ERR
if (infile != NULL) free(infile);
if (outfile != NULL) free(outfile);
nerrs += pnetcdf_check_mem_usage(MPI_COMM_WORLD);
MPI_Finalize();
return (nerrs > 0);
}