mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
bf2746b8ea
re: issue https://github.com/Unidata/netcdf-c/issues/1251 Assume that you have the URL to a remote dataset which is a normal netcdf-3 or netcdf-4 file. This PR allows the netcdf-c to read that dataset's contents as a netcdf file using HTTP byte ranges if the remote server supports byte-range access. Originally, this PR was set up to access Amazon S3 objects, but it can also access other remote datasets such as those provided by a Thredds server via the HTTPServer access protocol. It may also work for other kinds of servers. Note that this is not intended as a true production capability because, as is known, this kind of access to can be quite slow. In addition, the byte-range IO drivers do not currently do any sort of optimization or caching. An additional goal here is to gain some experience with the Amazon S3 REST protocol. This architecture and its use documented in the file docs/byterange.dox. There are currently two test cases: 1. nc_test/tst_s3raw.c - this does a simple open, check format, close cycle for a remote netcdf-3 file and a remote netcdf-4 file. 2. nc_test/test_s3raw.sh - this uses ncdump to investigate some remote datasets. This PR also incorporates significantly changed model inference code (see the superceded PR https://github.com/Unidata/netcdf-c/pull/1259). 1. It centralizes the code that infers the dispatcher. 2. It adds support for byte-range URLs Other changes: 1. NC_HDF5_finalize was not being properly called by nc_finalize(). 2. Fix minor bug in ncgen3.l 3. fix memory leak in nc4info.c 4. add code to walk the .daprc triples and to replace protocol= fragment tag with a more general mode= tag. Final Note: Th inference code is still way too complicated. We need to move to the validfile() model used by netcdf Java, where each dispatcher is asked if it can process the file. This decentralizes the inference code. This will be done after all the major new dispatchers (PIO, Zarr, etc) have been implemented.
68 lines
2.0 KiB
C
68 lines
2.0 KiB
C
/* Copyright 2018-2018 University Corporation for Atmospheric
|
|
Research/Unidata. */
|
|
|
|
/**
|
|
* Functions for inferring dataset model
|
|
* @author Dennis Heimbigner
|
|
*/
|
|
|
|
#ifndef NCINFERMODEL_H
|
|
#define NCINFERMODEL_H
|
|
|
|
/* Define the io handler to be used to do lowest level
|
|
access. This is above the libcurl level and below the
|
|
dispatcher level. This is only used for remote
|
|
datasets or for implementations where the implementation
|
|
multiplexes more than one IOSP in a single dispatcher.
|
|
*/
|
|
#define NC_IOSP_FILE (1)
|
|
#define NC_IOSP_MEMORY (2)
|
|
#define NC_IOSP_DAP2 (3)
|
|
#define NC_IOSP_DAP4 (4)
|
|
#define NC_IOSP_UDF (5) /*Placeholder since we do not know IOSP for UDF*/
|
|
#define NC_IOSP_HTTP (6)
|
|
|
|
/* Track the information hat will help us
|
|
infer how to access the data defined by
|
|
path + omode.
|
|
*/
|
|
typedef struct NCmodel {
|
|
int format; /* NC_FORMAT_XXX value */
|
|
int impl; /* NC_FORMATX_XXX value */
|
|
int iosp; /* NC_IOSP_XXX value (above) */
|
|
} NCmodel;
|
|
|
|
/* Keep compiler quiet */
|
|
struct NCURI;
|
|
struct NC_dispatch;
|
|
|
|
#if 0
|
|
/* return first IOSP or NULL if none */
|
|
EXTERNL int NC_urliosp(struct NCURI* u);
|
|
#endif
|
|
|
|
/* Infer model format and implementation */
|
|
EXTERNL int NC_infermodel(const char* path, int* omodep, int iscreate, int useparallel, void* params, NCmodel* model, char** newpathp);
|
|
|
|
/**
|
|
* Provide a hidden interface to allow utilities
|
|
* to check if a given path name is really a url.
|
|
* If not, put null in basenamep, else put basename of the url
|
|
* minus any extension into basenamep; caller frees.
|
|
* Return 1 if it looks like a url, 0 otherwise.
|
|
*/
|
|
EXTERNL int nc__testurl(const char* path, char** basenamep);
|
|
|
|
#if 0
|
|
/* allow access url parse and params without exposing nc_url.h */
|
|
EXTERNL int NCDAP_urlparse(const char* s, void** dapurl);
|
|
EXTERNL void NCDAP_urlfree(void* dapurl);
|
|
EXTERNL const char* NCDAP_urllookup(void* dapurl, const char* param);
|
|
|
|
/* Ping a specific server */
|
|
EXTERNL int NCDAP2_ping(const char*);
|
|
EXTERNL int NCDAP4_ping(const char*);
|
|
#endif
|
|
|
|
#endif /*NCINFERMODEL_H*/
|