Add RPC proxy support
[reactos.git] / reactos / tools / rbuild / bootstrap.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 Bootstrap::Bootstrap ( const Project& project_,
26 const Module* module_,
27 const XMLElement& bootstrapNode )
28 : project(project_),
29 module(module_),
30 node(bootstrapNode)
31 {
32 Initialize();
33 }
34
35 Bootstrap::~Bootstrap ()
36 {
37 }
38
39 bool
40 Bootstrap::IsSupportedModuleType ( ModuleType type )
41 {
42 switch ( type )
43 {
44 case Kernel:
45 case KernelModeDLL:
46 case NativeDLL:
47 case NativeCUI:
48 case Win32DLL:
49 case Win32OCX:
50 case Win32CUI:
51 case Win32SCR:
52 case Win32GUI:
53 case KernelModeDriver:
54 case BootSector:
55 case BootLoader:
56 case BootProgram:
57 return true;
58 case BuildTool:
59 case StaticLibrary:
60 case ObjectLibrary:
61 case Iso:
62 case LiveIso:
63 case IsoRegTest:
64 case LiveIsoRegTest:
65 case Test:
66 case RpcServer:
67 case RpcClient:
68 case RpcProxy:
69 case Alias:
70 case IdlHeader:
71 case EmbeddedTypeLib:
72 case ElfExecutable:
73 return false;
74 }
75 throw InvalidOperationException ( __FILE__,
76 __LINE__ );
77 }
78
79 string
80 Bootstrap::ReplaceVariable ( const string& name,
81 const string& value,
82 string path )
83 {
84 size_t i = path.find ( name );
85 if ( i != string::npos )
86 return path.replace ( i, name.length (), value );
87 else
88 return path;
89 }
90
91 void
92 Bootstrap::Initialize ()
93 {
94 if ( !IsSupportedModuleType ( module->type ) )
95 {
96 throw XMLInvalidBuildFileException (
97 node.location,
98 "<bootstrap> is not applicable for this module type." );
99 }
100
101 const XMLAttribute* att = node.GetAttribute ( "installbase", false );
102 if ( att != NULL )
103 base = ReplaceVariable ( "$(CDOUTPUT)", Environment::GetCdOutputPath (), att->value );
104 else
105 base = "";
106
107 att = node.GetAttribute ( "nameoncd", false );
108 if ( att != NULL )
109 nameoncd = att->value;
110 else
111 nameoncd = module->output->name;
112 }
113
114 void
115 Bootstrap::ProcessXML()
116 {
117 }