Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Unified Diff: tools/gn/item_tree.h

Issue 21114002: Add initial prototype for the GN meta-buildsystem. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add owners and readme Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/item_node.cc ('k') | tools/gn/item_tree.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/item_tree.h
diff --git a/tools/gn/item_tree.h b/tools/gn/item_tree.h
new file mode 100644
index 0000000000000000000000000000000000000000..f2ac4ae5779eea7100ce9fc560cbe384c381ffb0
--- /dev/null
+++ b/tools/gn/item_tree.h
@@ -0,0 +1,69 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef TOOLS_GN_ITEM_TREE_H_
+#define TOOLS_GN_ITEM_TREE_H_
+
+#include "base/containers/hash_tables.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/synchronization/lock.h"
+#include "tools/gn/label.h"
+
+class Err;
+class Item;
+class ItemNode;
+
+// Represents the full dependency tree if labeled items in the system.
+// Generally you will interact with this through the target manager, etc.
+class ItemTree {
+ public:
+ ItemTree();
+ ~ItemTree();
+
+ // This lock must be held when calling the "Locked" functions below.
+ base::Lock& lock() { return lock_; }
+
+ // Returns NULL if the item is not found.
+ //
+ // The lock must be held.
+ ItemNode* GetExistingNodeLocked(const Label& label);
+
+ // There must not be an item with this label in the tree already. Takes
+ // ownership of the pointer.
+ //
+ // The lock must be held.
+ void AddNodeLocked(ItemNode* node);
+
+ // Mark the given item as being generated. If it has no unresolved
+ // dependencies, it will be marked resolved, and the resolved state will be
+ // recursively pushed into the dependency tree. Returns an error if there was
+ // an error.
+ Err MarkItemGeneratedLocked(const Label& label);
+
+ // Fills the given vector with all known items.
+ void GetAllItemsLocked(std::vector<const Item*>* dest) const;
+
+ // Returns an error if there are unresolved dependencies, or no error if
+ // there aren't.
+ //
+ // The lock should not be held.
+ Err CheckForBadItems() const;
+
+ private:
+ Err MarkItemResolvedLocked(ItemNode* node);
+
+ // Given a set of unresolved nodes, looks for cycles and returns the error
+ // message describing any cycles it found.
+ std::string CheckForCircularDependenciesLocked(
+ const std::vector<const ItemNode*>& bad_nodes) const;
+
+ mutable base::Lock lock_;
+
+ typedef base::hash_map<Label, ItemNode*> StringToNodeHash;
+ StringToNodeHash items_; // Owning pointer.
+
+ DISALLOW_COPY_AND_ASSIGN(ItemTree);
+};
+
+#endif // TOOLS_GN_ITEM_TREE_H_
« no previous file with comments | « tools/gn/item_node.cc ('k') | tools/gn/item_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698