ROSE 0.11.145.147
Driver.h
1#ifndef ROSE_CodeGen_Driver_H
2#define ROSE_CodeGen_Driver_H
3#include <RoseFirst.h>
4
5#include <set>
6#include <map>
7#include <string>
8
9#include <boost/filesystem.hpp>
10
11class SgProject;
12class SgSourceFile;
14class SgSymbol;
15class SgGlobal;
16
17namespace Rose { namespace CodeGen {
18
22class Driver {
23 public:
25
26 private:
27 size_t file_id_counter;
28 std::map<boost::filesystem::path, size_t> path_to_id_map;
29 std::map<size_t, SgSourceFile *> id_to_file_map;
30 std::map<SgSourceFile *, size_t> file_to_id_map;
31 std::map<size_t, std::set<size_t> > file_id_to_accessible_file_id_map;
32
33 void init(SgProject * project_);
34 size_t add(SgSourceFile * file);
35
36 public:
37 Driver();
38 Driver(SgProject * project_);
39 Driver(std::vector<std::string> & args);
40
42 void addCxxExtension(std::string) const;
43
45 size_t create(const boost::filesystem::path & path);
46 size_t add(const boost::filesystem::path & path);
47
50 size_t getFileID(const boost::filesystem::path & path) const;
51 size_t getFileID(SgSourceFile * source_file) const;
52 size_t getFileID(SgScopeStatement * scope) const;
54
56 SgGlobal * getGlobalScope(size_t file_id) const;
57
59 SgSourceFile * getSourceFile(size_t file_id) const;
60
62 void setUnparsedFile(size_t file_id) const;
63
65 void setCompiledFile(size_t file_id) const;
66
68 void addExternalHeader(size_t file_id, std::string header_name, bool is_system_header = true) const;
69
71 void addPragmaDecl(size_t file_id, std::string str) const;
72
73 template <typename ContainerFileID0, typename ContainerFileID1>
74 void exportNameQualification(ContainerFileID0 const & unparsed_ids, ContainerFileID1 const & header_ids) const {
75 for (auto unparsed_id: unparsed_ids) {
76 auto & extra_nodes_for_namequal_init = getSourceFile(unparsed_id)->get_extra_nodes_for_namequal_init();
77 for (auto header_id: header_ids) {
78 extra_nodes_for_namequal_init.push_back(getGlobalScope(header_id));
79 }
80 }
81 }
82};
83
84} }
85
86#endif
facilitates the manipulation of source-files (esp.
Definition Driver.h:22
void setCompiledFile(size_t file_id) const
Set a file to be compiled with the project (by default file added to the driver are NOT compiled)
SgProject * project
the Rose project
Definition Driver.h:24
void addExternalHeader(size_t file_id, std::string header_name, bool is_system_header=true) const
Insert external header for a given file.
size_t getFileID(const boost::filesystem::path &path) const
Retrieve file-id of associated with a file.
void addPragmaDecl(size_t file_id, std::string str) const
Add a pragma at the begining of the file.
size_t getFileID(SgSourceFile *source_file) const
Retrieve file-id of associated with a file.
void setUnparsedFile(size_t file_id) const
Set a file to be unparsed with the project (by default file added to the driver are NOT unparsed)
SgSourceFile * getSourceFile(size_t file_id) const
Retrieve the source-file node from a file-id.
size_t create(const boost::filesystem::path &path)
Create a file ()
void addCxxExtension(std::string) const
Utility method to add possible C++ extensions (hxx/hpp are not recognized by ROSE as source-file)
size_t getFileID(SgScopeStatement *scope) const
Retrieve file-id of associated with a file.
SgGlobal * getGlobalScope(size_t file_id) const
Retrieve the global scope of a file from its file-id.
This class represents the concept of a namespace definition.
This class represents a source project, with a list of SgFile objects and global information about th...
This class represents the concept of a scope in C++ (e.g. global scope, fuction scope,...
This class represents the concept of a name within the compiler.
The ROSE library.