Merge from amd64-branch:
[reactos.git] / reactos / tools / rbuild / installfile.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 along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18 #include "pch.h"
19 #include <assert.h>
20
21 #include "rbuild.h"
22
23 using std::string;
24
25 InstallFile::~InstallFile()
26 {
27 delete source;
28 delete target;
29 }
30
31 InstallFile::InstallFile ( const Project& project,
32 const XMLElement& installfileNode,
33 const string& path )
34 : XmlNode(project, installfileNode )
35 {
36 const XMLAttribute* base = node.GetAttribute ( "installbase", false );
37 const XMLAttribute* newname = node.GetAttribute ( "newname", false );
38
39 DirectoryLocation source_directory = SourceDirectory;
40 const XMLAttribute* att = node.GetAttribute ( "root", false );
41 if ( att != NULL)
42 {
43 if ( att->value == "intermediate" )
44 source_directory = IntermediateDirectory;
45 else if ( att->value == "output" )
46 source_directory = OutputDirectory;
47 else
48 {
49 throw InvalidAttributeValueException (
50 node.location,
51 "root",
52 att->value );
53 }
54 }
55
56 source = new FileLocation ( source_directory,
57 path,
58 node.value,
59 &node );
60 target = new FileLocation ( InstallDirectory,
61 base && base->value != "."
62 ? base->value
63 : "",
64 newname
65 ? newname->value
66 : node.value,
67 &node );
68 }