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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/inode_pool.h

Issue 12166002: Cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years, 11 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 | « no previous file | native_client_sdk/src/libraries/nacl_mounts/library.dsc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/libraries/nacl_mounts/inode_pool.h
diff --git a/native_client_sdk/src/libraries/nacl_mounts/inode_pool.h b/native_client_sdk/src/libraries/nacl_mounts/inode_pool.h
new file mode 100644
index 0000000000000000000000000000000000000000..aabd86064a9637bcbe65b9caa0e72262cde50b79
--- /dev/null
+++ b/native_client_sdk/src/libraries/nacl_mounts/inode_pool.h
@@ -0,0 +1,65 @@
+/* Copyright (c) 2012 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 LIBRARIES_NACL_MOUNTS_INODE_POOL_H_
+#define LIBRARIES_NACL_MOUNTS_INODE_POOL_H_
+
+#include <stdlib.h>
+#include <vector>
+
+#include "nacl_mounts/osstat.h"
+#include "pthread.h"
+#include "utils/auto_lock.h"
+
+
+class INodePool {
+ public:
+ INodePool()
+ : max_nodes_(0),
+ num_nodes_(0) {
+ pthread_mutex_init(&lock_, NULL);
+ }
+ ~INodePool() {
+ pthread_mutex_destroy(&lock_);
+ }
+
+ ino_t Acquire() {
+ AutoLock lock(&lock_);
+ const int INO_CNT = 8;
+
+ // If we run out of INO numbers, then allocate 8 more
+ if (inos_.size() == 0) {
+ max_nodes_ += INO_CNT;
+ // Add eight more to the stack in reverse order, offset by 1
+ // since '0' refers to no INO.
+ for (int a = 0; a < INO_CNT; a++) {
+ inos_.push_back(max_nodes_ - a);
+ }
+ }
+
+ // Return the INO at the top of the stack.
+ int val = inos_.back();
+ inos_.pop_back();
+ num_nodes_++;
+ return val;
+ }
+
+ void Release(ino_t ino) {
+ AutoLock lock(&lock_);
+ inos_.push_back(ino);
+ num_nodes_--;
+ }
+
+ size_t size() const { return num_nodes_; }
+ size_t capacity() const { return max_nodes_; }
+
+ private:
+ size_t num_nodes_;
+ size_t max_nodes_;
+ std::vector<ino_t> inos_;
+ pthread_mutex_t lock_;
+};
+
+#endif // LIBRARIES_NACL_MOUNTS_INODE_POOL_H_
« no previous file with comments | « no previous file | native_client_sdk/src/libraries/nacl_mounts/library.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698