Use folly::dynamic::object and folly::dynamic::string exclusivly
[hiphop-php.git] / hphp / runtime / base / stream-wrapper-registry.h
blob9a56eb521586493d2d89d8597a5b860aa8c666f6
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-2014 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 HPHP_STREAM_WRAPPER_REGISTRY_H
18 #define HPHP_STREAM_WRAPPER_REGISTRY_H
20 #include <map>
21 #include <string>
22 #include <memory>
23 #include "hphp/runtime/base/types.h"
24 #include "hphp/runtime/base/file.h"
25 #include "hphp/runtime/base/stream-wrapper.h"
27 namespace HPHP { namespace Stream {
28 ///////////////////////////////////////////////////////////////////////////////
29 class Wrapper;
31 bool registerWrapper(const std::string &scheme, Wrapper *wrapper);
32 bool disableWrapper(const String& scheme);
33 bool restoreWrapper(const String& scheme);
34 bool registerRequestWrapper(const String& scheme, std::unique_ptr<Wrapper> wrapper);
35 Array enumWrappers();
36 Wrapper* getWrapper(const String& scheme);
37 Wrapper* getWrapperFromURI(const String& uri);
39 /* Called during process init to register core wrappers */
40 void RegisterCoreWrappers();
42 ///////////////////////////////////////////////////////////////////////////////
45 #endif // HPHP_STREAM_WRAPPER_REGISTRY_H