Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of HttpServer_snapshot_mbed-os by
Handler/FSHandler.h@0:fdf9c2c5200f, 2014-02-20 (annotated)
- Committer:
- yueee_yt
- Date:
- Thu Feb 20 05:36:19 2014 +0000
- Revision:
- 0:fdf9c2c5200f
- Child:
- 8:a9fb8fe9b8a3
Initialize version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
yueee_yt | 0:fdf9c2c5200f | 1 | /* |
yueee_yt | 0:fdf9c2c5200f | 2 | Permission is hereby granted, free of charge, to any person obtaining a copy |
yueee_yt | 0:fdf9c2c5200f | 3 | of this software and associated documentation files (the "Software"), to deal |
yueee_yt | 0:fdf9c2c5200f | 4 | in the Software without restriction, including without limitation the rights |
yueee_yt | 0:fdf9c2c5200f | 5 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
yueee_yt | 0:fdf9c2c5200f | 6 | copies of the Software, and to permit persons to whom the Software is |
yueee_yt | 0:fdf9c2c5200f | 7 | furnished to do so, subject to the following conditions: |
yueee_yt | 0:fdf9c2c5200f | 8 | |
yueee_yt | 0:fdf9c2c5200f | 9 | The above copyright notice and this permission notice shall be included in |
yueee_yt | 0:fdf9c2c5200f | 10 | all copies or substantial portions of the Software. |
yueee_yt | 0:fdf9c2c5200f | 11 | |
yueee_yt | 0:fdf9c2c5200f | 12 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
yueee_yt | 0:fdf9c2c5200f | 13 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
yueee_yt | 0:fdf9c2c5200f | 14 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
yueee_yt | 0:fdf9c2c5200f | 15 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
yueee_yt | 0:fdf9c2c5200f | 16 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
yueee_yt | 0:fdf9c2c5200f | 17 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
yueee_yt | 0:fdf9c2c5200f | 18 | THE SOFTWARE. |
yueee_yt | 0:fdf9c2c5200f | 19 | */ |
yueee_yt | 0:fdf9c2c5200f | 20 | |
yueee_yt | 0:fdf9c2c5200f | 21 | #ifndef FS_HANDLER_H |
yueee_yt | 0:fdf9c2c5200f | 22 | #define FS_HANDLER_H |
yueee_yt | 0:fdf9c2c5200f | 23 | |
yueee_yt | 0:fdf9c2c5200f | 24 | #include "../HTTPRequestHandler.h" |
yueee_yt | 0:fdf9c2c5200f | 25 | #include "mbed.h" |
yueee_yt | 0:fdf9c2c5200f | 26 | #include "EthernetInterface.h" |
yueee_yt | 0:fdf9c2c5200f | 27 | #include <map> |
yueee_yt | 0:fdf9c2c5200f | 28 | using std::map; |
yueee_yt | 0:fdf9c2c5200f | 29 | |
yueee_yt | 0:fdf9c2c5200f | 30 | #include <string> |
yueee_yt | 0:fdf9c2c5200f | 31 | using std::string; |
yueee_yt | 0:fdf9c2c5200f | 32 | |
yueee_yt | 0:fdf9c2c5200f | 33 | class FSHandler : public HTTPRequestHandler |
yueee_yt | 0:fdf9c2c5200f | 34 | { |
yueee_yt | 0:fdf9c2c5200f | 35 | public: |
yueee_yt | 0:fdf9c2c5200f | 36 | FSHandler(const char* rootPath, const char* path, TCPSocketConnection* pTCPSocketConnection); |
yueee_yt | 0:fdf9c2c5200f | 37 | virtual ~FSHandler(); |
yueee_yt | 0:fdf9c2c5200f | 38 | |
yueee_yt | 0:fdf9c2c5200f | 39 | static void mount(const string& fsPath, const string& rootPath); |
yueee_yt | 0:fdf9c2c5200f | 40 | |
yueee_yt | 0:fdf9c2c5200f | 41 | //protected: |
yueee_yt | 0:fdf9c2c5200f | 42 | static inline HTTPRequestHandler* inst(const char* rootPath, const char* path, TCPSocketConnection* pTCPSocketConnection) { return new FSHandler(rootPath, path, pTCPSocketConnection); } //if we ever could do static virtual functions, this would be one |
yueee_yt | 0:fdf9c2c5200f | 43 | |
yueee_yt | 0:fdf9c2c5200f | 44 | virtual void doGet(); |
yueee_yt | 0:fdf9c2c5200f | 45 | virtual void doPost(); |
yueee_yt | 0:fdf9c2c5200f | 46 | virtual void doHead(); |
yueee_yt | 0:fdf9c2c5200f | 47 | |
yueee_yt | 0:fdf9c2c5200f | 48 | virtual void onReadable(); //Data has been read |
yueee_yt | 0:fdf9c2c5200f | 49 | virtual void onWriteable(); //Data has been written & buf is free |
yueee_yt | 0:fdf9c2c5200f | 50 | virtual void onClose(); //Connection is closing |
yueee_yt | 0:fdf9c2c5200f | 51 | |
yueee_yt | 0:fdf9c2c5200f | 52 | private: |
yueee_yt | 0:fdf9c2c5200f | 53 | FILE* m_fp; |
yueee_yt | 0:fdf9c2c5200f | 54 | bool m_err404; |
yueee_yt | 0:fdf9c2c5200f | 55 | static map<string,string> m_lFsPath; |
yueee_yt | 0:fdf9c2c5200f | 56 | }; |
yueee_yt | 0:fdf9c2c5200f | 57 | |
yueee_yt | 0:fdf9c2c5200f | 58 | #endif |