Make comparison IR ops layout agnostic
[hiphop-php.git] / hphp / runtime / base / stream-wrapper-registry.h
blobacf34110ffd170c293100d59284e8d42b987ceb2
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-present 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/file.h"
24 #include "hphp/runtime/base/stream-wrapper.h"
26 namespace HPHP { namespace Stream {
27 ///////////////////////////////////////////////////////////////////////////////
28 struct Wrapper;
30 bool registerWrapper(const std::string &scheme, Wrapper *wrapper);
31 Array enumWrappers();
33 String getWrapperProtocol(const char* url, int* pathIndex = nullptr);
34 Wrapper* getWrapper(const String& scheme, bool warn = true);
35 Wrapper* getWrapperFromURI(const String& uri,
36 int* pathIndex = nullptr, bool warn = true);
38 /* Called during process init to register core wrappers */
39 void RegisterCoreWrappers();
41 void setThreadLocalFileHandler(Wrapper* wrapper);
43 ///////////////////////////////////////////////////////////////////////////////
46 #endif // HPHP_STREAM_WRAPPER_REGISTRY_H