You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
737 B
C++
35 lines
737 B
C++
#ifndef WEBCC_VIEW_H_
|
|
#define WEBCC_VIEW_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "webcc/request.h"
|
|
#include "webcc/response.h"
|
|
|
|
namespace webcc {
|
|
|
|
class View {
|
|
public:
|
|
View() = default;
|
|
|
|
virtual ~View() = default;
|
|
|
|
View(const View&) = delete;
|
|
View& operator=(const View&) = delete;
|
|
|
|
virtual ResponsePtr Handle(RequestPtr request) = 0;
|
|
|
|
// Return true if you want the request data of the given method to be streamed
|
|
// to a temp file. Data streaming is useful for receiving large data, e.g.,
|
|
// a JPEG image, posted from the client.
|
|
virtual bool Stream(const std::string& /*method*/) {
|
|
return false; // No streaming by default
|
|
}
|
|
};
|
|
|
|
using ViewPtr = std::shared_ptr<View>;
|
|
|
|
} // namespace webcc
|
|
|
|
#endif // WEBCC_VIEW_H_
|