/*************************************************************************** * Copyright (C) 2005-2007 Nicolas Hadacek * * * * 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 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 _bases; bool _checkDevicesError; VersionData _version; }; } // namespace #endif