blob: 30dd8a3cf61482c3e3695df8c8a8212859572c12 [file] [log] [blame]
Radek Krejcid0d19522015-09-02 13:49:25 +02001/**
2 * \file config.h
3 * \author Radek Krejci <rkrejci@cesnet.cz>
4 * \brief libnetconf2 various configuration settings.
5 *
Michal Vaskof471fa02017-02-15 10:48:12 +01006 * Copyright (c) 2015 - 2017 CESNET, z.s.p.o.
Radek Krejcid0d19522015-09-02 13:49:25 +02007 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01008 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
Michal Vaskoafd416b2016-02-25 14:51:46 +010011 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010012 * https://opensource.org/licenses/BSD-3-Clause
Radek Krejcid0d19522015-09-02 13:49:25 +020013 */
14
15#ifndef NC_CONFIG_H_
16#define NC_CONFIG_H_
17
18/*
David Sedlákaae4df32018-10-08 22:27:22 +020019 * Mark all objects as hidden and export only objects explicitly marked to be part of the public API or
20 * those marked as mock objects for testing purpose
Radek Krejcid0d19522015-09-02 13:49:25 +020021 */
22#define API __attribute__((visibility("default")))
David Sedlákddde4492018-09-30 21:34:38 +020023#define MOCK __attribute__((visibility("default")))
24
Michal Vasko05ba9df2016-01-13 14:40:27 +010025#ifdef __GNUC__
26# define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
27#else
28# define UNUSED(x) UNUSED_ ## x
29#endif
30
Radek Krejci14b14032015-10-21 15:19:43 +020031/*
Michal Vasko7ae909a2018-11-09 09:51:42 +010032 * Support for atomic variables
Radek Krejci32898d52016-07-14 17:37:02 +020033 */
Michal Vasko7ae909a2018-11-09 09:51:42 +010034#cmakedefine HAVE_STDATOMIC
35#ifdef HAVE_STDATOMIC
36# include <stdatomic.h>
37
38# define ATOMIC_UINT32_T atomic_uint_fast32_t
39# define ATOMIC_INC(x) atomic_fetch_add(x, 1)
40#else
41# define ATOMIC_UINT32_T uint32_t
42# define ATOMIC_INC(x) __sync_add_and_fetch(x, 1)
Radek Krejci32898d52016-07-14 17:37:02 +020043#endif
44
45/*
Radek Krejci28472922016-07-15 11:51:16 +020046 * support for pthread_mutex_timedlock
47 */
48#cmakedefine HAVE_PTHREAD_MUTEX_TIMEDLOCK
49
50/*
Michal Vasko32af6142019-01-23 09:30:42 +010051 * libssh support for this session option
52 */
53#cmakedefine HAVE_LIBSSH_OPTIONS_PUBLICKEY_ACCEPTED_TYPES
54
55/*
Radek Krejci14b14032015-10-21 15:19:43 +020056 * Location of installed basic YIN/YANG schemas
57 */
Michal Vaskoff7e3562018-02-15 13:41:22 +010058#define NC_SCHEMAS_DIR "@SCHEMAS_DIR@"
Radek Krejci14b14032015-10-21 15:19:43 +020059
Michal Vasko6b7c42e2016-03-02 15:46:41 +010060/*
Michal Vaskof471fa02017-02-15 10:48:12 +010061 * Inactive read timeout
Michal Vasko6b7c42e2016-03-02 15:46:41 +010062 */
Michal Vaskof471fa02017-02-15 10:48:12 +010063#define NC_READ_INACT_TIMEOUT @READ_INACTIVE_TIMEOUT@
64
65/*
66 * Active read timeout in seconds
67 * (also used for internal <get-schema> RPC reply timeout)
68 */
69#define NC_READ_ACT_TIMEOUT @READ_ACTIVE_TIMEOUT@
Michal Vasko6b7c42e2016-03-02 15:46:41 +010070
Michal Vaskoafdb8ec2017-02-15 11:25:36 +010071/*
72 * pspoll structure queue size (also found in nc_server.h)
73 */
74#define NC_PS_QUEUE_SIZE @MAX_PSPOLL_THREAD_COUNT@
75
Rosen Penevef2f3ac2019-07-15 18:15:28 -070076/* Portability feature-check macros. */
77#cmakedefine HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP
78
Radek Krejcid0d19522015-09-02 13:49:25 +020079#endif /* NC_CONFIG_H_ */