/***************************************************************************** * Author: Valient Gough * ***************************************************************************** * Copyright (c) 2007, Valient Gough * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser 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 Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef _Context_incl_ #define _Context_incl_ #include "base/shared_ptr.h" #include "fs/encfs.h" #include #ifdef HAVE_TR1_UNORDERED_MAP #include using std::tr1::unordered_map; #else #include using std::unordered_map; #endif namespace encfs { struct EncFS_Args; struct EncFS_Opts; class FileNode; class DirNode; class EncFS_Context { public: EncFS_Context(); ~EncFS_Context(); shared_ptr getNode(void *ptr); shared_ptr lookupNode(const char *path); int getAndResetUsageCounter(); int openFileCount() const; void *putNode(const char *path, const shared_ptr &node); void eraseNode(const char *path, void *placeholder); void renameNode(const char *oldName, const char *newName); void setRoot(const shared_ptr &root); shared_ptr getRoot(int *err); bool isMounted(); shared_ptr args; shared_ptr opts; bool publicFilesystem; // root path to cipher dir std::string rootCipherDir; // for idle monitor bool running; pthread_t monitorThread; pthread_cond_t wakeupCond; pthread_mutex_t wakeupMutex; private: /* This placeholder is what is referenced in FUSE context (passed to * callbacks). * * A FileNode may be opened many times, but only one FileNode instance per * file is kept. Rather then doing reference counting in FileNode, we * store a unique Placeholder for each open() until the corresponding * release() is called. shared_ptr then does our reference counting for * us. */ struct Placeholder { shared_ptr node; Placeholder( const shared_ptr &ptr ) : node(ptr) {} }; // set of open files, indexed by path typedef unordered_map > FileMap; mutable pthread_mutex_t contextMutex; FileMap openFiles; int usageCount; shared_ptr root; }; int remountFS( EncFS_Context *ctx ); } // namespace encfs #endif