HttpServer Library for "mbed-os" which added a snapshot handler.

Dependents:   GR-PEACH-webcam GR-Boards_WebCamera GR-Boards_WebCamera GR-Boards_WebCamera

Fork of HttpServer_snapshot by Renesas

Committer:
dkato
Date:
Fri Sep 13 02:08:33 2019 +0000
Revision:
18:673d663a1ed7
Parent:
11:0700755d64ae
Add macro HTTP_SERVER_THREAD_MAX (default 1)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yueee_yt 0:fdf9c2c5200f 1
yueee_yt 0:fdf9c2c5200f 2 /*
yueee_yt 0:fdf9c2c5200f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
yueee_yt 0:fdf9c2c5200f 4
yueee_yt 0:fdf9c2c5200f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
yueee_yt 0:fdf9c2c5200f 6 of this software and associated documentation files (the "Software"), to deal
yueee_yt 0:fdf9c2c5200f 7 in the Software without restriction, including without limitation the rights
yueee_yt 0:fdf9c2c5200f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
yueee_yt 0:fdf9c2c5200f 9 copies of the Software, and to permit persons to whom the Software is
yueee_yt 0:fdf9c2c5200f 10 furnished to do so, subject to the following conditions:
yueee_yt 0:fdf9c2c5200f 11
yueee_yt 0:fdf9c2c5200f 12 The above copyright notice and this permission notice shall be included in
yueee_yt 0:fdf9c2c5200f 13 all copies or substantial portions of the Software.
yueee_yt 0:fdf9c2c5200f 14
yueee_yt 0:fdf9c2c5200f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
yueee_yt 0:fdf9c2c5200f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
yueee_yt 0:fdf9c2c5200f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
yueee_yt 0:fdf9c2c5200f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
yueee_yt 0:fdf9c2c5200f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
yueee_yt 0:fdf9c2c5200f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
yueee_yt 0:fdf9c2c5200f 21 THE SOFTWARE.
yueee_yt 0:fdf9c2c5200f 22 */
yueee_yt 0:fdf9c2c5200f 23
yueee_yt 0:fdf9c2c5200f 24 #ifndef SIMPLE_HANDLER_H
yueee_yt 0:fdf9c2c5200f 25 #define SIMPLE_HANDLER_H
yueee_yt 0:fdf9c2c5200f 26
yueee_yt 0:fdf9c2c5200f 27 #include "../HTTPRequestHandler.h"
yueee_yt 0:fdf9c2c5200f 28
yueee_yt 0:fdf9c2c5200f 29 class SimpleHandler : public HTTPRequestHandler
yueee_yt 0:fdf9c2c5200f 30 {
yueee_yt 0:fdf9c2c5200f 31 public:
dkato 11:0700755d64ae 32 SimpleHandler(const char* rootPath, const char* path, TCPSocket* pTCPSocket);
yueee_yt 0:fdf9c2c5200f 33 virtual ~SimpleHandler();
yueee_yt 0:fdf9c2c5200f 34
yueee_yt 0:fdf9c2c5200f 35 //protected:
dkato 11:0700755d64ae 36 static inline HTTPRequestHandler* inst(const char* rootPath, const char* path, TCPSocket* pTCPSocket) { return new SimpleHandler(rootPath, path, pTCPSocket); } //if we ever could do static virtual functions, this would be one
yueee_yt 0:fdf9c2c5200f 37
yueee_yt 0:fdf9c2c5200f 38 virtual void doGet();
yueee_yt 0:fdf9c2c5200f 39 virtual void doPost();
yueee_yt 0:fdf9c2c5200f 40 virtual void doHead();
yueee_yt 0:fdf9c2c5200f 41
yueee_yt 0:fdf9c2c5200f 42 virtual void onReadable(); //Data has been read
yueee_yt 0:fdf9c2c5200f 43 virtual void onWriteable(); //Data has been written & buf is free
yueee_yt 0:fdf9c2c5200f 44 virtual void onClose(); //Connection is closing
yueee_yt 0:fdf9c2c5200f 45 };
yueee_yt 0:fdf9c2c5200f 46
yueee_yt 0:fdf9c2c5200f 47 #endif
dkato 11:0700755d64ae 48