fixup yaml to be c++ compliant
[hiphop-php.git] / hphp / util / file-cache.h
blobbe1e37b3ec81225978c5b4083f1866a3363af5bf
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
17 #ifndef incl_HPHP_FILE_CACHE_H_
18 #define incl_HPHP_FILE_CACHE_H_
20 #include <memory>
21 #include <string>
23 #include "hphp/util/base.h"
25 namespace HPHP {
27 /**
28 * Stores file contents in memory. Used by web server for faster static
29 * content serving.
31 DECLARE_BOOST_TYPES(FileCache);
33 class CacheManager;
35 class FileCache {
36 public:
37 static std::string SourceRoot;
38 static bool UseNewCache;
40 public:
41 FileCache();
42 ~FileCache();
44 /**
45 * Archiving data.
48 void write(const char *name); // just the name
49 void write(const char *name, const char *fullpath); // name + data
51 void save(const char *filename);
53 /**
54 * Reading data.
56 void loadMmap(const char *filename);
57 bool fileExists(const char *name, bool isRelative = true) const;
58 bool dirExists(const char *name, bool isRelative = true) const;
59 bool exists(const char *name, bool isRelative = true) const;
60 char *read(const char *name, int &len, bool &compressed) const;
61 int64_t fileSize(const char *name, bool isRelative) const;
62 void dump() const;
64 static std::string GetRelativePath(const char *path);
66 private:
67 std::unique_ptr<CacheManager> cache_manager_;
70 } // namespace HPHP
72 #endif // incl_HPHP_FILE_CACHE_H_