0.6.1
C++ to UML diagram generator based on Clang
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | Private Attributes | List of all members
clanguml::sequence_diagram::visitor::call_expression_context Struct Reference

This class is used to track current context of the call expressions. More...

Detailed Description

This class is used to track current context of the call expressions.

When traversing AST for call expressions, we need to keep the state of the current context, for instance whether we are in a for loop or an if block, as well as the current parent of the call expression e.g. a class method or function.

Definition at line 41 of file call_expression_context.h.

#include <call_expression_context.h>

Public Types

using callexpr_stack_t = std::variant< std::monostate, clang::CallExpr *, clang::CXXConstructExpr *, clang::ObjCMessageExpr *, clang::ReturnStmt *, clang::CoreturnStmt *, clang::CoyieldExpr *, clang::CoawaitExpr * >
 

Public Member Functions

 call_expression_context ()
 
void reset ()
 Reset call expression context to the original state.
 
bool valid () const
 Verify that the context is in a valid state.
 
clang::ASTContext * get_ast_context () const
 
void update (clang::CXXRecordDecl *cls)
 Set the current context to a class.
 
void update (clang::ObjCInterfaceDecl *cls)
 
void update (clang::ObjCProtocolDecl *cls)
 
void update (clang::ClassTemplateSpecializationDecl *clst)
 Set the current context to a class template specialization.
 
void update (clang::ClassTemplateDecl *clst)
 Set the current context to a class template.
 
void update (clang::CXXMethodDecl *method)
 Set the current context to a class method.
 
void update (clang::ObjCMethodDecl *method)
 
void update (clang::FunctionDecl *function)
 Set the current context to a function.
 
void update (clang::FunctionTemplateDecl *function_template)
 Set the current context to a function template.
 
void set_caller_id (eid_t id)
 Set current caller to id of the current participant.
 
eid_t caller_id () const
 Get current caller id.
 
std::optional< eid_tlambda_caller_id () const
 Get the id of the current lambda caller.
 
void enter_lambda_expression (eid_t id)
 Enter a lambda expression.
 
void leave_lambda_expression ()
 Leave current lambda expression.
 
clang::IfStmt * current_ifstmt () const
 Get current if statement block.
 
void enter_ifstmt (clang::IfStmt *stmt)
 Enter if statement block.
 
void leave_ifstmt ()
 Leave if statement block.
 
void enter_elseifstmt (clang::IfStmt *stmt)
 Enter else if statement block.
 
clang::IfStmt * current_elseifstmt () const
 Get current else if statement block.
 
clang::Stmt * current_loopstmt () const
 Get current loop statement block.
 
void enter_loopstmt (clang::Stmt *stmt)
 Enter loop statement block.
 
void leave_loopstmt ()
 Leave loop statement block.
 
clang::Stmt * current_trystmt () const
 Get current try statement block.
 
void enter_trystmt (clang::Stmt *stmt)
 Enter try statement block.
 
void leave_trystmt ()
 Leave try statement block.
 
clang::SwitchStmt * current_switchstmt () const
 Get current switch statement block.
 
void enter_switchstmt (clang::SwitchStmt *stmt)
 Enter switch statement block.
 
void leave_switchstmt ()
 Leave switch statement block.
 
clang::ConditionalOperator * current_conditionaloperator () const
 Get current :? statement block.
 
void enter_conditionaloperator (clang::ConditionalOperator *stmt)
 Enter :? statement block.
 
void leave_conditionaloperator ()
 Leave :? statement block.
 
callexpr_stack_t current_callexpr () const
 Get current call expression.
 
void enter_callexpr (clang::CallExpr *expr)
 Enter a call expression.
 
void enter_callexpr (clang::CXXConstructExpr *expr)
 Enter a constructor call expression.
 
void enter_callexpr (clang::ObjCMessageExpr *expr)
 
void enter_callexpr (clang::ReturnStmt *stmt)
 
void enter_callexpr (clang::CoreturnStmt *stmt)
 
void enter_callexpr (clang::CoyieldExpr *expr)
 
void enter_callexpr (clang::CoawaitExpr *expr)
 
void leave_callexpr ()
 Leave call expression.
 
bool is_expr_in_current_control_statement_condition (const clang::Stmt *stmt) const
 Check, if a statement is contained in a control statement.
 
void dump ()
 Print the current call expression stack for debugging.
 
bool is_local_class () const
 Check if current context is inside a local class.
 

Public Attributes

clang::CXXRecordDecl * current_class_decl_ {nullptr}
 
clang::ClassTemplateDecl * current_class_template_decl_ {nullptr}
 
clang::ClassTemplateSpecializationDecl * current_class_template_specialization_decl_ {nullptr}
 
clang::CXXMethodDecl * current_method_decl_ {nullptr}
 
clang::ObjCMethodDecl * current_objc_method_decl_ {nullptr}
 
clang::FunctionDecl * current_function_decl_ {nullptr}
 
clang::FunctionTemplateDecl * current_function_template_decl_ {nullptr}
 
clang::ObjCInterfaceDecl * objc_interface_decl_ {nullptr}
 
clang::ObjCProtocolDecl * objc_protocol_decl_ {nullptr}
 

Private Attributes

eid_t current_caller_id_ {}
 
std::stack< eid_tcurrent_lambda_caller_id_
 
std::stack< callexpr_stack_tcall_expr_stack_
 
std::stack< clang::IfStmt * > if_stmt_stack_
 
std::map< clang::IfStmt *, std::stack< clang::IfStmt * > > elseif_stmt_stacks_
 
std::stack< clang::Stmt * > loop_stmt_stack_
 
std::stack< clang::Stmt * > try_stmt_stack_
 
std::stack< clang::SwitchStmt * > switch_stmt_stack_
 
std::stack< clang::ConditionalOperator * > conditional_operator_stack_
 

Member Typedef Documentation

◆ callexpr_stack_t

using clanguml::sequence_diagram::visitor::call_expression_context::callexpr_stack_t = std::variant<std::monostate, clang::CallExpr *, clang::CXXConstructExpr *, clang::ObjCMessageExpr *, clang::ReturnStmt *, clang::CoreturnStmt *, clang::CoyieldExpr *, clang::CoawaitExpr *>

In Clang, call to a class constructor is represented by clang::CXXConstructExpr, which does inherit from clang::CallExpr. So to enable to track calls to constructors, we need to be able to add to the call stack either type.

Definition at line 48 of file call_expression_context.h.

Constructor & Destructor Documentation

◆ call_expression_context()

clanguml::sequence_diagram::visitor::call_expression_context::call_expression_context ( )
default

Member Function Documentation

◆ caller_id()

eid_t clanguml::sequence_diagram::visitor::call_expression_context::caller_id ( ) const

Get current caller id.

Returns
Id of the current caller participant

Definition at line 169 of file call_expression_context.cc.

170{
171 if (lambda_caller_id().has_value()) {
172 // Handle a case when local class is defined inside a lambda
173 if (!is_local_class())
174 return *lambda_caller_id(); // NOLINT
175 }
176
177 return current_caller_id_;
178}

◆ current_callexpr()

call_expression_context::callexpr_stack_t clanguml::sequence_diagram::visitor::call_expression_context::current_callexpr ( ) const

Get current call expression.

Returns
Call expression

Definition at line 279 of file call_expression_context.cc.

280{
281 if (call_expr_stack_.empty())
282 return {};
283
284 return call_expr_stack_.top();
285}

◆ current_conditionaloperator()

clang::ConditionalOperator * clanguml::sequence_diagram::visitor::call_expression_context::current_conditionaloperator ( ) const

Get current :? statement block.

Returns
:? statement block.

Definition at line 368 of file call_expression_context.cc.

369{
370 if (conditional_operator_stack_.empty())
371 return nullptr;
372
373 return conditional_operator_stack_.top();
374}

◆ current_elseifstmt()

clang::IfStmt * clanguml::sequence_diagram::visitor::call_expression_context::current_elseifstmt ( ) const

Get current else if statement block.

Returns
if statement block.

Definition at line 248 of file call_expression_context.cc.

249{
250 assert(current_ifstmt() != nullptr);
251
252 if (elseif_stmt_stacks_.count(current_ifstmt()) == 0 ||
254 return nullptr;
255
256 return elseif_stmt_stacks_.at(current_ifstmt()).top();
257}

◆ current_ifstmt()

clang::IfStmt * clanguml::sequence_diagram::visitor::call_expression_context::current_ifstmt ( ) const

Get current if statement block.

Returns
if statement block.

Definition at line 220 of file call_expression_context.cc.

221{
222 if (if_stmt_stack_.empty())
223 return nullptr;
224
225 return if_stmt_stack_.top();
226}

◆ current_loopstmt()

clang::Stmt * clanguml::sequence_diagram::visitor::call_expression_context::current_loopstmt ( ) const

Get current loop statement block.

Returns
Loop statement block.

Definition at line 259 of file call_expression_context.cc.

260{
261 if (loop_stmt_stack_.empty())
262 return nullptr;
263
264 return loop_stmt_stack_.top();
265}

◆ current_switchstmt()

clang::SwitchStmt * clanguml::sequence_diagram::visitor::call_expression_context::current_switchstmt ( ) const

Get current switch statement block.

Returns
switch statement block.

Definition at line 348 of file call_expression_context.cc.

349{
350 if (switch_stmt_stack_.empty())
351 return nullptr;
352
353 return switch_stmt_stack_.top();
354}

◆ current_trystmt()

clang::Stmt * clanguml::sequence_diagram::visitor::call_expression_context::current_trystmt ( ) const

Get current try statement block.

Returns
try statement block.

Definition at line 329 of file call_expression_context.cc.

330{
331 if (try_stmt_stack_.empty())
332 return nullptr;
333
334 return try_stmt_stack_.top();
335}

◆ dump()

void clanguml::sequence_diagram::visitor::call_expression_context::dump ( )

Print the current call expression stack for debugging.

Definition at line 38 of file call_expression_context.cc.

39{
40 LOG_DBG("current_caller_id_ = {}", current_caller_id_);
41 LOG_DBG("current_class_decl_ = {}", (void *)current_class_decl_);
42 LOG_DBG("current_class_template_decl_ = {}",
44 LOG_DBG("current_class_template_specialization_decl_ = {}",
46 LOG_DBG("current_method_decl_ = {}", (void *)current_method_decl_);
47 LOG_DBG("current_function_decl_ = {}", (void *)current_function_decl_);
48 LOG_DBG("current_function_template_decl_ = {}",
50 LOG_DBG("objc_interface_decl_ = {}", (void *)objc_interface_decl_);
51 LOG_DBG(
52 "current_objc_method_decl_ = {}", (void *)current_objc_method_decl_);
53 LOG_DBG("objc_protocol_decl_ = {}", (void *)objc_protocol_decl_);
54}

◆ enter_callexpr() [1/7]

void clanguml::sequence_diagram::visitor::call_expression_context::enter_callexpr ( clang::CallExpr *  expr)

Enter a call expression.

Parameters
exprCall expression

Definition at line 287 of file call_expression_context.cc.

288{
289 call_expr_stack_.emplace(expr);
290}

◆ enter_callexpr() [2/7]

void clanguml::sequence_diagram::visitor::call_expression_context::enter_callexpr ( clang::CoawaitExpr *  expr)

Definition at line 317 of file call_expression_context.cc.

318{
319 call_expr_stack_.emplace(expr);
320}

◆ enter_callexpr() [3/7]

void clanguml::sequence_diagram::visitor::call_expression_context::enter_callexpr ( clang::CoreturnStmt *  stmt)

Definition at line 307 of file call_expression_context.cc.

308{
309 call_expr_stack_.emplace(stmt);
310}

◆ enter_callexpr() [4/7]

void clanguml::sequence_diagram::visitor::call_expression_context::enter_callexpr ( clang::CoyieldExpr *  expr)

Definition at line 312 of file call_expression_context.cc.

313{
314 call_expr_stack_.emplace(expr);
315}

◆ enter_callexpr() [5/7]

void clanguml::sequence_diagram::visitor::call_expression_context::enter_callexpr ( clang::CXXConstructExpr *  expr)

Enter a constructor call expression.

Parameters
exprConstructor call expression

Definition at line 292 of file call_expression_context.cc.

293{
294 call_expr_stack_.emplace(expr);
295}

◆ enter_callexpr() [6/7]

void clanguml::sequence_diagram::visitor::call_expression_context::enter_callexpr ( clang::ObjCMessageExpr *  expr)

Definition at line 297 of file call_expression_context.cc.

298{
299 call_expr_stack_.emplace(expr);
300}

◆ enter_callexpr() [7/7]

void clanguml::sequence_diagram::visitor::call_expression_context::enter_callexpr ( clang::ReturnStmt *  stmt)

Definition at line 302 of file call_expression_context.cc.

303{
304 call_expr_stack_.emplace(stmt);
305}

◆ enter_conditionaloperator()

void clanguml::sequence_diagram::visitor::call_expression_context::enter_conditionaloperator ( clang::ConditionalOperator *  stmt)

Enter :? statement block.

Parameters
stmt:? statement block

Definition at line 376 of file call_expression_context.cc.

378{
379 conditional_operator_stack_.emplace(stmt);
380}

◆ enter_elseifstmt()

void clanguml::sequence_diagram::visitor::call_expression_context::enter_elseifstmt ( clang::IfStmt *  stmt)

Enter else if statement block.

Parameters
stmtif statement block

Definition at line 241 of file call_expression_context.cc.

242{
243 assert(current_ifstmt() != nullptr);
244
245 elseif_stmt_stacks_[current_ifstmt()].emplace(stmt);
246}

◆ enter_ifstmt()

void clanguml::sequence_diagram::visitor::call_expression_context::enter_ifstmt ( clang::IfStmt *  stmt)

Enter if statement block.

Parameters
stmtif statement block

Definition at line 228 of file call_expression_context.cc.

229{
230 if_stmt_stack_.emplace(stmt);
231}

◆ enter_lambda_expression()

void clanguml::sequence_diagram::visitor::call_expression_context::enter_lambda_expression ( eid_t  id)

Enter a lambda expression.

Parameters
idLambda id

Definition at line 200 of file call_expression_context.cc.

201{
202 LOG_DBG("Setting current lambda caller id to {}", id);
203
204 assert(id.value() != 0);
205
206 current_lambda_caller_id_.emplace(id);
207}

◆ enter_loopstmt()

void clanguml::sequence_diagram::visitor::call_expression_context::enter_loopstmt ( clang::Stmt *  stmt)

Enter loop statement block.

Parameters
stmtLoop statement block

Definition at line 267 of file call_expression_context.cc.

268{
269 loop_stmt_stack_.emplace(stmt);
270}

◆ enter_switchstmt()

void clanguml::sequence_diagram::visitor::call_expression_context::enter_switchstmt ( clang::SwitchStmt *  stmt)

Enter switch statement block.

Parameters
stmtswitch statement block

Definition at line 356 of file call_expression_context.cc.

357{
358 switch_stmt_stack_.emplace(stmt);
359}

◆ enter_trystmt()

void clanguml::sequence_diagram::visitor::call_expression_context::enter_trystmt ( clang::Stmt *  stmt)

Enter try statement block.

Parameters
stmttry statement block

Definition at line 337 of file call_expression_context.cc.

338{
339 try_stmt_stack_.emplace(stmt);
340}

◆ get_ast_context()

clang::ASTContext * clanguml::sequence_diagram::visitor::call_expression_context::get_ast_context ( ) const
Returns
Current AST context

Definition at line 69 of file call_expression_context.cc.

70{
72 return &current_class_template_specialization_decl_->getASTContext();
73
74 if (current_class_template_decl_ != nullptr)
75 return &current_class_template_decl_->getASTContext();
76
77 if (current_class_decl_ != nullptr)
78 return &current_class_decl_->getASTContext();
79
81 return &current_function_template_decl_->getASTContext();
82
83 if (current_function_decl_ != nullptr) {
84 return &current_function_decl_->getASTContext();
85 }
86
87 if (current_method_decl_ != nullptr) {
88 return &current_method_decl_->getASTContext();
89 }
90
91 if (objc_interface_decl_ != nullptr) {
92 return &objc_interface_decl_->getASTContext();
93 }
94
95 if (objc_protocol_decl_ != nullptr) {
96 return &objc_protocol_decl_->getASTContext();
97 }
98
99 if (current_objc_method_decl_ != nullptr) {
100 return &current_objc_method_decl_->getASTContext();
101 }
102
103 return nullptr;
104}

◆ is_expr_in_current_control_statement_condition()

bool clanguml::sequence_diagram::visitor::call_expression_context::is_expr_in_current_control_statement_condition ( const clang::Stmt *  stmt) const

Check, if a statement is contained in a control statement.

This method is used to check if stmt is contained in control statement of a block, for instance:

if(a.method1()) {}

it will return true for stmt representing method1() call expression.

Parameters
stmtStatement
Returns
True, if stmt is contained in control expression of a statement block

Definition at line 388 of file call_expression_context.cc.

390{
391 if (current_ifstmt() != nullptr) {
392 if (common::is_subexpr_of(current_ifstmt()->getCond(), stmt))
393 return true;
394
395 if (const auto *condition_decl_stmt = current_ifstmt()->getInit();
396 condition_decl_stmt != nullptr) {
397 if (common::is_subexpr_of(condition_decl_stmt, stmt))
398 return true;
399 }
400
401 if (current_elseifstmt() != nullptr) {
402 if (common::is_subexpr_of(current_elseifstmt()->getCond(), stmt))
403 return true;
404 }
405 }
406
407 if (current_conditionaloperator() != nullptr) {
409 current_conditionaloperator()->getCond(), stmt))
410 return true;
411 }
412
413 if (const auto *loop_stmt = current_loopstmt(); loop_stmt != nullptr) {
414 if (const auto *for_stmt = clang::dyn_cast<clang::ForStmt>(loop_stmt);
415 for_stmt != nullptr) {
416 if (common::is_subexpr_of(for_stmt->getCond(), stmt)) {
417 return true;
418 }
419 if (common::is_subexpr_of(for_stmt->getInit(), stmt)) {
420 return true;
421 }
422 if (common::is_subexpr_of(for_stmt->getInc(), stmt)) {
423 return true;
424 }
425 }
426
427 if (const auto *range_for_stmt =
428 clang::dyn_cast<clang::CXXForRangeStmt>(loop_stmt);
429 range_for_stmt != nullptr) {
430 if (common::is_subexpr_of(range_for_stmt->getRangeInit(), stmt)) {
431 return true;
432 }
433 }
434
435 if (const auto *while_stmt =
436 clang::dyn_cast<clang::WhileStmt>(loop_stmt);
437 while_stmt != nullptr) {
438 if (common::is_subexpr_of(while_stmt->getCond(), stmt)) {
439 return true;
440 }
441 }
442
443 if (const auto *do_stmt = clang::dyn_cast<clang::DoStmt>(loop_stmt);
444 do_stmt != nullptr) {
445 if (common::is_subexpr_of(do_stmt->getCond(), stmt)) {
446 return true;
447 }
448 }
449
450 if (current_conditionaloperator() != nullptr) {
452 current_conditionaloperator()->getCond(), stmt)) {
453 return true;
454 }
455 }
456 }
457
458 return false;
459}

◆ is_local_class()

bool clanguml::sequence_diagram::visitor::call_expression_context::is_local_class ( ) const

Check if current context is inside a local class.

Returns
True, if current context is inside a local class

Definition at line 180 of file call_expression_context.cc.

181{
182 return current_class_decl_ != nullptr &&
183 current_class_decl_->isLocalClass() != nullptr;
184}

◆ lambda_caller_id()

std::optional< eid_t > clanguml::sequence_diagram::visitor::call_expression_context::lambda_caller_id ( ) const

Get the id of the current lambda caller.

Since lambdas can be nested within methods and functions, they have a separate caller id field.

Returns
Current lambda caller id, or 0 if current caller is not lambda.

Definition at line 186 of file call_expression_context.cc.

187{
188 if (current_lambda_caller_id_.empty())
189 return {};
190
191 return current_lambda_caller_id_.top();
192}

◆ leave_callexpr()

void clanguml::sequence_diagram::visitor::call_expression_context::leave_callexpr ( )

Leave call expression.

Definition at line 322 of file call_expression_context.cc.

323{
324 if (!call_expr_stack_.empty()) {
325 return call_expr_stack_.pop();
326 }
327}

◆ leave_conditionaloperator()

void clanguml::sequence_diagram::visitor::call_expression_context::leave_conditionaloperator ( )

Leave :? statement block.

Definition at line 382 of file call_expression_context.cc.

383{
384 if (!conditional_operator_stack_.empty())
386}

◆ leave_ifstmt()

void clanguml::sequence_diagram::visitor::call_expression_context::leave_ifstmt ( )

Leave if statement block.

Definition at line 233 of file call_expression_context.cc.

234{
235 if (!if_stmt_stack_.empty()) {
237 if_stmt_stack_.pop();
238 }
239}

◆ leave_lambda_expression()

void clanguml::sequence_diagram::visitor::call_expression_context::leave_lambda_expression ( )

Leave current lambda expression.

Definition at line 209 of file call_expression_context.cc.

210{
211 if (current_lambda_caller_id_.empty())
212 return;
213
214 LOG_DBG("Leaving current lambda expression id to {}",
216
218}

◆ leave_loopstmt()

void clanguml::sequence_diagram::visitor::call_expression_context::leave_loopstmt ( )

Leave loop statement block.

Definition at line 272 of file call_expression_context.cc.

273{
274 if (!loop_stmt_stack_.empty())
275 return loop_stmt_stack_.pop();
276}

◆ leave_switchstmt()

void clanguml::sequence_diagram::visitor::call_expression_context::leave_switchstmt ( )

Leave switch statement block.

Definition at line 361 of file call_expression_context.cc.

362{
363 if (switch_stmt_stack_.empty())
364 switch_stmt_stack_.pop();
365}

◆ leave_trystmt()

void clanguml::sequence_diagram::visitor::call_expression_context::leave_trystmt ( )

Leave try statement block.

Definition at line 342 of file call_expression_context.cc.

343{
344 if (try_stmt_stack_.empty())
345 try_stmt_stack_.pop();
346}

◆ reset()

void clanguml::sequence_diagram::visitor::call_expression_context::reset ( )

Reset call expression context to the original state.

Definition at line 25 of file call_expression_context.cc.

◆ set_caller_id()

void clanguml::sequence_diagram::visitor::call_expression_context::set_caller_id ( eid_t  id)

Set current caller to id of the current participant.

Parameters
idSet current caller id.

Definition at line 194 of file call_expression_context.cc.

195{
196 LOG_DBG("Setting current caller id to {}", id);
198}

◆ update() [1/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::ClassTemplateDecl *  clst)

Set the current context to a class template.

Parameters
clstClass template declaration.

Definition at line 127 of file call_expression_context.cc.

128{
130}

◆ update() [2/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::ClassTemplateSpecializationDecl *  clst)

Set the current context to a class template specialization.

Parameters
clstClass template specialization declaration.

Definition at line 121 of file call_expression_context.cc.

◆ update() [3/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::CXXMethodDecl *  method)

Set the current context to a class method.

Parameters
methodClass method declaration.

Definition at line 132 of file call_expression_context.cc.

133{
135}

◆ update() [4/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::CXXRecordDecl *  cls)

Set the current context to a class.

Parameters
clsClass declaration.

Definition at line 106 of file call_expression_context.cc.

107{
109}

◆ update() [5/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::FunctionDecl *  function)

Set the current context to a function.

Parameters
functionFunction declaration.

Definition at line 142 of file call_expression_context.cc.

143{
144 if (!function->isCXXClassMember())
145 reset();
146
148
149 // Check if this function is a part of template function declaration,
150 // If no - reset the current_function_template_decl_
151 if ((current_function_template_decl_ != nullptr) &&
152 current_function_template_decl_->getQualifiedNameAsString() !=
153 function->getQualifiedNameAsString()) {
155 }
156}

◆ update() [6/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::FunctionTemplateDecl *  function_template)

Set the current context to a function template.

Parameters
function_templateFunction template declaration.

Definition at line 158 of file call_expression_context.cc.

◆ update() [7/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::ObjCInterfaceDecl *  cls)

Definition at line 111 of file call_expression_context.cc.

112{
114}

◆ update() [8/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::ObjCMethodDecl *  method)

Definition at line 137 of file call_expression_context.cc.

◆ update() [9/9]

void clanguml::sequence_diagram::visitor::call_expression_context::update ( clang::ObjCProtocolDecl *  cls)

Definition at line 116 of file call_expression_context.cc.

117{
119}

◆ valid()

bool clanguml::sequence_diagram::visitor::call_expression_context::valid ( ) const

Verify that the context is in a valid state.

Context can only be in a single state (for instance inside a function).

Returns
True, if the context is in a valid state.

Definition at line 56 of file call_expression_context.cc.

57{
58 return (current_class_decl_ != nullptr) ||
59 (current_class_template_decl_ != nullptr) ||
61 (current_method_decl_ != nullptr) ||
62 (current_function_decl_ != nullptr) ||
64 (objc_interface_decl_ != nullptr) ||
65 (current_objc_method_decl_ != nullptr) ||
66 (objc_protocol_decl_ != nullptr);
67}

Member Data Documentation

◆ call_expr_stack_

std::stack<callexpr_stack_t> clanguml::sequence_diagram::visitor::call_expression_context::call_expr_stack_
private

Definition at line 343 of file call_expression_context.h.

◆ conditional_operator_stack_

std::stack<clang::ConditionalOperator *> clanguml::sequence_diagram::visitor::call_expression_context::conditional_operator_stack_
private

Definition at line 351 of file call_expression_context.h.

◆ current_caller_id_

eid_t clanguml::sequence_diagram::visitor::call_expression_context::current_caller_id_ {}
private

Definition at line 340 of file call_expression_context.h.

◆ current_class_decl_

clang::CXXRecordDecl* clanguml::sequence_diagram::visitor::call_expression_context::current_class_decl_ {nullptr}

Definition at line 328 of file call_expression_context.h.

◆ current_class_template_decl_

clang::ClassTemplateDecl* clanguml::sequence_diagram::visitor::call_expression_context::current_class_template_decl_ {nullptr}

Definition at line 329 of file call_expression_context.h.

◆ current_class_template_specialization_decl_

clang::ClassTemplateSpecializationDecl* clanguml::sequence_diagram::visitor::call_expression_context::current_class_template_specialization_decl_ {nullptr}

Definition at line 331 of file call_expression_context.h.

◆ current_function_decl_

clang::FunctionDecl* clanguml::sequence_diagram::visitor::call_expression_context::current_function_decl_ {nullptr}

Definition at line 334 of file call_expression_context.h.

◆ current_function_template_decl_

clang::FunctionTemplateDecl* clanguml::sequence_diagram::visitor::call_expression_context::current_function_template_decl_ {nullptr}

Definition at line 335 of file call_expression_context.h.

◆ current_lambda_caller_id_

std::stack<eid_t> clanguml::sequence_diagram::visitor::call_expression_context::current_lambda_caller_id_
private

Definition at line 341 of file call_expression_context.h.

◆ current_method_decl_

clang::CXXMethodDecl* clanguml::sequence_diagram::visitor::call_expression_context::current_method_decl_ {nullptr}

Definition at line 332 of file call_expression_context.h.

◆ current_objc_method_decl_

clang::ObjCMethodDecl* clanguml::sequence_diagram::visitor::call_expression_context::current_objc_method_decl_ {nullptr}

Definition at line 333 of file call_expression_context.h.

◆ elseif_stmt_stacks_

std::map<clang::IfStmt *, std::stack<clang::IfStmt *> > clanguml::sequence_diagram::visitor::call_expression_context::elseif_stmt_stacks_
private

Definition at line 346 of file call_expression_context.h.

◆ if_stmt_stack_

std::stack<clang::IfStmt *> clanguml::sequence_diagram::visitor::call_expression_context::if_stmt_stack_
private

Definition at line 345 of file call_expression_context.h.

◆ loop_stmt_stack_

std::stack<clang::Stmt *> clanguml::sequence_diagram::visitor::call_expression_context::loop_stmt_stack_
private

Definition at line 348 of file call_expression_context.h.

◆ objc_interface_decl_

clang::ObjCInterfaceDecl* clanguml::sequence_diagram::visitor::call_expression_context::objc_interface_decl_ {nullptr}

Definition at line 336 of file call_expression_context.h.

◆ objc_protocol_decl_

clang::ObjCProtocolDecl* clanguml::sequence_diagram::visitor::call_expression_context::objc_protocol_decl_ {nullptr}

Definition at line 337 of file call_expression_context.h.

◆ switch_stmt_stack_

std::stack<clang::SwitchStmt *> clanguml::sequence_diagram::visitor::call_expression_context::switch_stmt_stack_
private

Definition at line 350 of file call_expression_context.h.

◆ try_stmt_stack_

std::stack<clang::Stmt *> clanguml::sequence_diagram::visitor::call_expression_context::try_stmt_stack_
private

Definition at line 349 of file call_expression_context.h.


The documentation for this struct was generated from the following files: