Move some more autogenerated files to intermediate directory
[reactos.git] / reactos / tools / rbuild / cdfile.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
25 string
26 CDFile::ReplaceVariable ( const string& name,
27 const string& value,
28 string path )
29 {
30 size_t i = path.find ( name );
31 if ( i != string::npos )
32 return path.replace ( i, name.length (), value );
33 else
34 return path;
35 }
36
37 CDFile::CDFile ( const Project& project_,
38 const XMLElement& cdfileNode,
39 const string& path )
40 : project ( project_ ),
41 node ( cdfileNode )
42 {
43 const XMLAttribute* att = node.GetAttribute ( "base", false );
44 if ( att != NULL )
45 base = ReplaceVariable ( "$(CDOUTPUT)", Environment::GetCdOutputPath (), att->value );
46 else
47 base = "";
48
49 att = node.GetAttribute ( "nameoncd", false );
50 if ( att != NULL )
51 nameoncd = att->value;
52 else
53 nameoncd = node.value;
54 name = node.value;
55 this->path = path;
56 }
57
58 CDFile::~CDFile ()
59 {
60 }
61
62 string
63 CDFile::GetPath () const
64 {
65 return path + sSep + name;
66 }
67
68 void
69 CDFile::ProcessXML()
70 {
71 }