Freeciv-3.2
Loading...
Searching...
No Matches
section_file.h
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13#ifndef FC__SECTION_FILE_H
14#define FC__SECTION_FILE_H
15
16/* This header contains internals of section_file that its users should
17 * not care about. This header should be included by source files implementing
18 * registry itself. */
19
20#ifdef __cplusplus
21extern "C" {
22#endif /* __cplusplus */
23
24/* utility */
25#include "support.h"
26
27/* Section structure. */
28struct section {
29 struct section_file *secfile; /* Parent structure. */
31 char *name; /* Name of the section. */
32 struct entry_list *entries; /* The list of the children. */
33};
34
35/* The section file struct itself. */
37 char *name; /* Can be NULL. */
39 /* num_includes should be size_t, but as there's no truly portable
40 * printf format for size_t and we need to construct string containing
41 * num_includes with fc_snprintf(), we set for unsigned int. */
42 unsigned int num_includes;
43 unsigned int num_long_comments;
47 struct {
51};
52
53void secfile_log(const struct section_file *secfile,
54 const struct section *psection,
55 const char *file, const char *function, int line,
56 const char *format, ...)
58
59#define SECFILE_LOG(secfile, psection, format, ...) \
60 secfile_log(secfile, psection, __FILE__, __FUNCTION__, __FC_LINE__, \
61 format, ## __VA_ARGS__)
62#define SECFILE_RETURN_IF_FAIL(secfile, psection, condition) \
63 if (!(condition)) { \
64 SECFILE_LOG(secfile, psection, "Assertion '%s' failed.", #condition); \
65 return; \
66 }
67#define SECFILE_RETURN_VAL_IF_FAIL(secfile, psection, condition, value) \
68 if (!(condition)) { \
69 SECFILE_LOG(secfile, psection, "Assertion '%s' failed.", #condition); \
70 return value; \
71 }
72
73#define SPECHASH_TAG section
74#define SPECHASH_CSTR_KEY_TYPE
75#define SPECHASH_IDATA_TYPE struct section *
76#include "spechash.h"
77
78#define SPECHASH_TAG entry
79#define SPECHASH_ASTR_KEY_TYPE
80#define SPECHASH_IDATA_TYPE struct entry *
81#include "spechash.h"
82
83bool entry_from_token(struct section *psection, const char *name,
84 const char *tok);
85
86#ifdef __cplusplus
87}
88#endif /* __cplusplus */
89
90#endif /* FC__SECTION_FILE_H */
char * incite_cost
Definition comments.c:75
const char * name
Definition inputfile.c:127
entry_special_type
bool entry_from_token(struct section *psection, const char *name, const char *tok)
void secfile_log(const struct section_file *secfile, const struct section *psection, const char *file, const char *function, int line, const char *format,...) fc__attribute((__format__(__printf__
struct entry_hash * entries
struct section_file::@8 hash
struct section_list * sections
bool allow_digital_boolean
bool allow_duplicates
struct section_hash * sections
unsigned int num_includes
unsigned int num_long_comments
size_t num_entries
struct entry_list * entries
char * name
enum entry_special_type special
struct section_file * secfile
#define fc__attribute(x)
Definition support.h:99