mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
123 lines
4.2 KiB
C++
123 lines
4.2 KiB
C++
#include "crow_all.h"
|
|
|
|
class ExampleLogHandler : public crow::ILogHandler
|
|
{
|
|
public:
|
|
void log(std::string /*message*/, crow::LogLevel /*level*/) override
|
|
{
|
|
// cerr << "ExampleLogHandler -> " << message;
|
|
}
|
|
};
|
|
|
|
int main()
|
|
{
|
|
crow::SimpleApp app;
|
|
|
|
CROW_ROUTE(app, "/")
|
|
.name("hello")([] {
|
|
return "Hello World!";
|
|
});
|
|
|
|
CROW_ROUTE(app, "/about")
|
|
([]() {
|
|
return "About Crow example.";
|
|
});
|
|
|
|
// simple json response
|
|
CROW_ROUTE(app, "/json")
|
|
([] {
|
|
crow::json::wvalue x({{"message", "Hello, World!"}});
|
|
x["message2"] = "Hello, World.. Again!";
|
|
return x;
|
|
});
|
|
|
|
CROW_ROUTE(app, "/json-initializer-list-constructor")
|
|
([] {
|
|
crow::json::wvalue r({
|
|
{"first", "Hello world!"}, /* stores a char const* hence a json::type::String */
|
|
{"second", std::string("How are you today?")}, /* stores a std::string hence a json::type::String. */
|
|
{"third", 54}, /* stores an int (as 54 is an int literal) hence a std::int64_t. */
|
|
{"fourth", (int64_t)54l}, /* stores a long (as 54l is a long literal) hence a std::int64_t. */
|
|
{"fifth", 54u}, /* stores an unsigned int (as 54u is a unsigned int literal) hence a std::uint64_t. */
|
|
{"sixth", (uint64_t)54ul}, /* stores an unsigned long (as 54ul is an unsigned long literal) hence a std::uint64_t. */
|
|
{"seventh", 2.f}, /* stores a float (as 2.f is a float literal) hence a double. */
|
|
{"eighth", 2.}, /* stores a double (as 2. is a double literal) hence a double. */
|
|
{"ninth", nullptr}, /* stores a std::nullptr hence json::type::Null . */
|
|
{"tenth", true} /* stores a bool hence json::type::True . */
|
|
});
|
|
return r;
|
|
});
|
|
|
|
// json list response
|
|
CROW_ROUTE(app, "/json_list")
|
|
([] {
|
|
crow::json::wvalue x(crow::json::wvalue::list({1, 2, 3}));
|
|
return x;
|
|
});
|
|
|
|
CROW_ROUTE(app, "/hello/<int>")
|
|
([](int count) {
|
|
if (count > 100)
|
|
return crow::response(400);
|
|
std::ostringstream os;
|
|
os << count << " bottles of beer!";
|
|
return crow::response(os.str());
|
|
});
|
|
|
|
// example which uses only response as a paramter without
|
|
// request being a parameter.
|
|
CROW_ROUTE(app, "/add/<int>/<int>")
|
|
([](crow::response& res, int a, int b) {
|
|
std::ostringstream os;
|
|
os << a + b;
|
|
res.write(os.str());
|
|
res.end();
|
|
});
|
|
|
|
// Compile error with message "Handler type is mismatched with URL paramters"
|
|
//CROW_ROUTE(app,"/another/<int>")
|
|
//([](int a, int b){
|
|
//return crow::response(500);
|
|
//});
|
|
|
|
// more json example
|
|
CROW_ROUTE(app, "/add_json")
|
|
.methods("POST"_method)([](const crow::request& req) {
|
|
auto x = crow::json::load(req.body);
|
|
if (!x)
|
|
return crow::response(400);
|
|
int sum = x["a"].i() + x["b"].i();
|
|
std::ostringstream os;
|
|
os << sum;
|
|
return crow::response{os.str()};
|
|
});
|
|
|
|
CROW_ROUTE(app, "/params")
|
|
([](const crow::request& req) {
|
|
std::ostringstream os;
|
|
os << "Params: " << req.url_params << "\n\n";
|
|
os << "The key 'foo' was " << (req.url_params.get("foo") == nullptr ? "not " : "") << "found.\n";
|
|
if (req.url_params.get("pew") != nullptr)
|
|
{
|
|
double countD = crow::utility::lexical_cast<double>(req.url_params.get("pew"));
|
|
os << "The value of 'pew' is " << countD << '\n';
|
|
}
|
|
auto count = req.url_params.get_list("count");
|
|
os << "The key 'count' contains " << count.size() << " value(s).\n";
|
|
for (const auto& countVal : count)
|
|
{
|
|
os << " - " << countVal << '\n';
|
|
}
|
|
return crow::response{os.str()};
|
|
});
|
|
|
|
// ignore all log
|
|
crow::logger::setLogLevel(crow::LogLevel::Debug);
|
|
//crow::logger::setHandler(std::make_shared<ExampleLogHandler>());
|
|
|
|
app.port(18080)
|
|
.server_name("CrowCpp")
|
|
.multithreaded()
|
|
.run();
|
|
}
|