disabled warning 4214
[reactos.git] / reactos / tools / rbuild / backend / backend.cpp
index 148a5a5..83c6df2 100644 (file)
@@ -1,10 +1,79 @@
-#ifdef _MSC_VER\r
-#pragma warning ( disable : 4786 ) // identifier was truncated to '255' characters in the debug information\r
-#endif//_MSC_VER\r
-\r
-#include "../Rbuild.h"\r
-#include "backend.h"\r
-\r
-Backend::Backend ( Project& project ) : ProjectNode(project)\r
-{\r
-}\r
+/*
+ * 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_ )
+{
+       string name(name_);
+       strlwr ( &name[0] );
+       if ( !ref++ )
+               factories = new map<string,Factory*>;
+       (*factories)[name] = this;
+}
+
+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()
+{
+}