g2cfile.c(3) | Library Functions Manual | g2cfile.c(3) |
g2cfile.c - File functions for the g2c library.
#include 'grib2_int.h'
#define BYTES_TO_DISCIPLINE 6
Number of bytes to discipline field in GRIB2 message. #define
G2C_SEEKMSG_BUFSIZE 4092
Size of buffer used in g2c_seekmsg(). #define MIN(a, b) ((a)
< (b) ? (a) : (b))
Find a minimum. #define READ_BUF_SIZE 4092
Default size of read-buffer.
int add_msg (G2C_FILE_INFO_T *file, int msg_num,
size_t bytes_to_msg, size_t bytes_in_msg, int read_file,
G2C_MESSAGE_INFO_T **msg)
Add new message to linked list. int add_section (FILE *f,
G2C_MESSAGE_INFO_T *msg, int sec_id, unsigned int sec_len, size_t
bytes_to_sec, unsigned char sec_num)
Add metadata about a new section 3, 4, 5, 6, or 7. static int
determine_dims (G2C_SECTION_INFO_T *sec)
Determine the dimension information from the section 3 metadata. static int
find_available_g2cid (int *g2cid)
Find a g2cid to use for a newly opened or created file. static int
free_metadata (int g2cid)
Free resources holding the file metadata. int g2c_add_file (const char
*path, int mode, int *g2cid)
Open a GRIB2 file and add it to the list of open files. int g2c_close
(int g2cid)
Close a GRIB2 file, freeing resources. int g2c_find_msg2 (int g2cid,
size_t skip_bytes, size_t max_bytes, size_t *bytes_to_msg, size_t
*bytes_in_msg)
Search a file for the next GRIB1 or GRIB2 message. int g2c_get_msg (int
g2cid, size_t skip_bytes, size_t max_bytes, size_t *bytes_to_msg, size_t
*bytes_in_msg, unsigned char **cbuf)
Search a file for the next GRIB1 or GRIB2 message, and read it, allocating
space in memory to hold the message. int g2c_open (const char *path,
int mode, int *g2cid)
Open an existing GRIB2 file. int g2c_rw_section1_metadata (FILE *f, int
rw_flag, G2C_MESSAGE_INFO_T *msg)
Read Section 1. int g2c_rw_section3_metadata (FILE *f, int rw_flag,
G2C_SECTION_INFO_T *sec)
Read the metadata from section 3 (Grid Definition Section) of a GRIB2 message.
int g2c_rw_section4_metadata (FILE *f, int rw_flag,
G2C_SECTION_INFO_T *sec)
Read or write the metadata from section 4 (Product Definition Section) of a
GRIB2 message. int g2c_rw_section5_metadata (FILE *f, int rw_flag,
G2C_SECTION_INFO_T *sec)
Read or write the metadata from section 5 (Data Representation Section) of a
GRIB2 message. int g2c_rw_section6_metadata (FILE *f, int rw_flag,
G2C_SECTION_INFO_T *sec)
Read or write the metadata from section 6 (Data Representation Section) of a
GRIB2 message. int g2c_seekmsg (int g2cid, size_t skip, size_t
*offset, size_t *msglen)
Search a file for the next GRIB2 Message. MUTEX (m)
Define mutex for thread-safety. static int read_metadata (int g2cid)
Read metadata from a GRIB2 file being opened with g2c_open(). static
int read_msg_metadata (G2C_MESSAGE_INFO_T *msg)
Read the file to get metadata about a message.
G2C_FILE_INFO_T g2c_file [G2C_MAX_FILES+1]
Global file information. int g2c_next_g2cid = 1
Next g2cid file ID - used when opening or creating a file.
File functions for the g2c library.
Author
Date
Definition in file g2cfile.c.
Number of bytes to discipline field in GRIB2 message.
Definition at line 22 of file g2cfile.c.
Size of buffer used in g2c_seekmsg().
Definition at line 27 of file g2cfile.c.
Find a minimum.
Definition at line 16 of file g2cfile.c.
Default size of read-buffer.
Definition at line 19 of file g2cfile.c.
Add new message to linked list.
Parameters
Returns
Author
Date
Definition at line 1017 of file g2cfile.c.
References g2c_message_info::bytes_in_msg, g2c_message_info::bytes_to_msg, g2c_message_info::file, G2C_ENOMEM, G2C_NOERROR, LOG, g2c_file_info::msg, g2c_message_info::msg_num, g2c_message_info::next, g2c_file_info::num_messages, and read_msg_metadata().
Referenced by g2c_open_index(), and read_metadata().
Add metadata about a new section 3, 4, 5, 6, or 7.
Parameters
Returns
Author
Date
Definition at line 794 of file g2cfile.c.
References g2c_section_info::bytes_to_sec, G2C_EBADSECTION, G2C_ENOMEM, G2C_FILE_READ, G2C_NOERROR, g2c_rw_section3_metadata(), g2c_rw_section4_metadata(), g2c_rw_section5_metadata(), g2c_rw_section6_metadata(), LOG, g2c_section_info::msg, g2c_section_info::next, g2c_message_info::num_local, g2c_section_info::prev, g2c_message_info::sec, g2c_section_info::sec_id, g2c_section_info::sec_len, and g2c_section_info::sec_num.
Referenced by g2c_open_index(), and read_msg_metadata().
Determine the dimension information from the section 3 metadata. See (GRIB2 - SECTION 3 GRID DEFINITION SECTION)[https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_sect3.shtml].
For a list of grid definitions see [GRIB2 - TABLE 3.1 Grid Definition Template Number](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table3-1.shtml).
Parameters
Returns
Author
Date
Definition at line 415 of file g2cfile.c.
References g2c_section3_info::dim, G2C_ENOMEM, G2C_MAX_NAME, G2C_NOERROR, g2c_section3_info::grid_def, LATITUDE, g2c_dim_info::len, LOG, LONGITUDE, g2c_dim_info::name, g2c_section_info::sec_info, g2c_section_info::template, and g2c_dim_info::value.
Referenced by g2c_rw_section3_metadata().
Find a g2cid to use for a newly opened or created file.
Parameters
Returns
Author
Definition at line 363 of file g2cfile.c.
References G2C_EINVAL, G2C_ETOOMANYFILES, g2c_file, G2C_MAX_FILES, g2c_next_g2cid, and G2C_NOERROR.
Referenced by g2c_add_file().
Free resources holding the file metadata.
Parameters
Returns
Author
Date
Definition at line 1304 of file g2cfile.c.
References G2C_EBADID, g2c_file, G2C_MAX_FILES, G2C_NOERROR, LOG, g2c_file_info::msg, g2c_message_info::next, g2c_section_info::next, g2c_message_info::sec, g2c_section_info::sec_info, g2c_section_info::sec_num, and g2c_section_info::template.
Referenced by g2c_close().
Open a GRIB2 file and add it to the list of open files.
Parameters
Returns
Author
Date
Definition at line 1143 of file g2cfile.c.
References find_available_g2cid(), G2C_EFILE, G2C_EINVAL, G2C_ENAMETOOLONG, g2c_file, G2C_MAX_NAME, G2C_NOERROR, G2C_WRITE, g2c_file_info::g2cid, LOG, g2c_file_info::msg, and g2c_file_info::num_messages.
Referenced by g2c_open(), and g2c_open_index().
Close a GRIB2 file, freeing resources.
Parameters
Returns
Author
Date
Definition at line 1367 of file g2cfile.c.
References g2c_file_info::f, free_metadata(), G2C_EBADID, G2C_EFILE, g2c_file, G2C_MAX_FILES, G2C_NOERROR, g2c_file_info::g2cid, LOG, MUTEX_LOCK, MUTEX_UNLOCK, g2c_file_info::num_messages, and g2c_file_info::path.
Referenced by main().
Search a file for the next GRIB1 or GRIB2 message. A grib message is identified by its indicator section, i.e. an 8-byte sequence with 'GRIB' in bytes 1-4 and a '1' or '2' in byte 8. If found, the length of the message is decoded from bytes 5-7. The search is done over a given section of the file. The search is terminated if an eof or i/o error is encountered.
Parameters
Returns
Author
Date
Definition at line 164 of file g2cfile.c.
References G2C_EBADID, G2C_EFILE, G2C_EINVAL, G2C_EMSG, G2C_ENOMEM, G2C_ERROR, g2c_file, G2C_MAGIC_HEADER_LEN, G2C_NOERROR, LOG, MIN, and READ_BUF_SIZE.
Search a file for the next GRIB1 or GRIB2 message, and read it, allocating space in memory to hold the message. A grib message is identified by its indicator section, i.e. an 8-byte sequence with 'GRIB' in bytes 1-4 and a '1' or '2' in byte 8. If found, the length of the message is decoded from bytes 5-7. The search is done over a given section of the file. The search is terminated if an EOF or I/O error is encountered.
Parameters
Returns
Author
Date
Definition at line 291 of file g2cfile.c.
References G2C_EBADID, G2C_EFILE, G2C_EINVAL, G2C_ENOMEM, G2C_ENOMSG, G2C_ERROR, g2c_file, G2C_MIN_MAX_BYTES, G2C_NOERROR, LOG, and seekgb().
Open an existing GRIB2 file. This function opens the GRIB2 file and reads its metadata.
GRIB2 messages in the file are assigned a message ID, starting with 0 for the first message in the file.
Each product within a message is assigned a product ID, starting with 0 for the first product in the message.
Files opened with this function should be closed with a call g2c_close() to release resources.
Parameters
Returns
Author
Date
Definition at line 1201 of file g2cfile.c.
References g2c_add_file(), LOG, MUTEX_LOCK, MUTEX_UNLOCK, and read_metadata().
Referenced by main().
Read Section 1.
Parameters
Returns
Author
Date
Definition at line 874 of file g2cfile.c.
References g2c_message_info::center, g2c_message_info::day, G2C_ENOSECTION, g2c_file_io_short(), g2c_file_io_ubyte(), g2c_file_io_uint(), G2C_NOERROR, G2C_SECTION1_BYTES, g2c_message_info::hour, g2c_message_info::local_version, LOG, g2c_message_info::master_version, g2c_message_info::minute, g2c_message_info::month, g2c_message_info::sec1_len, g2c_message_info::second, g2c_message_info::sig_ref_time, g2c_message_info::status, g2c_message_info::subcenter, g2c_message_info::type, and g2c_message_info::year.
Referenced by g2c_open_index(), g2c_write_index(), and read_msg_metadata().
Read the metadata from section 3 (Grid Definition Section) of a GRIB2 message. When this function is called, the file cursor is positioned just after the section number field in the section. The size of the section, and the section number, have already been read when this function is called.
Parameters
Returns
Author
Date
Definition at line 478 of file g2cfile.c.
References determine_dims(), G2C_EINVAL, G2C_ENOMEM, g2c_file_io_template(), g2c_file_io_ubyte(), g2c_file_io_uint(), g2c_file_io_ushort(), g2c_get_grid_template(), G2C_MAX_GDS_TEMPLATE_MAPLEN, G2C_NOERROR, g2c_section3_info::grid_def, g2c_section3_info::interp_list, LOG, g2c_section3_info::num_data_points, g2c_section3_info::num_opt, g2c_section_info::sec_info, g2c_section_info::sec_num, g2c_section3_info::source_grid_def, g2c_section_info::template, and g2c_section_info::template_len.
Referenced by add_section(), and g2c_write_index().
Read or write the metadata from section 4 (Product Definition Section) of a GRIB2 message. When this function is called, the file cursor is positioned just after the section number field in the section. The size of the section, and the section number, have already been read/written when this function is called.
Parameters
Returns
Author
Date
Definition at line 574 of file g2cfile.c.
References G2C_EINVAL, G2C_ENOMEM, g2c_file_io_template(), g2c_file_io_ushort(), g2c_get_pds_template(), G2C_MAX_PDS_TEMPLATE_MAPLEN, G2C_NOERROR, LOG, g2c_section_info::msg, g2c_section4_info::num_coord, g2c_message_info::num_fields, g2c_section4_info::prod_def, g2c_section_info::sec_info, g2c_section_info::sec_num, g2c_section_info::template, and g2c_section_info::template_len.
Referenced by add_section(), and g2c_write_index().
Read or write the metadata from section 5 (Data Representation Section) of a GRIB2 message. When this function is called, the file cursor is positioned just after the section number field in the section. The size of the section, and the section number, have already been read when this function is called.
Parameters
Returns
Author
Date
Definition at line 663 of file g2cfile.c.
References g2c_section5_info::data_def, G2C_EINVAL, G2C_ENOMEM, g2c_file_io_template(), g2c_file_io_uint(), g2c_file_io_ushort(), g2c_get_drs_template(), G2C_MAX_PDS_TEMPLATE_MAPLEN, G2C_NOERROR, LOG, g2c_section5_info::num_data_points, g2c_section_info::sec_info, g2c_section_info::template, and g2c_section_info::template_len.
Referenced by add_section(), and g2c_write_index().
Read or write the metadata from section 6 (Data Representation Section) of a GRIB2 message. When this function is called, the file cursor is positioned just after the section number field in the section. The size of the section, and the section number, have already been read when this function is called.
Parameters
Returns
Author
Date
Definition at line 745 of file g2cfile.c.
References G2C_EINVAL, G2C_ENOMEM, g2c_file_io_ubyte(), G2C_NOERROR, g2c_section6_info::indicator, LOG, and g2c_section_info::sec_info.
Referenced by add_section().
Search a file for the next GRIB2 Message. The search is terminated when a GRIB2 message is found, or the end of the file is reached.
Parameters
Returns
Author
Date
Definition at line 56 of file g2cfile.c.
References G2C_EBADID, G2C_EFILE, G2C_ENOMEM, g2c_file, G2C_MAGIC_HEADER, G2C_NOERROR, G2C_SEEKMSG_BUFSIZE, hton64, and LOG.
Referenced by read_metadata().
Define mutex for thread-safety.
Read metadata from a GRIB2 file being opened with g2c_open().
Parameters
Returns
Author
Date
Definition at line 1079 of file g2cfile.c.
References add_msg(), G2C_EBADID, G2C_ENOMSG, g2c_file, g2c_log_file(), G2C_NOERROR, g2c_seekmsg(), and LOG.
Referenced by g2c_open().
Read the file to get metadata about a message.
Parameters
Returns
Author
Date
Definition at line 937 of file g2cfile.c.
References add_section(), BYTES_TO_DISCIPLINE, g2c_message_info::bytes_to_msg, g2c_message_info::discipline, g2c_file_info::f, g2c_message_info::file, FOUR_BYTES, G2C_EBADSECTION, G2C_EFILE, g2c_file_io_ubyte(), g2c_file_io_uint(), G2C_FILE_READ, G2C_NOERROR, g2c_rw_section1_metadata(), G2C_SECTION0_BYTES, LOG, ONE_BYTE, and g2c_message_info::sec1_len.
Referenced by add_msg().
Global file information.
Definition at line 10 of file g2cfile.c.
Referenced by find_available_g2cid(), free_metadata(), g2c_add_file(), g2c_close(), g2c_compare(), g2c_degrib2(), g2c_find_msg2(), g2c_get_msg(), g2c_get_prod(), g2c_inq(), g2c_inq_dim(), g2c_inq_msg(), g2c_inq_msg_time(), g2c_inq_prod(), g2c_log_file(), g2c_open_index(), g2c_seekmsg(), g2c_write_index(), and read_metadata().
Next g2cid file ID - used when opening or creating a file.
Definition at line 13 of file g2cfile.c.
Referenced by find_available_g2cid().
Generated automatically by Doxygen for NCEPLIBS-g2c from the source code.
Version 2.1.0 | NCEPLIBS-g2c |