class FrontendActionFactoryAdapter::ConsumerFactoryAdaptor

Declaration

class FrontendActionFactoryAdapter::ConsumerFactoryAdaptor
    : public ASTFrontendAction { /* full declaration omitted */ };

Description

Abstract base class to use for AST consumer-based frontend actions.

Declared at: clang/include/clang/Tooling/Tooling.h:430

Inherits from: ASTFrontendAction

Member Variables

private FactoryT* ConsumerFactory
private clang::tooling::SourceFileCallbacks* Callbacks

Method Overview

Inherited from ASTFrontendAction:

Inherited from FrontendAction:

Methods

bool BeginSourceFileAction(
    clang::CompilerInstance& CI)

Description

Callback at the start of processing a single input.

Declared at: clang/include/clang/Tooling/Tooling.h:442

Parameters

clang::CompilerInstance& CI

Returns

True on success; on failure ExecutionAction() and EndSourceFileAction() will not be called.

ConsumerFactoryAdaptor(
    FactoryT* ConsumerFactory,
    clang::tooling::SourceFileCallbacks*
        Callbacks)

Declared at: clang/include/clang/Tooling/Tooling.h:432

Parameters

FactoryT* ConsumerFactory
clang::tooling::SourceFileCallbacks* Callbacks

std::unique_ptr<ASTConsumer> CreateASTConsumer(
    clang::CompilerInstance&,
    llvm::StringRef)

Description

Create the AST consumer object for this action, if supported. This routine is called as part of BeginSourceFile(), which will fail if the AST consumer cannot be created. This will not be called if the action has indicated that it only uses the preprocessor.

Declared at: clang/include/clang/Tooling/Tooling.h:437

Parameters

clang::CompilerInstance&
llvm::StringRef

Returns

The new AST consumer, or null on failure.

void EndSourceFileAction()

Description

Callback at the end of processing a single input. This is guaranteed to only be called following a successful call to BeginSourceFileAction (and BeginSourceFile).

Declared at: clang/include/clang/Tooling/Tooling.h:450