📄 backend.cpp
字号:
/*
* Copyright (C) 2005 Casper S. Hornstrup
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "../pch.h"
#include "../rbuild.h"
#include "backend.h"
using std::string;
using std::vector;
using std::map;
map<string,Backend::Factory*>*
Backend::Factory::factories = NULL;
int
Backend::Factory::ref = 0;
Backend::Factory::Factory ( const std::string& name_, const std::string& description_ )
{
string name(name_);
strlwr ( &name[0] );
if ( !ref++ )
factories = new map<string,Factory*>;
(*factories)[name] = this;
m_name = name;
m_description = description_;
}
Backend::Factory::~Factory ()
{
if ( !--ref )
{
delete factories;
factories = NULL;
}
}
/*static*/ Backend*
Backend::Factory::Create ( const string& name,
Project& project,
Configuration& configuration )
{
string sname ( name );
strlwr ( &sname[0] );
if ( !factories || !factories->size () )
throw InvalidOperationException ( __FILE__,
__LINE__,
"No registered factories" );
Backend::Factory* f = (*factories)[sname];
if ( !f )
{
throw UnknownBackendException ( sname );
return NULL;
}
return (*f) ( project, configuration );
}
Backend::Backend ( Project& project,
Configuration& configuration )
: ProjectNode ( project ),
configuration ( configuration )
{
}
Backend::~Backend()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -