This repository has been archived by the owner on Jun 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bob.h
184 lines (132 loc) · 4.57 KB
/
bob.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
//
// bob.h - part of the GAP installer BOB
//
// Copyright (C) by Max Neunhoeffer 2012-2013
// This file is free software, see license information at the end.
//
#define BOBVERSION 17
#include <unistd.h>
#include <string.h>
#include <string>
#include <vector>
#include <algorithm>
#include "config.h"
using std::vector;
using std::string;
namespace BOB {
enum Status { UNKNOWN = -1, OK = 0, ADVICE = 1, WARN = 2, ERROR = 3 };
typedef int (*testfunc_t)(string &st);
class Test;
vector<Test *> &alltests(void);
bool compareTestPtrs(Test *a, Test *b);
class Test {
public:
string name;
int phase;
testfunc_t tester;
int num;
string str;
Status res;
Test(string name, int phase, testfunc_t tester);
void run(void)
{
num = tester(str);
res = OK;
}
static Test *find(string name);
};
// Some standard tests:
extern Test Have_make;
extern Test Which_C_Compiler;
extern Test C_Compiler_Name;
extern Test Which_Architecture;
extern Test Which_OS_Variant;
extern Test Which_Wordsize;
extern Test Can_Compile_32bit;
extern Test Double_Compile;
Status Have_C_Header(string headername, bool m32 = false);
Status Have_C_Library(string lib, bool m32 = false);
extern bool interactive;
extern bool osxaddpaths;
extern string origCFLAGS;
extern string origLDFLAGS;
// Build components:
class Component;
vector<Component *> &allcomps(void);
bool compareComponentPtrs(Component *a, Component *b);
class Component {
public:
typedef Status (*workerfunc)(string targetdir);
typedef Status (*prereqfunc)(string targetdir, Status depsresult);
string name;
vector<string> depends;
prereqfunc prereq;
Status prereqres;
workerfunc get;
Status getres;
workerfunc build;
Status buildres;
Component(string name, const char *dependencies[],
prereqfunc prerequisites, workerfunc getter, workerfunc builder);
static int findnr(string name);
static Component *find(string name);
};
// Access to the environment:
extern vector<string> envkeys;
extern vector<string> envvals;
void initenvironment();
string getenvironment(string key);
void setenvironment(string key, string val);
void delenvironment(string key);
// Some utility functions:
void out(Status severity, string msg);
bool which(string name, string &res);
bool exists(string filename);
bool isdir(string dirname);
Status downloadname(string targetname, string url, string &localname);
Status download(string url, string localname);
Status checksha1(string filename, string hash);
void get(string targetdir, string url, string &filename, bool alwaysget);
// Throws an exception of type Status in case of an error
void getind(string targetdir, string url, string &archivename);
// Throws an exception of type Status in case of an error
void unpack(string archivename);
// Throws an exception of type Status in case of an error
void sh(string cmd, int stdinfd = 0, bool quiet = false);
// Throws an exception of type Status in case of an error
int shbg(string cmd, int stdinfd = 0, bool quiet = false);
Status rmrf(string dirname);
Status cp(string from, string to);
void cd(string dir);
// Throws an exception of type Status in case of an error
void cdprefix(string dir, string &dirfound);
// dir is a prefix of a directory name in the current directory
// If this uniquely determines the directory or there is a perfect
// match, the current directory is changed and dirfound is changed
// accordingly. Otherwise an ERROR exception is thrown.
void readlines(string filename, vector<string> &v);
// Throws ERROR if anything goes wrong.
void writelines(string filename, vector<string> &v);
// Throws ERROR if anything goes wrong.
void edit(vector<string> &edscript);
// Throws ERROR if anything goes wrong.
void edit(string edscriptpath);
// Throws ERROR if anything goes wrong.
void listdir(string dirname, vector<string> &names);
// Throws ERROR if anything goes wrong.
extern string finkpath;
} // namespace BOB
//
// 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 3 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, see <http://www.gnu.org/licenses/>.
//