-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHierarchyUtils.cpp
87 lines (67 loc) · 2.52 KB
/
HierarchyUtils.cpp
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
/*
This file is part of the clazy static checker.
Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, [email protected]
Author: Sérgio Martins <[email protected]>
Copyright (C) 2015 Sergio Martins <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "HierarchyUtils.h"
#include "clazy_stl.h"
#include <clang/AST/ParentMap.h>
using namespace std;
using namespace clang;
Stmt *HierarchyUtils::parent(ParentMap *map, Stmt *s, unsigned int depth)
{
if (!s)
return nullptr;
return depth == 0 ? s
: parent(map, map->getParent(s), depth - 1);
}
clang::Stmt * HierarchyUtils::getFirstChildAtDepth(clang::Stmt *s, unsigned int depth)
{
if (depth == 0 || !s)
return s;
return clazy_std::hasChildren(s) ? getFirstChildAtDepth(*s->child_begin(), --depth)
: nullptr;
}
bool HierarchyUtils::isChildOf(Stmt *child, Stmt *parent)
{
if (!child || !parent)
return false;
return clazy_std::any_of(parent->children(), [child](Stmt *c) {
return c == child || HierarchyUtils::isChildOf(child, c);
});
}
bool HierarchyUtils::isParentOfMemberFunctionCall(Stmt *stm, const std::string &name)
{
if (!stm)
return false;
auto expr = dyn_cast<MemberExpr>(stm);
if (expr) {
auto namedDecl = dyn_cast<NamedDecl>(expr->getMemberDecl());
if (namedDecl && namedDecl->getNameAsString() == name)
return true;
}
return clazy_std::any_of(stm->children(), [name] (Stmt *child) {
return isParentOfMemberFunctionCall(child, name);
});
return false;
}
clang::Stmt *HierarchyUtils::getFirstChild(clang::Stmt *parent)
{
if (!parent)
return nullptr;
auto it = parent->child_begin();
return it == parent->child_end() ? nullptr : *it;
}