mirror of https://github.com/ecmwf/eccodes.git
update
This commit is contained in:
parent
c61b30137f
commit
9e41000e0c
|
@ -113,7 +113,8 @@ class Class:
|
||||||
|
|
||||||
self.self = None
|
self.self = None
|
||||||
self.a = None
|
self.a = None
|
||||||
self.includes = includes
|
self.header_includes = []
|
||||||
|
self.body_includes = includes
|
||||||
if SUPER:
|
if SUPER:
|
||||||
self.super, _ = self.tidy_class_name(SUPER[0])
|
self.super, _ = self.tidy_class_name(SUPER[0])
|
||||||
else:
|
else:
|
||||||
|
@ -180,7 +181,7 @@ class Class:
|
||||||
name=self.name,
|
name=self.name,
|
||||||
super=self.super,
|
super=self.super,
|
||||||
members=self.members,
|
members=self.members,
|
||||||
includes=self.includes,
|
includes=self.header_includes,
|
||||||
inherited_methods=self.inherited_methods,
|
inherited_methods=self.inherited_methods,
|
||||||
private_methods=self.private_methods,
|
private_methods=self.private_methods,
|
||||||
static_procs=self.static_procs,
|
static_procs=self.static_procs,
|
||||||
|
@ -188,6 +189,7 @@ class Class:
|
||||||
destructor=self.destructor,
|
destructor=self.destructor,
|
||||||
namespaces=self.namespaces,
|
namespaces=self.namespaces,
|
||||||
namespace_reversed=reversed(self.namespaces),
|
namespace_reversed=reversed(self.namespaces),
|
||||||
|
include_super="/".join(self.namespaces + [f"{self.super}.h"]),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -213,7 +215,7 @@ class Class:
|
||||||
name=self.name,
|
name=self.name,
|
||||||
super=self.super,
|
super=self.super,
|
||||||
members=self.members,
|
members=self.members,
|
||||||
includes=self.includes,
|
includes=self.body_includes,
|
||||||
inherited_methods=self.inherited_methods,
|
inherited_methods=self.inherited_methods,
|
||||||
private_methods=self.private_methods,
|
private_methods=self.private_methods,
|
||||||
static_procs=self.static_procs,
|
static_procs=self.static_procs,
|
||||||
|
@ -283,13 +285,12 @@ class Accessor(Class):
|
||||||
r"\bthis->offset\b": "this->offset_",
|
r"\bthis->offset\b": "this->offset_",
|
||||||
r"\bthis->flags\b": "this->flags_",
|
r"\bthis->flags\b": "this->flags_",
|
||||||
r"\bthis->context\b": "this->context_",
|
r"\bthis->context\b": "this->context_",
|
||||||
r"\bgrib_byte_offset\((\w+)\s*,": r"\1->pack_string(",
|
|
||||||
r"\bgrib_byte_offset\((\w+)\s*\)": r"\1->byte_offset()",
|
r"\bgrib_byte_offset\((\w+)\s*\)": r"\1->byte_offset()",
|
||||||
r"\bgrib_byte_count\((\w+)\s*\)": r"\1->byte_count()",
|
r"\bgrib_byte_count\((\w+)\s*\)": r"\1->byte_count()",
|
||||||
r"\bgrib_pack_string\((\w+)\s*,": r"\1->pack_string(",
|
r"\bgrib_pack_string\((\w+)\s*,": r"\1->pack_string(",
|
||||||
r'\bDebugAssert\b': 'ASSERT',
|
r"\bDebugAssert\b": "ASSERT",
|
||||||
r'\bAssert\b': 'ASSERT',
|
r"\bAssert\b": "ASSERT",
|
||||||
r'\bunpack_long\(this,': 'this->unpack_long(',
|
r"\bunpack_long\(this,": "this->unpack_long(",
|
||||||
}
|
}
|
||||||
|
|
||||||
def class_to_type(self):
|
def class_to_type(self):
|
||||||
|
@ -394,7 +395,7 @@ def make_class(path):
|
||||||
top_level[p] = [x for x in top_level_lines]
|
top_level[p] = [x for x in top_level_lines]
|
||||||
top_level_lines = []
|
top_level_lines = []
|
||||||
|
|
||||||
if p in definitions.get("IMPLEMENTS",[]):
|
if p in definitions.get("IMPLEMENTS", []):
|
||||||
in_proc = True
|
in_proc = True
|
||||||
proc = inherited_procs[p] = Method(p, m.group(1), m.group(3))
|
proc = inherited_procs[p] = Method(p, m.group(1), m.group(3))
|
||||||
depth = stripped_line.count("{") - stripped_line.count("}")
|
depth = stripped_line.count("{") - stripped_line.count("}")
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "{{ include_super }}"
|
||||||
|
|
||||||
{% for i in includes %}
|
{% for i in includes %}
|
||||||
#include {{ i }}
|
#include {{ i }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue