forked from hiraditya/cpp2cxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demacrofier.h
151 lines (125 loc) · 4.86 KB
/
Demacrofier.h
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
/**
cpp2cxx is an open source software distributed under terms of the
Apache2.0 licence.
Copyrights remain with the original copyright holders.
Use of this material is by permission and/or license.
Copyright [2012] Aditya Kumar, Andrew Sutton, Bjarne Stroustrup
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef DEMACROFIER
#define DEMACROFIER
/**
* @file Demacrofier.h
* @brief demacrofies the macros and returns the demacrofied PPMacro as a string
* @version 1.0
* @author Aditya Kumar
* @details
* compiles with g++-4.5 or higher,
* for compiling pass -std=c++0x to the compiler
*/
#include "Macro.h"
#include "FunctionInfo.h"
#include "ValidatorMap.h"
#include <string>
/**
* @class Parser
* @brief forward declaration
*/
class Parser;
/**
* @class Demacrofier
* @brief demacrofies the macro on a per macro basis
*/
class Demacrofier {
public:
Demacrofier();
/// @todo change pointer to const ref
/// when cleaning up, the translations are put without any conditionals
/// The \e Translate function will generate the demacrofication without
/// any conditionals wrapped around it. The code generated will have
/// several formatting modifications as compared to the original code.
/// when cleanup = false, translations are put with #ifdef conditionals
/// and by default they are disabled; the macros are enabled.
std::string Translate(PPMacro const* m_ptr, std::ostream& stat, bool cleanup, bool demacrofy);
void SetMacroInvocationStat(InvocationStat_t* pInvocationStat);
void SetASTStat(ASTMacroStat_t* pASTMacroStat);
void SetValidator(ValidMacros_t const* v_macros);
private:
/**
* #define FXY(X,Y,Z) ((X) + (Y))
* template <class T1, class T2, class T3>
* auto FXY(T1 X, T2 Y, T3 Z) -> decltype(((X) + (Y)))
* {
* return ((X) + (Y));
* }
*/
std::string DemacrofyFunctionLike(PPMacro const* m_ptr) const;
/**
* #define FXY(X,Y,Z) ((X) + (Y))
* auto FXY = [](decltype(i) X, decltype(j) Y, decltype(k) Z)
* { return ((X)+(Y)); }
* int i = FXY(i,j,k);
* @todo if type can be deduced from clang then do it
* for statement like macros use void function
*/
// lambda function transformation
std::string DemacrofyFunctionLikePostponed(const PPMacro * m_ptr)const;
std::string GetFunctionClosure(const PPMacro *m_ptr)const;
std::string GetFunctionArgs(const PPMacro *m_ptr)const;
std::string GetFunctionBody(const PPMacro *m_ptr)const;
/**
* #define shift2 var = var<<2
* auto shift2 = [&var]()->void { var = var<<2; }
*/
std::string DemacrofyObjectLikePostponed(const PPMacro *m_ptr) const;
/**
* #define _abc 1000
* constexpr auto _abc = 1000;
*/
std::string DemacrofyObjectLike(PPMacro const* m_ptr) const;
/**
* #define proc(X,Y) { FXY(X,Y,0); }
* template<typename T1, typename T2>
* void proc(T1 X, T2 Y)
* {
* FXY(X,Y,0);
* }
*/
std::string DemacrofyMultipleStatements(PPMacro const* m_ptr) const;
std::string DemacrofyStatementType(PPMacro const* m_ptr) const;
bool IsDemacrofiable(PPMacro const& mac) const;
std::string SuggestTranslation(std::string const& unique_macro_switch,
std::string const& demacrofied_fstream,
std::string const& original_str) const;
std::string GenerateTranslation(std::string const& macro_iden,
std::string const& unique_macro_switch,
std::string const& demacrofied_fstream) const;
std::string GenerateUniqueMacroSwitch(PPMacro const* m_ptr) const;
void InsertToReadyQueue(std::stringstream const& macro_iden,
std::string const& outstr);
bool CollectDemacrofiedString(PPMacro const* m_ptr, std::string& demacrofied_str) const;
private:
// it can change the readyQueue
friend class Parser;
// keeps a list of postponed macros according to the line number
typedef std::map<std::size_t, std::string> ReadyQueue_t;
ReadyQueue_t readyQueue;
// contains all the line numbers where macros were invoked in current file
InvocationStat_t* pInvocationStat;
// containes all the information about macros in current file a/c clang
ASTMacroStat_t* pASTMacroStat;
//pointer to the container having all the valid macros
//to be used only when the cleanup is in process
ValidMacros_t const* pValidaMacros;
std::string headerGuard;
int count;
};
#endif /*DEMACROFIER*/