blob: d46d8c049005e4ca2d76a402738e62750f01f646 (
plain)
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
|
/******************************************************************************
*
* Copyright (C) 1997-2020 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
* Documents produced by Doxygen are derivative works derived from the
* input used in their production; they are not affected by this license.
*/
#include <unordered_map>
#include "parserintf.h"
#include "docvisitor.h"
#include "util.h"
#include "types.h"
#include "doxygen.h"
struct DocVisitor::Private
{
int id;
std::unordered_map< std::string, std::unique_ptr<CodeParserInterface> > parserFactoryMap;
};
DocVisitor::DocVisitor(int id) : m_p(std::make_unique<Private>())
{
m_p->id = id;
}
DocVisitor::~DocVisitor()
{
}
CodeParserInterface &DocVisitor::getCodeParser(const char *extension)
{
std::string ext(extension?extension:"");
// for each extension we create a code parser once per visitor, so that
// the context of the same parser object is reused throughout multiple passes for instance
// for code fragments shown via dontinclude.
auto it = m_p->parserFactoryMap.find(ext);
if (it==m_p->parserFactoryMap.end())
{
auto factory = Doxygen::parserManager->getCodeParserFactory(extension);
auto result = m_p->parserFactoryMap.insert(std::make_pair(ext,factory()));
it = result.first;
}
return *it->second.get();
}
int DocVisitor::id() const
{
return m_p->id;
}
|