Merge branch 'master' into windows-port
[platform/upstream/iotivity.git] / resource / c_common / platform_features.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //******************************************************************
20
21 /**
22  * @file
23  *
24  * This file contains compiler and platform feature definitions.  These
25  * can be used to enable functionality on only platforms that support
26  * said functionality.
27  */
28
29 #ifndef PLATFORM_FEATURES_H_
30 #define PLATFORM_FEATURES_H_
31
32
33 #if (__cplusplus >=201103L) || defined(__GXX_EXPERIMENTAL_CXX0X__)
34     #define SUPPORTS_DEFAULT_CTOR
35 #endif
36
37 #if (__STDC_VERSION__ >= 201112L)
38     #include <assert.h>
39     #define OC_STATIC_ASSERT(condition, msg) static_assert(condition, msg)
40 #elif defined(_WIN32)
41     #if defined(__msys_nt__) && !defined(__cplusplus)
42         #define static_assert _Static_assert
43     #endif
44     #define OC_STATIC_ASSERT(condition, msg) static_assert(condition, msg)
45 #else
46     #define OC_STATIC_ASSERT(condition, msg) ((void)sizeof(char[2*!!(condition) - 1]))
47 #endif
48
49 #ifndef INLINE_API
50 #  if defined(__cplusplus)
51 #    define INLINE_API inline
52 #  else
53 #    ifdef _MSC_VER
54 #      define INLINE_API static __inline
55 #    else
56 #      define INLINE_API static inline
57 #    endif
58 #  endif
59 #endif
60
61 #ifdef _MSC_VER
62 #  ifdef OC_EXPORT_DLL
63 #    define OC_EXPORT __declspec(dllexport)
64 #  else
65 #    define OC_EXPORT __declspec(dllimport)
66 #  endif
67 #  ifdef ENABLE_TEST_EXPORTS
68 #    define OC_EXPORT_TEST OC_EXPORT
69 #  else
70 #    define OC_EXPORT_TEST
71 #  endif
72 #  define OC_ANNOTATE_UNUSED
73 #else
74 #  define OC_ANNOTATE_UNUSED  __attribute__((unused))
75 #  define OC_EXPORT
76 #  define OC_EXPORT_TEST
77 #endif
78
79 #ifdef _WIN32
80 #  define __func__ __FUNCTION__
81 #  define strncasecmp _strnicmp
82 #  define strtok_r strtok_s
83 #  if _MSC_VER && (_MSC_VER < 1900)
84 #    include "windows/include/vs12_snprintf.h"
85 #  endif
86 #  define ssize_t SSIZE_T
87 #  define F_OK                0
88 #  define sleep(SECS)         Sleep(1000*(SECS))
89 #  ifdef __cplusplus
90 #    define SUPPORTS_DEFAULT_CTOR
91 #  endif
92 #  include "windows/include/win_sleep.h"
93 #  include "windows/include/pthread_create.h"
94 #endif
95
96 #ifdef HAVE_WINSOCK2_H
97 #  define OPTVAL_T(t)    (const char*)(t)
98 #else
99 #  define OPTVAL_T(t)    (t)
100 #endif
101
102 #endif