eccodes/src/grib_templates.c

195 lines
4.3 KiB
C
Raw Normal View History

2013-03-25 12:04:10 +00:00
/*
2019-04-15 13:44:45 +00:00
* Copyright 2005-2019 ECMWF.
2013-03-25 12:04:10 +00:00
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
#include "grib_api_internal.h"
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
typedef struct grib_templates {
2015-12-22 17:55:45 +00:00
const char* name;
const unsigned char* data;
size_t size;
2013-03-25 12:04:10 +00:00
} grib_templates;
#if 1
#include "grib_templates.h"
#define NUMBER(x) (sizeof(x)/sizeof(x[0]))
grib_handle* grib_internal_template(grib_context* c,const char* name)
{
2015-12-22 17:55:45 +00:00
int i;
for(i = 0; i < NUMBER(templates); i++)
if(strcmp(name,templates[i].name) == 0)
return grib_handle_new_from_message_copy(c,templates[i].data,templates[i].size);
return NULL;
2013-03-25 12:04:10 +00:00
}
#else
grib_handle* grib_internal_template(grib_context* c,const char* name)
{
2015-12-22 17:55:45 +00:00
return NULL;
2013-03-25 12:04:10 +00:00
}
#endif
2016-06-19 08:22:15 +00:00
static grib_handle* try_template(grib_context* c,const char* dir,const char* name)
2013-03-25 12:04:10 +00:00
{
2015-12-22 17:55:45 +00:00
char path[1024];
grib_handle *g = NULL;
int err = 0;
2013-03-25 12:04:10 +00:00
2015-12-22 17:55:45 +00:00
sprintf(path,"%s/%s.tmpl",dir,name);
2013-03-25 12:04:10 +00:00
2015-12-22 17:55:45 +00:00
if (c->debug==-1) {
fprintf(stderr, "ECCODES DEBUG: try_template path='%s'\n", path);
2015-12-22 17:55:45 +00:00
}
2014-04-24 16:48:24 +00:00
2016-06-19 08:22:15 +00:00
if(codes_access(path,F_OK) == 0)
2013-03-25 12:04:10 +00:00
{
2016-06-19 08:22:15 +00:00
FILE* f = codes_fopen(path,"r");
2015-12-22 17:55:45 +00:00
if(!f)
{
grib_context_log(c,GRIB_LOG_PERROR,"cannot open %s",path);
return NULL;
}
g = grib_handle_new_from_file(c,f,&err);
if (!g) {
grib_context_log(c,GRIB_LOG_ERROR,"cannot create GRIB handle from %s",path);
}
fclose(f);
2014-04-24 16:48:24 +00:00
}
2013-03-25 12:04:10 +00:00
2015-12-22 17:55:45 +00:00
return g;
2013-03-25 12:04:10 +00:00
}
2016-07-19 10:52:55 +00:00
static grib_handle* try_bufr_template(grib_context* c,const char* dir,const char* name)
{
char path[1024];
grib_handle *g = NULL;
int err = 0;
sprintf(path,"%s/%s.tmpl",dir,name);
if (c->debug==-1) {
fprintf(stderr, "ECCODES DEBUG: try_template path='%s'\n", path);
2016-07-19 10:52:55 +00:00
}
if(codes_access(path,F_OK) == 0)
{
FILE* f = codes_fopen(path,"r");
if(!f)
{
grib_context_log(c,GRIB_LOG_PERROR,"cannot open %s",path);
return NULL;
}
g = codes_bufr_handle_new_from_file(c,f,&err);
if (!g) {
grib_context_log(c,GRIB_LOG_ERROR,"cannot create BUFR handle from %s",path);
}
fclose(f);
}
return g;
}
2013-03-25 12:04:10 +00:00
static char* try_template_path(grib_context* c,const char* dir,const char* name)
{
2015-12-22 17:55:45 +00:00
char path[1024];
2013-03-25 12:04:10 +00:00
2015-12-22 17:55:45 +00:00
sprintf(path,"%s/%s.tmpl",dir,name);
2013-03-25 12:04:10 +00:00
2016-06-19 08:22:15 +00:00
if(codes_access(path,R_OK) == 0)
2015-12-22 17:55:45 +00:00
{
return grib_context_strdup(c,path);
}
2013-03-25 12:04:10 +00:00
2015-12-22 17:55:45 +00:00
return NULL;
2013-03-25 12:04:10 +00:00
}
grib_handle* grib_external_template(grib_context* c,const char* name)
{
2015-12-22 17:55:45 +00:00
const char *base = c->grib_samples_path;
char buffer[1024];
char *p = buffer;
grib_handle *g = NULL;
if(!base) return NULL;
while(*base)
{
if(*base == ':')
{
*p = 0;
2016-06-19 08:22:15 +00:00
g = try_template(c,buffer,name);
2015-12-22 17:55:45 +00:00
if(g) return g;
p = buffer;
base++; /*advance past delimiter*/
}
*p++ = *base++;
}
*p = 0;
2016-06-19 08:22:15 +00:00
return g = try_template(c,buffer,name);
2013-03-25 12:04:10 +00:00
}
2016-07-19 10:52:55 +00:00
grib_handle* bufr_external_template(grib_context* c,const char* name)
{
const char *base = c->grib_samples_path;
char buffer[1024];
char *p = buffer;
grib_handle *g = NULL;
if(!base) return NULL;
while(*base)
{
if(*base == ':')
{
*p = 0;
g = try_bufr_template(c,buffer,name);
if(g) return g;
p = buffer;
base++; /*advance past delimiter*/
}
*p++ = *base++;
}
*p = 0;
g = try_bufr_template(c,buffer,name);
return g;
}
2013-03-25 12:04:10 +00:00
char* grib_external_template_path(grib_context* c,const char* name)
{
2015-12-22 17:55:45 +00:00
const char *base = c->grib_samples_path;
char buffer[1024];
char *p = buffer;
char *g = NULL;
if(!base) return NULL;
while(*base)
{
if(*base == ':')
{
*p = 0;
g = try_template_path(c,buffer,name);
if(g) return g;
p = buffer;
base++;
}
*p++ = *base++;
}
*p = 0;
return g = try_template_path(c,buffer,name);
2013-03-25 12:04:10 +00:00
}