mirror of https://github.com/ecmwf/eccodes.git
157 lines
5.0 KiB
C
157 lines
5.0 KiB
C
/*
|
|
* (C) Copyright 2005- ECMWF.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/***************************************************************************
|
|
* Jean Baptiste Filippi - 01.11.2005 *
|
|
* *
|
|
***************************************************************************/
|
|
#include "grib_api_internal.h"
|
|
/*
|
|
This is used by make_class.pl
|
|
|
|
START_CLASS_DEF
|
|
CLASS = action
|
|
IMPLEMENTS = create_accessor
|
|
IMPLEMENTS = dump
|
|
IMPLEMENTS = destroy; xref
|
|
MEMBERS = char* the_old
|
|
MEMBERS = char* the_new
|
|
END_CLASS_DEF
|
|
|
|
*/
|
|
|
|
/* START_CLASS_IMP */
|
|
|
|
/*
|
|
|
|
Don't edit anything between START_CLASS_IMP and END_CLASS_IMP
|
|
Instead edit values between START_CLASS_DEF and END_CLASS_DEF
|
|
or edit "action.class" and rerun ./make_class.pl
|
|
|
|
*/
|
|
|
|
static void init_class(grib_action_class*);
|
|
static void dump(grib_action* d, FILE*, int);
|
|
static void xref(grib_action* d, FILE* f, const char* path);
|
|
static void destroy(grib_context*, grib_action*);
|
|
static int create_accessor(grib_section*, grib_action*, grib_loader*);
|
|
|
|
|
|
typedef struct grib_action_rename
|
|
{
|
|
grib_action act;
|
|
/* Members defined in rename */
|
|
char* the_old;
|
|
char* the_new;
|
|
} grib_action_rename;
|
|
|
|
|
|
static grib_action_class _grib_action_class_rename = {
|
|
0, /* super */
|
|
"action_class_rename", /* name */
|
|
sizeof(grib_action_rename), /* size */
|
|
0, /* inited */
|
|
&init_class, /* init_class */
|
|
0, /* init */
|
|
&destroy, /* destroy */
|
|
|
|
&dump, /* dump */
|
|
&xref, /* xref */
|
|
|
|
&create_accessor, /* create_accessor*/
|
|
|
|
0, /* notify_change */
|
|
0, /* reparse */
|
|
0, /* execute */
|
|
};
|
|
|
|
grib_action_class* grib_action_class_rename = &_grib_action_class_rename;
|
|
|
|
static void init_class(grib_action_class* c)
|
|
{
|
|
}
|
|
/* END_CLASS_IMP */
|
|
|
|
grib_action* grib_action_create_rename(grib_context* context, char* the_old, char* the_new)
|
|
{
|
|
grib_action_rename* a = NULL;
|
|
grib_action_class* c = grib_action_class_rename;
|
|
grib_action* act = (grib_action*)grib_context_malloc_clear_persistent(context, c->size);
|
|
act->next = NULL;
|
|
act->name = grib_context_strdup_persistent(context, "RENAME");
|
|
act->op = grib_context_strdup_persistent(context, "rename");
|
|
act->cclass = c;
|
|
act->context = context;
|
|
a = (grib_action_rename*)act;
|
|
a->the_old = grib_context_strdup_persistent(context, the_old);
|
|
a->the_new = grib_context_strdup_persistent(context, the_new);
|
|
return act;
|
|
}
|
|
|
|
static void rename_accessor(grib_accessor* a, char* name)
|
|
{
|
|
int id;
|
|
char* the_old = (char*)a->all_names[0];
|
|
|
|
if (grib_handle_of_accessor(a)->use_trie && *(a->all_names[0]) != '_') {
|
|
id = grib_hash_keys_get_id(a->context->keys, a->all_names[0]);
|
|
grib_handle_of_accessor(a)->accessors[id] = NULL;
|
|
id = grib_hash_keys_get_id(a->context->keys, name);
|
|
grib_handle_of_accessor(a)->accessors[id] = a;
|
|
}
|
|
a->all_names[0] = grib_context_strdup_persistent(a->context, name);
|
|
a->name = a->all_names[0];
|
|
grib_context_log(a->context, GRIB_LOG_DEBUG, "Renaming %s to %s", the_old, name);
|
|
/* grib_context_free(a->context,the_old); */
|
|
}
|
|
|
|
static int create_accessor(grib_section* p, grib_action* act, grib_loader* h)
|
|
{
|
|
grib_action_rename* a = (grib_action_rename*)act;
|
|
grib_accessor* ga = NULL;
|
|
|
|
ga = grib_find_accessor(p->h, a->the_old);
|
|
|
|
if (ga) {
|
|
rename_accessor(ga, a->the_new);
|
|
}
|
|
else {
|
|
grib_context_log(act->context, GRIB_LOG_DEBUG, "Action_class_rename : create_accessor_buffer : No accessor named %s to rename ", a->the_old);
|
|
}
|
|
|
|
return GRIB_SUCCESS;
|
|
}
|
|
|
|
static void dump(grib_action* act, FILE* f, int lvl)
|
|
{
|
|
grib_action_rename* a = (grib_action_rename*)act;
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < lvl; i++)
|
|
grib_context_print(act->context, f, " ");
|
|
|
|
grib_context_print(act->context, f, "rename %s as %s in %s\n", a->the_old, act->name, a->the_new);
|
|
}
|
|
|
|
static void destroy(grib_context* context, grib_action* act)
|
|
{
|
|
grib_action_rename* a = (grib_action_rename*)act;
|
|
|
|
grib_context_free_persistent(context, a->the_old);
|
|
grib_context_free_persistent(context, a->the_new);
|
|
grib_context_free_persistent(context, act->name);
|
|
grib_context_free_persistent(context, act->op);
|
|
}
|
|
|
|
static void xref(grib_action* d, FILE* f, const char* path)
|
|
{
|
|
}
|