summaryrefslogtreecommitdiff
path: root/libpeas/peas-version-macros.h
blob: 02755d64804915de88bcf0b81119df043d3d77fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * peas-version-macros.h
 * This file is part of libpeas
 *
 * libpeas is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * libpeas is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#pragma once

#if !defined (LIBPEAS_INSIDE) && !defined (LIBPEAS_COMPILATION)
# error "Only <libpeas.h> can be included directly."
#endif

#include <glib.h>

#include "peas-version.h"

#ifndef _PEAS_EXTERN
# define _PEAS_EXTERN extern
#endif

#ifdef PEAS_DISABLE_DEPRECATION_WARNINGS
# define PEAS_DEPRECATED _PEAS_EXTERN
# define PEAS_DEPRECATED_FOR(f) _PEAS_EXTERN
# define PEAS_UNAVAILABLE(maj,min) _PEAS_EXTERN
#else
# define PEAS_DEPRECATED G_DEPRECATED _PEAS_EXTERN
# define PEAS_DEPRECATED_FOR(f) G_DEPRECATED_FOR(f) _PEAS_EXTERN
# define PEAS_UNAVAILABLE(maj,min) G_UNAVAILABLE(maj,min) _PEAS_EXTERN
#endif

#define PEAS_VERSION_2_0 (G_ENCODE_VERSION (2, 0))

#if (PEAS_MINOR_VERSION == 99)
# define PEAS_VERSION_CUR_STABLE (G_ENCODE_VERSION (PEAS_MAJOR_VERSION + 1, 0))
#elif (PEAS_MINOR_VERSION % 2)
# define PEAS_VERSION_CUR_STABLE (G_ENCODE_VERSION (PEAS_MAJOR_VERSION, PEAS_MINOR_VERSION + 1))
#else
# define PEAS_VERSION_CUR_STABLE (G_ENCODE_VERSION (PEAS_MAJOR_VERSION, PEAS_MINOR_VERSION))
#endif

#if (PEAS_MINOR_VERSION == 99)
# define PEAS_VERSION_PREV_STABLE (G_ENCODE_VERSION (PEAS_MAJOR_VERSION + 1, 0))
#elif (PEAS_MINOR_VERSION % 2)
# define PEAS_VERSION_PREV_STABLE (G_ENCODE_VERSION (PEAS_MAJOR_VERSION, PEAS_MINOR_VERSION - 1))
#else
# define PEAS_VERSION_PREV_STABLE (G_ENCODE_VERSION (PEAS_MAJOR_VERSION, PEAS_MINOR_VERSION - 2))
#endif

/**
 * PEAS_VERSION_MIN_REQUIRED:
 *
 * A macro that should be defined by the user prior to including
 * the peas.h header.
 *
 * The definition should be one of the predefined PEAS version
 * macros: %PEAS_VERSION_2_0, ...
 *
 * This macro defines the lower bound for the Peas API to use.
 *
 * If a function has been deprecated in a newer version of Peas,
 * it is possible to use this symbol to avoid the compiler warnings
 * without disabling warning for every deprecated function.
 */
#ifndef PEAS_VERSION_MIN_REQUIRED
# define PEAS_VERSION_MIN_REQUIRED (PEAS_VERSION_CUR_STABLE)
#endif

/**
 * PEAS_VERSION_MAX_ALLOWED:
 *
 * A macro that should be defined by the user prior to including
 * the peas.h header.

 * The definition should be one of the predefined Peas version
 * macros: %PEAS_VERSION_1_0, %PEAS_VERSION_1_2,...
 *
 * This macro defines the upper bound for the PEAS API to use.
 *
 * If a function has been introduced in a newer version of Peas,
 * it is possible to use this symbol to get compiler warnings when
 * trying to use that function.
 */
#ifndef PEAS_VERSION_MAX_ALLOWED
# if PEAS_VERSION_MIN_REQUIRED > PEAS_VERSION_PREV_STABLE
#  define PEAS_VERSION_MAX_ALLOWED (PEAS_VERSION_MIN_REQUIRED)
# else
#  define PEAS_VERSION_MAX_ALLOWED (PEAS_VERSION_CUR_STABLE)
# endif
#endif

#if PEAS_VERSION_MAX_ALLOWED < PEAS_VERSION_MIN_REQUIRED
#error "PEAS_VERSION_MAX_ALLOWED must be >= PEAS_VERSION_MIN_REQUIRED"
#endif
#if PEAS_VERSION_MIN_REQUIRED < PEAS_VERSION_2_0
#error "PEAS_VERSION_MIN_REQUIRED must be >= PEAS_VERSION_2_0"
#endif

#define PEAS_AVAILABLE_IN_ALL                  _PEAS_EXTERN

#if PEAS_VERSION_MIN_REQUIRED >= PEAS_VERSION_2_0
# define PEAS_DEPRECATED_IN_2_0                PEAS_DEPRECATED
# define PEAS_DEPRECATED_IN_2_0_FOR(f)         PEAS_DEPRECATED_FOR(f)
#else
# define PEAS_DEPRECATED_IN_2_0                _PEAS_EXTERN
# define PEAS_DEPRECATED_IN_2_0_FOR(f)         _PEAS_EXTERN
#endif

#if PEAS_VERSION_MAX_ALLOWED < PEAS_VERSION_2_0
# define PEAS_AVAILABLE_IN_2_0                 PEAS_UNAVAILABLE(2, 0)
#else
# define PEAS_AVAILABLE_IN_2_0                 _PEAS_EXTERN
#endif