This repository was archived by the owner on Mar 24, 2025. It is now read-only.
forked from fastbuild/fastbuild
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathFBuild.h
143 lines (106 loc) · 4.66 KB
/
FBuild.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
// FBuild.cpp - The main FBuild interface class
//------------------------------------------------------------------------------
#pragma once
// Includes
//------------------------------------------------------------------------------
#include "Tools/FBuild/FBuildCore/FBuildOptions.h"
#include "Tools/FBuild/FBuildCore/Graph/NodeGraph.h"
#include "Helpers/FBuildStats.h"
#include "WorkerPool/WorkerBrokerage.h"
#include "Core/Containers/Array.h"
#include "Core/Containers/Singleton.h"
#include "Core/Strings/AString.h"
#include "Core/Time/Timer.h"
// Forward Declarations
//------------------------------------------------------------------------------
class BFFMacros;
class Client;
class Dependencies;
class FileStream;
class ICache;
class IOStream;
class JobQueue;
class Node;
class NodeGraph;
// FBuild
//------------------------------------------------------------------------------
class FBuild : public Singleton< FBuild >
{
public:
explicit FBuild( const FBuildOptions & options = FBuildOptions() );
~FBuild();
// initialize the dependency graph, using the BFF config file
// OR a previously saved NodeGraph DB (if available/matching the BFF)
bool Initialize( const char * nodeGraphDBFile = nullptr );
// build a target
bool Build( const AString & target );
bool Build( const Array< AString > & targets );
bool Build( Node * nodeToBuild );
// after a build we can store progress/parsed rules for next time
bool SaveDependencyGraph( const char * nodeGraphDBFile ) const;
void SaveDependencyGraph( IOStream & memorySteam, const char* nodeGraphDBFile ) const;
const FBuildOptions & GetOptions() const { return m_Options; }
const AString & GetWorkingDir() const { return m_Options.GetWorkingDir(); }
static const char * GetDefaultBFFFileName();
inline const SettingsNode * GetSettings() const { return m_DependencyGraph->GetSettings(); }
void SetEnvironmentString( const char * envString, uint32_t size, const AString & libEnvVar );
inline const char * GetEnvironmentString() const { return m_EnvironmentString; }
inline uint32_t GetEnvironmentStringSize() const { return m_EnvironmentStringSize; }
void DisplayTargetList() const;
bool DisplayDependencyDB( const Array< AString > & targets ) const;
class EnvironmentVarAndHash
{
public:
EnvironmentVarAndHash( const char * name, uint32_t hash )
: m_Name( name )
, m_Hash( hash )
{}
inline const AString & GetName() const { return m_Name; }
inline uint32_t GetHash() const { return m_Hash; }
protected:
AString m_Name;
uint32_t m_Hash;
};
bool ImportEnvironmentVar( const char * name, bool optional, AString & value, uint32_t & hash );
const Array< EnvironmentVarAndHash > & GetImportedEnvironmentVars() const { return m_ImportedEnvironmentVars; }
void GetLibEnvVar( AString & libEnvVar ) const;
// stats - read access
const FBuildStats & GetStats() const { return m_BuildStats; }
// stats - write access
FBuildStats & GetStatsMutable() { return m_BuildStats; }
// attempt to cleanly stop the build
static void AbortBuild();
static void OnBuildError();
static inline bool GetStopBuild() { return s_StopBuild; }
static inline volatile bool * GetAbortBuildPointer() { return &s_AbortBuild; }
inline ICache * GetCache() const { return m_Cache; }
static bool GetTempDir( AString & outTempDir );
bool CacheOutputInfo() const;
bool CacheTrim() const;
private:
bool GetTargets( const Array< AString > & targets, Dependencies & outDeps ) const;
void UpdateBuildStatus( const Node * node );
static bool s_StopBuild;
static volatile bool s_AbortBuild; // -fastcancel - TODO:C merge with StopBuild
BFFMacros * m_Macros;
NodeGraph * m_DependencyGraph;
JobQueue * m_JobQueue;
Client * m_Client; // manage connections to worker servers
AString m_DependencyGraphFile;
ICache * m_Cache;
Timer m_Timer;
float m_LastProgressOutputTime;
float m_LastProgressCalcTime;
float m_SmoothedProgressCurrent;
float m_SmoothedProgressTarget;
FBuildStats m_BuildStats;
FBuildOptions m_Options;
WorkerBrokerage m_WorkerBrokerage;
AString m_OldWorkingDir;
// a double-null terminated string
char * m_EnvironmentString;
uint32_t m_EnvironmentStringSize; // size excluding last null
AString m_LibEnvVar; // LIB= value
Array< EnvironmentVarAndHash > m_ImportedEnvironmentVars;
};
//------------------------------------------------------------------------------