Supersedes r40538, r40539; RosBE bug fixed with a RosBE-specific hack (-nostdinc...
[reactos.git] / reactos / tools / rbuild / define.cpp
1 /*
2 * Copyright (C) 2005 Casper S. Hornstrup
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18 #include "pch.h"
19 #include <assert.h>
20
21 #include "rbuild.h"
22
23 using std::string;
24 using std::vector;
25
26 Define::Define ( const Project& project,
27 const XMLElement& defineNode )
28 : project(project),
29 module(NULL),
30 node(&defineNode)
31 {
32 Initialize();
33 }
34
35 Define::Define ( const Project& project,
36 const Module* module,
37 const XMLElement& defineNode )
38 : project(project),
39 module(module),
40 node(&defineNode)
41 {
42 Initialize();
43 }
44
45 Define::Define ( const Project& project,
46 const Module* module,
47 const std::string& name_,
48 const std::string& backend_,
49 bool redefine_)
50 : project(project),
51 module(module),
52 node(NULL)
53 {
54 name = name_;
55 value = "";
56 backend = backend_;
57 redefine = redefine_;
58 }
59
60 Define::~Define ()
61 {
62 // if ( node )
63 // delete node;
64 // if ( module )
65 // delete module;
66 }
67
68 void
69 Define::Initialize()
70 {
71 redefine = node->name == "redefine";
72
73 const XMLAttribute* att = node->GetAttribute ( "name", true );
74
75 att = node->GetAttribute ( "name", true );
76 assert(att);
77
78 size_t name_len = att->value.find ( '(' );
79
80 name = att->value.substr ( 0, name_len );
81
82 if ( name_len != std::string::npos )
83 arguments = att->value.substr ( att->value.find ( '(' ) );
84
85 value = node->value;
86
87 att = node->GetAttribute ( "backend", false );
88 if ( att )
89 backend = att->value;
90
91 ParseCompilers ( *node, "cpp" );
92 }
93
94 void
95 Define::ProcessXML()
96 {
97 }