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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
|
/*==-- clang-c/Dependencies.h - Dependency Discovery C Interface --*- C -*-===*\
|* *|
|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
|* Exceptions. *|
|* See https://llvm.org/LICENSE.txt for license information. *|
|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
|* *|
|*===----------------------------------------------------------------------===*|
|* *|
|* This header provides a dependency discovery interface similar to *|
|* clang-scan-deps. *|
|* *|
|* An example of its usage is available in c-index-test/core_main.cpp. *|
|* *|
|* EXPERIMENTAL: These interfaces are experimental and will change. If you *|
|* use these be prepared for them to change without notice on any commit. *|
|* *|
\*===----------------------------------------------------------------------===*/
#ifndef LLVM_CLANG_C_DEPENDENCIES_H
#define LLVM_CLANG_C_DEPENDENCIES_H
#include "clang-c/BuildSystem.h"
#include "clang-c/CAS.h"
#include "clang-c/CXDiagnostic.h"
#include "clang-c/CXErrorCode.h"
#include "clang-c/CXString.h"
#include "clang-c/Platform.h"
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* \defgroup SCAN_DEPS Dependency scanning service.
* @{
*/
typedef struct {
CXString Name;
/**
* The context hash of a module represents the set of compiler options that
* may make one version of a module incompatible from another. This includes
* things like language mode, predefined macros, header search paths, etc...
*
* Modules with the same name but a different \c ContextHash should be treated
* as separate modules for the purpose of a build.
*/
CXString ContextHash;
/**
* The path to the modulemap file which defines this module.
*
* This can be used to explicitly build this module. This file will
* additionally appear in \c FileDeps as a dependency.
*/
CXString ModuleMapPath;
/**
* The list of files which this module directly depends on.
*
* If any of these change then the module needs to be rebuilt.
*/
CXStringSet *FileDeps;
/**
* The list of modules which this module direct depends on.
*
* This does include the context hash. The format is
* `<module-name>:<context-hash>`
*/
CXStringSet *ModuleDeps;
/**
* The canonical command line to build this module.
*
* If getFileDependencies_v3 or later was used to get this dependency, it is
* a complete command line. When using getFileDependencies_v2, it excludes
* arguments containing modules-related paths:
* "-fmodule-file=", "-o", "-fmodule-map-file=".
*/
CXStringSet *BuildArguments;
} CXModuleDependency;
typedef struct {
int Count;
CXModuleDependency *Modules;
} CXModuleDependencySet;
/**
* See \c CXModuleDependency for the meaning of these fields, with the addition
* that they represent only the direct dependencies for \c CXDependencyMode_Full
* mode.
*/
typedef struct {
CXString ContextHash;
CXStringSet *FileDeps;
CXStringSet *ModuleDeps;
CXStringSet *BuildArguments;
} CXFileDependencies;
/**
* An individual command-line invocation that is part of an overall compilation
* \c CXFileDependenciesList.
*
* See \c CXModuleDependency for the meaning of these fields, with the addition
* that they represent only the direct dependencies for \c CXDependencyMode_Full
* mode.
*/
typedef struct {
CXString ContextHash;
CXStringSet *FileDeps;
CXStringSet *ModuleDeps;
CXString Executable;
CXStringSet *BuildArguments;
} CXTranslationUnitCommand;
typedef struct {
size_t NumCommands;
CXTranslationUnitCommand *Commands;
} CXFileDependenciesList;
/**
* An output file kind needed by module dependencies.
*/
typedef enum {
CXOutputKind_ModuleFile = 0,
CXOutputKind_Dependencies = 1,
CXOutputKind_DependenciesTarget = 2,
CXOutputKind_SerializedDiagnostics = 3,
} CXOutputKind;
CINDEX_LINKAGE void
clang_experimental_ModuleDependencySet_dispose(CXModuleDependencySet *MD);
CINDEX_LINKAGE void
clang_experimental_FileDependencies_dispose(CXFileDependencies *ID);
CINDEX_LINKAGE void
clang_experimental_FileDependenciesList_dispose(CXFileDependenciesList *Deps);
/**
* Object encapsulating instance of a dependency scanner service.
*
* The dependency scanner service is a global instance that owns the
* global cache and other global state that's shared between the dependency
* scanner workers. The service APIs are thread safe.
*
* The service aims to provide a consistent view of file content throughout
* its lifetime. A client that wants to see changes to file content should
* create a new service at the time. For example, a build system might use
* one service for each build.
*
* TODO: Consider using DirectoryWatcher to get notified about file changes
* and adding an API that allows clients to invalidate changed files. This
* could allow a build system to reuse a single service between builds.
*/
typedef struct CXOpaqueDependencyScannerService *CXDependencyScannerService;
/**
* The mode to report module dependencies in.
*/
typedef enum {
/**
* Flatten all module dependencies. This reports the full transitive set of
* header and module map dependencies needed to do an implicit module build.
*/
CXDependencyMode_Flat,
/**
* Report the full module graph. This reports only the direct dependencies of
* each file, and calls a callback for each module that is discovered.
*/
CXDependencyMode_Full,
} CXDependencyMode;
/**
* Options used to construct a \c CXDependencyScannerService.
*/
typedef struct CXOpaqueDependencyScannerServiceOptions
*CXDependencyScannerServiceOptions;
/**
* Creates a default set of service options.
* Must be disposed with \c
* clang_experimental_DependencyScannerServiceOptions_dispose.
*/
CINDEX_LINKAGE CXDependencyScannerServiceOptions
clang_experimental_DependencyScannerServiceOptions_create(void);
/**
* Dispose of a \c CXDependencyScannerServiceOptions object.
*/
CINDEX_LINKAGE void clang_experimental_DependencyScannerServiceOptions_dispose(
CXDependencyScannerServiceOptions);
/**
* Specify a \c CXDependencyMode in the given options.
*/
CINDEX_LINKAGE void
clang_experimental_DependencyScannerServiceOptions_setDependencyMode(
CXDependencyScannerServiceOptions Opts, CXDependencyMode Mode);
/**
* Specify the object store and action cache databases in the given options.
* With this set, the scanner will produce cached commands.
*/
CINDEX_LINKAGE void
clang_experimental_DependencyScannerServiceOptions_setCASDatabases(
CXDependencyScannerServiceOptions Opts, CXCASDatabases);
/**
* Specify the specific CAS options for the scanner to use for the produced
* compiler arguments.
*/
CINDEX_LINKAGE void
clang_experimental_DependencyScannerServiceOptions_setCASOptions(
CXDependencyScannerServiceOptions Opts, CXCASOptions);
/**
* Specify a \c CXCASObjectStore in the given options. If an object store and
* action cache are available, the scanner will produce cached commands.
* Deprecated, use
* \p clang_experimental_DependencyScannerServiceOptions_setCASDatabases()
* instead.
*/
CINDEX_DEPRECATED CINDEX_LINKAGE void
clang_experimental_DependencyScannerServiceOptions_setObjectStore(
CXDependencyScannerServiceOptions Opts, CXCASObjectStore CAS);
/**
* Specify a \c CXCASActionCache in the given options. If an object store and
* action cache are available, the scanner will produce cached commands.
* Deprecated, use
* \p clang_experimental_DependencyScannerServiceOptions_setCASDatabases()
* instead.
*/
CINDEX_DEPRECATED CINDEX_LINKAGE void
clang_experimental_DependencyScannerServiceOptions_setActionCache(
CXDependencyScannerServiceOptions Opts, CXCASActionCache Cache);
/**
* See \c clang_experimental_DependencyScannerService_create_v1.
*/
CINDEX_LINKAGE CXDependencyScannerService
clang_experimental_DependencyScannerService_create_v0(CXDependencyMode Format);
/**
* Create a \c CXDependencyScannerService object.
* Must be disposed with \c clang_DependencyScannerService_dispose().
*/
CINDEX_LINKAGE CXDependencyScannerService
clang_experimental_DependencyScannerService_create_v1(
CXDependencyScannerServiceOptions Opts);
/**
* Dispose of a \c CXDependencyScannerService object.
*
* The service object must be disposed of after the workers are disposed of.
*/
CINDEX_LINKAGE void clang_experimental_DependencyScannerService_dispose_v0(
CXDependencyScannerService);
/**
* Object encapsulating instance of a dependency scanner worker.
*
* The dependency scanner workers are expected to be used in separate worker
* threads. An individual worker is not thread safe.
*
* Operations on a worker are not thread-safe and should only be used from a
* single thread at a time. They are intended to be used by a single dedicated
* thread in a thread pool, but they are not inherently pinned to a thread.
*/
typedef struct CXOpaqueDependencyScannerWorker *CXDependencyScannerWorker;
/**
* Create a \c CXDependencyScannerWorker object.
* Must be disposed with
* \c clang_experimental_DependencyScannerWorker_dispose_v0().
*/
CINDEX_LINKAGE CXDependencyScannerWorker
clang_experimental_DependencyScannerWorker_create_v0(
CXDependencyScannerService);
CINDEX_LINKAGE void clang_experimental_DependencyScannerWorker_dispose_v0(
CXDependencyScannerWorker);
/**
* A callback that is called whenever a module is discovered when in
* \c CXDependencyMode_Full mode.
*
* \param Context the context that was passed to
* \c clang_experimental_DependencyScannerWorker_getFileDependencies_vX.
* \param MDS the list of discovered modules. Must be freed by calling
* \c clang_experimental_ModuleDependencySet_dispose.
*/
typedef void CXModuleDiscoveredCallback(void *Context,
CXModuleDependencySet *MDS);
/**
* A callback that is called to determine the paths of output files for each
* module dependency. The ModuleFile (pcm) path mapping is mandatory.
*
* \param Context the MLOContext that was passed to
* \c clang_experimental_DependencyScannerWorker_getFileDependencies_vX.
* \param ModuleName the name of the dependent module.
* \param ContextHash the context hash of the dependent module.
* See \c CXModuleDependency::ContextHash.
& \param OutputKind the kind of module output to lookup.
* \param[out] Output the output path(s) or name, whose total size must be <=
* \p MaxLen. In the case of multiple outputs of the same
* kind, this can be a null-separated list.
* \param MaxLen the maximum size of Output.
*
* \returns the actual length of Output. If the return value is > \p MaxLen,
* the callback will be repeated with a larger buffer.
*/
typedef size_t CXModuleLookupOutputCallback(void *Context,
const char *ModuleName,
const char *ContextHash,
CXOutputKind OutputKind,
char *Output, size_t MaxLen);
/**
* Deprecated, use \c clang_experimental_DependencyScannerWorker_getDepGraph.
*
* See \c clang_experimental_DependencyScannerWorker_getFileDependencies_v4.
*/
CINDEX_LINKAGE CXFileDependencies *
clang_experimental_DependencyScannerWorker_getFileDependencies_v3(
CXDependencyScannerWorker Worker, int argc, const char *const *argv,
const char *ModuleName, const char *WorkingDirectory, void *MDCContext,
CXModuleDiscoveredCallback *MDC, void *MLOContext,
CXModuleLookupOutputCallback *MLO, unsigned Options, CXString *error);
/**
* Deprecated, use \c clang_experimental_DependencyScannerWorker_getDepGraph.
*
* Calculates the list of file dependencies for a particular compiler
* invocation.
*
* \param argc the number of compiler invocation arguments (including argv[0]).
* \param argv the compiler driver invocation arguments (including argv[0]).
* \param ModuleName If non-null, the dependencies of the named module are
* returned. Otherwise, the dependencies of the whole
* translation unit are returned.
* \param WorkingDirectory the directory in which the invocation runs.
* \param MDCContext the context that will be passed to \c MDC each time it is
* called.
* \param MDC a callback that is called whenever a new module is discovered.
* This may receive the same module on different workers. This should
* be NULL if
* \c clang_experimental_DependencyScannerService_create_v0 was
* called with \c CXDependencyMode_Flat. This callback will be called
* on the same thread that called this function.
* \param MLOContext the context that will be passed to \c MLO each time it is
* called.
* \param MLO a callback that is called to determine the paths of output files
* for each module dependency. This may receive the same module on
* different workers. This should be NULL if
* \c clang_experimental_DependencyScannerService_create_v0 was
* called with \c CXDependencyMode_Flat. This callback will be called
* on the same thread that called this function.
* \param Options reserved for future use, always pass 0.
* \param [out] Out A non-NULL pointer to store the resulting dependencies. The
* output must be freed by calling
* \c clang_experimental_FileDependenciesList_dispose.
* \param [out] error the error string to pass back to client (if any).
*
* \returns \c CXError_Success on success; otherwise a non-zero \c CXErrorCode
* indicating the kind of error.
*/
CINDEX_LINKAGE enum CXErrorCode
clang_experimental_DependencyScannerWorker_getFileDependencies_v4(
CXDependencyScannerWorker Worker, int argc, const char *const *argv,
const char *ModuleName, const char *WorkingDirectory, void *MDCContext,
CXModuleDiscoveredCallback *MDC, void *MLOContext,
CXModuleLookupOutputCallback *MLO, unsigned Options,
CXFileDependenciesList **Out, CXString *error);
/**
* Output of \c clang_experimental_DependencyScannerWorker_getDepGraph.
*/
typedef struct CXOpaqueDepGraph *CXDepGraph;
/**
* An individual module dependency that is part of an overall compilation
* \c CXDepGraph.
*/
typedef struct CXOpaqueDepGraphModule *CXDepGraphModule;
/**
* An individual command-line invocation that is part of an overall compilation
* \c CXDepGraph.
*/
typedef struct CXOpaqueDepGraphTUCommand *CXDepGraphTUCommand;
/**
* Settings to use for the
* \c clang_experimental_DependencyScannerWorker_getDepGraph action.
*/
typedef struct CXOpaqueDependencyScannerWorkerScanSettings
*CXDependencyScannerWorkerScanSettings;
/**
* Creates a set of settings for
* \c clang_experimental_DependencyScannerWorker_getDepGraph action.
* Must be disposed with
* \c clang_experimental_DependencyScannerWorkerScanSettings_dispose.
* Memory for settings is not copied. Any provided pointers must be valid until
* the call to \c clang_experimental_DependencyScannerWorker_getDepGraph.
*
* \param argc the number of compiler invocation arguments (including argv[0]).
* \param argv the compiler driver invocation arguments (including argv[0]).
* \param ModuleName If non-null, the dependencies of the named module are
* returned. Otherwise, the dependencies of the whole
* translation unit are returned.
* \param WorkingDirectory the directory in which the invocation runs.
* \param MLOContext the context that will be passed to \c MLO each time it is
* called.
* \param MLO a callback that is called to determine the paths of output files
* for each module dependency. This may receive the same module on
* different workers. This should be NULL if
* \c clang_experimental_DependencyScannerService_create_v1 was
* called with \c CXDependencyMode_Flat. This callback will be called
* on the same thread that called \c
* clang_experimental_DependencyScannerWorker_getDepGraph.
*/
CINDEX_LINKAGE CXDependencyScannerWorkerScanSettings
clang_experimental_DependencyScannerWorkerScanSettings_create(
int argc, const char *const *argv, const char *ModuleName,
const char *WorkingDirectory, void *MLOContext,
CXModuleLookupOutputCallback *MLO);
/**
* Dispose of a \c CXDependencyScannerWorkerScanSettings object.
*/
CINDEX_LINKAGE void
clang_experimental_DependencyScannerWorkerScanSettings_dispose(
CXDependencyScannerWorkerScanSettings);
/**
* Produces the dependency graph for a particular compiler invocation.
*
* \param Settings object created via
* \c clang_experimental_DependencyScannerWorkerScanSettings_create.
* \param [out] Out A non-NULL pointer to store the resulting dependencies. The
* output must be freed by calling
* \c clang_experimental_DepGraph_dispose.
*
* \returns \c CXError_Success on success; otherwise a non-zero \c CXErrorCode
* indicating the kind of error. When returning \c CXError_Failure there will
* be a \c CXDepGraph object on \p Out that can be used to get diagnostics via
* \c clang_experimental_DepGraph_getDiagnostics.
*/
CINDEX_LINKAGE enum CXErrorCode
clang_experimental_DependencyScannerWorker_getDepGraph(
CXDependencyScannerWorker, CXDependencyScannerWorkerScanSettings Settings,
CXDepGraph *Out);
/**
* Dispose of a \c CXDepGraph object.
*/
CINDEX_LINKAGE void clang_experimental_DepGraph_dispose(CXDepGraph);
/**
* \returns the number of \c CXDepGraphModule objects in the graph.
*/
CINDEX_LINKAGE size_t clang_experimental_DepGraph_getNumModules(CXDepGraph);
/**
* \returns the \c CXDepGraphModule object at the given \p Index.
*
* The \c CXDepGraphModule object is only valid to use while \c CXDepGraph is
* valid. Must be disposed with \c clang_experimental_DepGraphModule_dispose.
*/
CINDEX_LINKAGE CXDepGraphModule
clang_experimental_DepGraph_getModule(CXDepGraph, size_t Index);
CINDEX_LINKAGE void clang_experimental_DepGraphModule_dispose(CXDepGraphModule);
/**
* \returns the name of the module. This may include `:` for C++20 module
* partitions, or a header-name for C++20 header units.
*
* The string is only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE
const char *clang_experimental_DepGraphModule_getName(CXDepGraphModule);
/**
* \returns the context hash of a module represents the set of compiler options
* that may make one version of a module incompatible from another. This
* includes things like language mode, predefined macros, header search paths,
* etc...
*
* Modules with the same name but a different \c ContextHash should be treated
* as separate modules for the purpose of a build.
*
* The string is only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE
const char *clang_experimental_DepGraphModule_getContextHash(CXDepGraphModule);
/**
* \returns the path to the modulemap file which defines this module. If there's
* no modulemap (e.g. for a C++ module) returns \c NULL.
*
* This can be used to explicitly build this module. This file will
* additionally appear in \c FileDeps as a dependency.
*
* The string is only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE const char *
clang_experimental_DepGraphModule_getModuleMapPath(CXDepGraphModule);
/**
* \returns the list of files which this module directly depends on.
*
* If any of these change then the module needs to be rebuilt.
*
* The strings are only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE CXCStringArray
clang_experimental_DepGraphModule_getFileDeps(CXDepGraphModule);
/**
* \returns the list of modules which this module direct depends on.
*
* This does include the context hash. The format is
* `<module-name>:<context-hash>`
*
* The strings are only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE CXCStringArray
clang_experimental_DepGraphModule_getModuleDeps(CXDepGraphModule);
/**
* \returns the canonical command line to build this module.
*
* The strings are only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE CXCStringArray
clang_experimental_DepGraphModule_getBuildArguments(CXDepGraphModule);
/**
* @returns the CASID of the include-tree for this module, if any.
*
* The string is only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE const char *
clang_experimental_DepGraphModule_getIncludeTreeID(CXDepGraphModule);
/**
* \returns the \c ActionCache key for this module, if any.
*
* The string is only valid to use while the \c CXDepGraphModule object is
* valid.
*/
CINDEX_LINKAGE
const char *clang_experimental_DepGraphModule_getCacheKey(CXDepGraphModule);
/**
* \returns the number \c CXDepGraphTUCommand objects in the graph.
*/
CINDEX_LINKAGE size_t clang_experimental_DepGraph_getNumTUCommands(CXDepGraph);
/**
* \returns the \c CXDepGraphTUCommand object at the given \p Index.
*
* The \c CXDepGraphTUCommand object is only valid to use while \c CXDepGraph is
* valid. Must be disposed with \c clang_experimental_DepGraphTUCommand_dispose.
*/
CINDEX_LINKAGE CXDepGraphTUCommand
clang_experimental_DepGraph_getTUCommand(CXDepGraph, size_t Index);
/**
* Dispose of a \c CXDepGraphTUCommand object.
*/
CINDEX_LINKAGE void
clang_experimental_DepGraphTUCommand_dispose(CXDepGraphTUCommand);
/**
* \returns the executable name for the command.
*
* The string is only valid to use while the \c CXDepGraphTUCommand object is
* valid.
*/
CINDEX_LINKAGE const char *
clang_experimental_DepGraphTUCommand_getExecutable(CXDepGraphTUCommand);
/**
* \returns the canonical command line to build this translation unit.
*
* The strings are only valid to use while the \c CXDepGraphTUCommand object is
* valid.
*/
CINDEX_LINKAGE CXCStringArray
clang_experimental_DepGraphTUCommand_getBuildArguments(CXDepGraphTUCommand);
/**
* \returns the \c ActionCache key for this translation unit, if any.
*
* The string is only valid to use while the \c CXDepGraphTUCommand object is
* valid.
*/
CINDEX_LINKAGE const char *
clang_experimental_DepGraphTUCommand_getCacheKey(CXDepGraphTUCommand);
/**
* \returns the list of files which this translation unit directly depends on.
*
* The strings are only valid to use while the \c CXDepGraph object is valid.
*/
CINDEX_LINKAGE
CXCStringArray clang_experimental_DepGraph_getTUFileDeps(CXDepGraph);
/**
* \returns the list of modules which this translation unit direct depends on.
*
* This does include the context hash. The format is
* `<module-name>:<context-hash>`
*
* The strings are only valid to use while the \c CXDepGraph object is valid.
*/
CINDEX_LINKAGE
CXCStringArray clang_experimental_DepGraph_getTUModuleDeps(CXDepGraph);
/**
* @returns the CASID of the include-tree for this TU, if any.
*
* The string is only valid to use while the \c CXDepGraph object is valid.
*/
CINDEX_LINKAGE
const char *clang_experimental_DepGraph_getTUIncludeTreeID(CXDepGraph);
/**
* \returns the context hash of the C++20 module this translation unit exports.
*
* If the translation unit is not a module then this is empty.
*
* The string is only valid to use while the \c CXDepGraph object is valid.
*/
CINDEX_LINKAGE
const char *clang_experimental_DepGraph_getTUContextHash(CXDepGraph);
/**
* \returns The diagnostics emitted during scanning. These must be always freed
* by calling \c clang_disposeDiagnosticSet.
*/
CINDEX_LINKAGE
CXDiagnosticSet clang_experimental_DepGraph_getDiagnostics(CXDepGraph);
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif // LLVM_CLANG_C_DEPENDENCIES_H
|