1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef TOOLS_GN_BUILDER_H_
6 #define TOOLS_GN_BUILDER_H_
8 #include "base/basictypes.h"
9 #include "base/callback.h"
10 #include "base/containers/hash_tables.h"
11 #include "base/memory/ref_counted.h"
12 #include "tools/gn/builder_record.h"
13 #include "tools/gn/label.h"
14 #include "tools/gn/label_ptr.h"
21 class Builder
: public base::RefCountedThreadSafe
<Builder
> {
23 typedef base::Callback
<void(const Item
*)> ResolvedCallback
;
25 Builder(Loader
* loader
);
27 // The resolved callback is called whenever a target has been resolved. This
28 // will be executed only on the main thread.
29 void set_resolved_callback(const ResolvedCallback
& cb
) {
30 resolved_callback_
= cb
;
33 Loader
* loader() const { return loader_
; }
35 void ItemDefined(scoped_ptr
<Item
> item
);
37 // Returns NULL if there is not a thing with the corresponding label.
38 const Item
* GetItem(const Label
& label
) const;
39 const Toolchain
* GetToolchain(const Label
& label
) const;
41 std::vector
<const BuilderRecord
*> GetAllRecords() const;
43 // Returns targets which should be generated and which are defined.
44 std::vector
<const Target
*> GetAllResolvedTargets() const;
46 // Returns the record for the given label, or NULL if it doesn't exist.
47 // Mostly used for unit tests.
48 const BuilderRecord
* GetRecord(const Label
& label
) const;
49 BuilderRecord
* GetRecord(const Label
& label
);
51 // If there are any undefined references, returns false and sets the error.
52 bool CheckForBadItems(Err
* err
) const;
55 friend class base::RefCountedThreadSafe
<Builder
>;
59 bool TargetDefined(BuilderRecord
* record
, Err
* err
);
61 // Returns the record associated with the given label. This function checks
62 // that if we already have references for it, the type matches. If no record
63 // exists yet, a new one will be created.
65 // If any of the conditions fail, the return value will be null and the error
66 // will be set. request_from is used as the source of the error.
67 BuilderRecord
* GetOrCreateRecordOfType(const Label
& label
,
68 const ParseNode
* request_from
,
69 BuilderRecord::ItemType type
,
72 // Returns the record associated with the given label. This function checks
73 // that it's already been resolved to the correct type.
75 // If any of the conditions fail, the return value will be null and the error
76 // will be set. request_from is used as the source of the error.
77 BuilderRecord
* GetResolvedRecordOfType(const Label
& label
,
78 const ParseNode
* request_from
,
79 BuilderRecord::ItemType type
,
82 bool AddDeps(BuilderRecord
* record
,
83 const LabelConfigVector
& configs
,
85 bool AddDeps(BuilderRecord
* record
,
86 const LabelTargetVector
& targets
,
88 bool AddToolchainDep(BuilderRecord
* record
,
92 // Given a target, sets the "should generate" bit and pushes it through the
93 // dependency tree. Any time the bit it set, we ensure that the given item is
94 // scheduled to be loaded.
96 // If the force flag is set, we'll ignore the current state of the record's
97 // should_generate flag, and set it on the dependents every time. This is
98 // used when defining a target: the "should generate" may have been set
99 // before the item was defined (if it is required by something that is
100 // required). In this case, we need to re-push the "should generate" flag
101 // to the item's dependencies.
102 void RecursiveSetShouldGenerate(BuilderRecord
* record
, bool force
);
104 void ScheduleItemLoadIfNecessary(BuilderRecord
* record
);
106 // This takes a BuilderRecord with resolved depdencies, and fills in the
107 // target's Label*Vectors with the resolved pointers.
108 bool ResolveItem(BuilderRecord
* record
, Err
* err
);
110 // Fills in the pointers in the given vector based on the labels. We assume
111 // that everything should be resolved by this point, so will return an error
112 // if anything isn't found or if the type doesn't match.
113 bool ResolveDeps(LabelTargetVector
* deps
, Err
* err
);
114 bool ResolveConfigs(LabelConfigVector
* configs
, Err
* err
);
115 bool ResolveForwardDependentConfigs(Target
* target
, Err
* err
);
117 // Given a list of unresolved records, tries to find any circular
118 // dependencies and returns the string describing the problem. If no circular
119 // deps were found, returns the empty string.
120 std::string
CheckForCircularDependencies(
121 const std::vector
<const BuilderRecord
*>& bad_records
) const;
123 // Non owning pointer.
127 typedef base::hash_map
<Label
, BuilderRecord
*> RecordMap
;
130 ResolvedCallback resolved_callback_
;
132 DISALLOW_COPY_AND_ASSIGN(Builder
);
135 #endif // TOOLS_GN_BUILDER_H_