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
|
/***************************************************************************
* Copyright (C) 2005-2007 Nicolas Hadacek <hadacek@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef TOOL_GROUP_H
#define TOOL_GROUP_H
#include "common/global/purl.h"
#include "common/common/group.h"
#include "common/common/version_data.h"
#include "generic_tool.h"
#include "coff/base/disassembler.h"
namespace Compile { class Manager; }
namespace Tool
{
enum CompileType { SeparateFiles, AllFiles, SingleFile };
class SourceGenerator;
//-----------------------------------------------------------------------------
class Group : public ::Group::Base
{
public:
static const char *CUSTOM_NAME;
Group();
bool isCustom() const { return ( name()==CUSTOM_NAME ); }
virtual TQString comment() const { return TQString(); }
virtual void init();
virtual const ::Tool::Base *base(Category category) const { return _bases[category].base; }
virtual TQString informationText() const = 0;
virtual ExecutableType preferedExecutableType() const = 0;
virtual bool hasDirectory(Compile::DirectoryType) const { return false; }
virtual PURL::FileType linkerScriptType() const { return PURL::Nb_FileTypes; }
virtual PURL::Directory autodetectDirectory(Compile::DirectoryType type, const PURL::Directory &execDir, bool withWine) const;
virtual bool hasOutputExecutableType(Tool::OutputExecutableType type) const { return ( type==Tool::OutputExecutableType::Coff ); }
virtual uint nbCheckDevices() const { return 1; }
bool hasCheckDevicesError() const { return _checkDevicesError; }
virtual Tool::Category checkDevicesCategory() const = 0;
virtual TQStringList checkDevicesOptions(uint) const { return TQStringList(); }
::Process::LineOutput *checkDevicesProcess(uint i, const PURL::Directory &execDir, bool withWine) const;
virtual TQValueList<const Device::Data *> getSupportedDevices(const TQString &s) const = 0;
virtual CompileType compileType() const = 0;
virtual bool needs(bool withProject, Category category) const;
Compile::Process *createCompileProcess(const Compile::Data &data, Compile::Manager *manager) const;
Compile::Config *createConfig(::Project *project) const;
bool hasCustomLinkerScript(const ::Project *project) const;
virtual PURL::Url linkerScript(const ::Project *project, Compile::LinkType type) const;
virtual PURL::FileType implementationType(PURL::ToolType type) const = 0;
virtual Compile::Process *processFactory(const Compile::Data &data) const = 0;
const SourceGenerator *sourceGenerator() const { return _sourceGenerator; }
bool check(const TQString &device, Log::Generic *log) const;
const VersionData &version() const { return _version; }
virtual bool generateDebugInformation(const TQString &device) const { Q_UNUSED(device); return true; }
protected:
enum NeedType { StandaloneOnly, ProjectOnly, Both };
class BaseData {
public:
BaseData() : base(0), type(Both) {}
BaseData(::Tool::Base *b, NeedType t) : base(b), type(t) {}
::Tool::Base *base;
NeedType type;
};
virtual void initSupported();
virtual BaseData baseFactory(Category category) const = 0;
virtual TQString defaultLinkerScriptFilename(Compile::LinkType type, const TQString &device) const;
virtual Compile::Config *configFactory(::Project *project) const = 0;
virtual SourceGenerator *sourceGeneratorFactory() const = 0;
bool checkExecutable(Tool::Category category, TQStringList &lines);
virtual VersionData getToolchainVersion() { return VersionData(); }
private:
SourceGenerator *_sourceGenerator;
TQMap<Category, BaseData> _bases;
bool _checkDevicesError;
VersionData _version;
};
} // namespace
#endif
|