1 /*==-- clang-c/BuildSystem.h - Utilities for use by build systems -*- C -*-===*\
3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
5 |* See https://llvm.org/LICENSE.txt for license information. *|
6 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
8 |*===----------------------------------------------------------------------===*|
10 |* This header provides various utilities for use by build systems. *|
12 \*===----------------------------------------------------------------------===*/
14 #ifndef LLVM_CLANG_C_BUILDSYSTEM_H
15 #define LLVM_CLANG_C_BUILDSYSTEM_H
17 #include "clang-c/CXErrorCode.h"
18 #include "clang-c/CXString.h"
19 #include "clang-c/ExternC.h"
20 #include "clang-c/Platform.h"
22 LLVM_CLANG_C_EXTERN_C_BEGIN
25 * \defgroup BUILD_SYSTEM Build system utilities
30 * Return the timestamp for use with Clang's
31 * \c -fbuild-session-timestamp= option.
33 CINDEX_LINKAGE
unsigned long long clang_getBuildSessionTimestamp(void);
36 * Object encapsulating information about overlaying virtual
37 * file/directories over the real file system.
39 typedef struct CXVirtualFileOverlayImpl
*CXVirtualFileOverlay
;
42 * Create a \c CXVirtualFileOverlay object.
43 * Must be disposed with \c clang_VirtualFileOverlay_dispose().
45 * \param options is reserved, always pass 0.
47 CINDEX_LINKAGE CXVirtualFileOverlay
48 clang_VirtualFileOverlay_create(unsigned options
);
51 * Map an absolute virtual file path to an absolute real one.
52 * The virtual path must be canonicalized (not contain "."/"..").
53 * \returns 0 for success, non-zero to indicate an error.
55 CINDEX_LINKAGE
enum CXErrorCode
56 clang_VirtualFileOverlay_addFileMapping(CXVirtualFileOverlay
,
57 const char *virtualPath
,
58 const char *realPath
);
61 * Set the case sensitivity for the \c CXVirtualFileOverlay object.
62 * The \c CXVirtualFileOverlay object is case-sensitive by default, this
63 * option can be used to override the default.
64 * \returns 0 for success, non-zero to indicate an error.
66 CINDEX_LINKAGE
enum CXErrorCode
67 clang_VirtualFileOverlay_setCaseSensitivity(CXVirtualFileOverlay
,
71 * Write out the \c CXVirtualFileOverlay object to a char buffer.
73 * \param options is reserved, always pass 0.
74 * \param out_buffer_ptr pointer to receive the buffer pointer, which should be
75 * disposed using \c clang_free().
76 * \param out_buffer_size pointer to receive the buffer size.
77 * \returns 0 for success, non-zero to indicate an error.
79 CINDEX_LINKAGE
enum CXErrorCode
80 clang_VirtualFileOverlay_writeToBuffer(CXVirtualFileOverlay
, unsigned options
,
81 char **out_buffer_ptr
,
82 unsigned *out_buffer_size
);
85 * free memory allocated by libclang, such as the buffer returned by
86 * \c CXVirtualFileOverlay() or \c clang_ModuleMapDescriptor_writeToBuffer().
88 * \param buffer memory pointer to free.
90 CINDEX_LINKAGE
void clang_free(void *buffer
);
93 * Dispose a \c CXVirtualFileOverlay object.
95 CINDEX_LINKAGE
void clang_VirtualFileOverlay_dispose(CXVirtualFileOverlay
);
98 * Object encapsulating information about a module.map file.
100 typedef struct CXModuleMapDescriptorImpl
*CXModuleMapDescriptor
;
103 * Create a \c CXModuleMapDescriptor object.
104 * Must be disposed with \c clang_ModuleMapDescriptor_dispose().
106 * \param options is reserved, always pass 0.
108 CINDEX_LINKAGE CXModuleMapDescriptor
109 clang_ModuleMapDescriptor_create(unsigned options
);
112 * Sets the framework module name that the module.map describes.
113 * \returns 0 for success, non-zero to indicate an error.
115 CINDEX_LINKAGE
enum CXErrorCode
116 clang_ModuleMapDescriptor_setFrameworkModuleName(CXModuleMapDescriptor
,
120 * Sets the umbrella header name that the module.map describes.
121 * \returns 0 for success, non-zero to indicate an error.
123 CINDEX_LINKAGE
enum CXErrorCode
124 clang_ModuleMapDescriptor_setUmbrellaHeader(CXModuleMapDescriptor
,
128 * Write out the \c CXModuleMapDescriptor object to a char buffer.
130 * \param options is reserved, always pass 0.
131 * \param out_buffer_ptr pointer to receive the buffer pointer, which should be
132 * disposed using \c clang_free().
133 * \param out_buffer_size pointer to receive the buffer size.
134 * \returns 0 for success, non-zero to indicate an error.
136 CINDEX_LINKAGE
enum CXErrorCode
137 clang_ModuleMapDescriptor_writeToBuffer(CXModuleMapDescriptor
, unsigned options
,
138 char **out_buffer_ptr
,
139 unsigned *out_buffer_size
);
142 * Dispose a \c CXModuleMapDescriptor object.
144 CINDEX_LINKAGE
void clang_ModuleMapDescriptor_dispose(CXModuleMapDescriptor
);
150 LLVM_CLANG_C_EXTERN_C_END
152 #endif /* CLANG_C_BUILD_SYSTEM_H */