生成

可以由drogon_ctl命令行工具快速生成基于HttpController的自定义类的源文件,命令格式如下:

  1. drogon_ctl create controller -h <[namespace::]class_name>

我们创建一个位于demo v1名称空间内且名称为User的控制器:

  1. drogon_ctl create controller -h demo::v1::User

可以看到,目录下新增加了两个文件,demo_v1_User.h和demo_v1_User.cc:

demo_v1_User.h如下:

  1. #pragma once
  2. #include <drogon/HttpController.h>
  3. using namespace drogon;
  4. namespace demo
  5. {
  6. namespace v1
  7. {
  8. class User : public drogon::HttpController<User>
  9. {
  10. public:
  11. METHOD_LIST_BEGIN
  12. // use METHOD_ADD to add your custom processing function here;
  13. // METHOD_ADD(User::get, "/{2}/{1}", Get); // path is /demo/v1/User/{arg2}/{arg1}
  14. // METHOD_ADD(User::your_method_name, "/{1}/{2}/list", Get); // path is /demo/v1/User/{arg1}/{arg2}/list
  15. // ADD_METHOD_TO(User::your_method_name, "/absolute/path/{1}/{2}/list", Get); // path is /absolute/path/{arg1}/{arg2}/list
  16. METHOD_LIST_END
  17. // your declaration of processing function maybe like this:
  18. // void get(const HttpRequestPtr& req, std::function<void (const HttpResponsePtr &)> &&callback, int p1, std::string p2);
  19. // void your_method_name(const HttpRequestPtr& req, std::function<void (const HttpResponsePtr &)> &&callback, double p1, int p2) const;
  20. };
  21. }
  22. }

demo_v1_User.cc如下:

  1. #include "demo_v1_User.h"
  2. using namespace demo::v1;
  3. // Add definition of your processing function here

使用

我们编辑一下这两个文件,然后再阐述它们。

demo_v1_User.h如下:

  1. #pragma once
  2. #include <drogon/HttpController.h>
  3. using namespace drogon;
  4. namespace demo
  5. {
  6. namespace v1
  7. {
  8. class User : public drogon::HttpController<User>
  9. {
  10. public:
  11. METHOD_LIST_BEGIN
  12. // use METHOD_ADD to add your custom processing function here;
  13. METHOD_ADD(User::login,"/token?userId={1}&passwd={2}",Post);
  14. METHOD_ADD(User::getInfo,"/{1}/info?token={2}",Get);
  15. METHOD_LIST_END
  16. // your declaration of processing function maybe like this:
  17. void login(const HttpRequestPtr &req,
  18. std::function<void (const HttpResponsePtr &)> &&callback,
  19. std::string &&userId,
  20. const std::string &password);
  21. void getInfo(const HttpRequestPtr &req,
  22. std::function<void (const HttpResponsePtr &)> &&callback,
  23. std::string userId,
  24. const std::string &token) const;
  25. };
  26. }
  27. }

demo_v1_User.cc如下:

  1. #include "demo_v1_User.h"
  2. using namespace demo::v1;
  3. // Add definition of your processing function here
  4. void User::login(const HttpRequestPtr &req,
  5. std::function<void (const HttpResponsePtr &)> &&callback,
  6. std::string &&userId,
  7. const std::string &password)
  8. {
  9. LOG_DEBUG<<"User "<<userId<<" login";
  10. //认证算法,读数据库,验证身份等...
  11. //...
  12. Json::Value ret;
  13. ret["result"]="ok";
  14. ret["token"]=drogon::utils::getUuid();
  15. auto resp=HttpResponse::newHttpJsonResponse(ret);
  16. callback(resp);
  17. }
  18. void User::getInfo(const HttpRequestPtr &req,
  19. std::function<void (const HttpResponsePtr &)> &&callback,
  20. std::string userId,
  21. const std::string &token) const
  22. {
  23. LOG_DEBUG<<"User "<<userId<<" get his information";
  24. //验证token有效性等
  25. //读数据库或缓存获取用户信息
  26. Json::Value ret;
  27. ret["result"]="ok";
  28. ret["user_name"]="Jack";
  29. ret["user_id"]=userId;
  30. ret["gender"]=1;
  31. auto resp=HttpResponse::newHttpJsonResponse(ret);
  32. callback(resp);
  33. }

每个HttpController类可以定义多个Http请求处理函数(handler),由于函数数目可以任意多,所以通过虚函数重载是不现实的,我们需要把处理函数本身(而不是类)注册到框架里去。

从URL路径到处理函数的映射由宏完成,可以用METHOD_ADD宏或ADD_METHOD_TO宏添加多重路径映射,所有METHOD_ADDADD_METHOD_TO语句应夹在METHOD_LIST_BEGINMETHOD_LIST_END宏语句之间。

METHOD_ADD宏会在路径映射中自动把名字空间和类名作为路径的前缀,所以,本例子中,login函数,被注册到了/demo/v1/user/token路径上,getInfo函数被注册到了/demo/v1/user/xxx/info路径上。后面的约束跟HttpSimpleController的PATH_ADD宏类似,不再赘述。

如果使用了自动的前缀,访问地址要包含命名空间和类名,此例中要使用http://localhost/demo/v1/user/token?userid=xxx&passwd=xxx或者http://localhost/demo/v1/user/xxxxx/info?token=xxxx来访问。

ADD_METHOD_TO宏的作用与前者几乎一样,除了它不会自动添加任何前缀,即这个宏注册的路径是一个绝对路径。

我们看到,HttpController提供了更为灵活的路径映射功能,并且可以注册多个处理函数,我们可以把一类功能放在一个类里。

另外可以看到,METHOD_ADD宏提供了参数映射的方法,我们可以把路径上的参数映射到函数的参数表里,由参数的数码对应形参的位置,非常方便,常见的可以由字符串类型转换的类型都可以作为参数(如std::string,int,float,double等等),框架基于模板的类型推断会自动帮你转换类型,非常方便。注意左值引用必须是const类型。

同一个路径还可以注册多次,相互之间通过Http Method区分,这是合法的,并且是Restful API的通常做法,比如

  1. METHOD_LIST_BEGIN
  2. METHOD_ADD(Book::getInfo,"/{1}?detail={2}",Get);
  3. METHOD_ADD(Book::newBook,"/{1}",Post);
  4. METHOD_ADD(Book::deleteOne,"/{1}",Delete);
  5. METHOD_LIST_END

路径参数的占位符有多种写法:

  • {}: 表示这个路径参数映射到处理函数的对应位置上,路径上的位置就是函数参数的位置。
  • {1},{2}: 中间有个数字的,表示映射到数字指定的处理函数参数上。
  • {anystring}: 中间的字符串没有实际作用,但可以提高程序的可读性,与{}等价。
  • {1:anystring},{2:xxx}: 冒号前的数字表示位置,后面的字符串没有实际作用,但可以提高程序的可读性,与{1},{2}等价。

推荐使用后两种写法,如果路径参数和函数参数顺序一直,使用第三种写法即可。容易知道,以下几种写法是等价的:

  • “/users/{}/books/{}”
  • “/users/{}/books/{2}”
  • “/users/{user_id}/books/{book_id}”
  • “/users/{1:user_id}/books/{2}”

注意:路径匹配大小写不敏感,参数名字大小写敏感,参数值大小写保持原貌

参数映射

通过前面的叙述我们知道,路径上的参数和问号后面的请求参数都可以映射到处理函数的参数列表里,目标参数的类型需要满足如下条件:

  • 必须是值类型、常左值引用或非const右值引用中的一种,不能是非const的左值引用,推荐使用右值引用,这样用户可以随意处置它;

  • int, long, long long, unsigned long, unsigned long long, float, double, long double等基础类型都可以作为参数类型;

  • std::string类型;

  • 任何可以使用stringstream >>操作符赋值的类型;

另外,drogon框架还提供了从HttpRequestPtr对象到任意类型的参数的映射机制,当你的handler参数列表中映射参数的数量多于路径上的参数时,后面多余的参数将由HttpRequestPtr对象转换得到,用户可以定义任意类型的转换,定义这种转换的方式是特化drogon命名空间的fromRequest模板(定义于HttpRequest.h头文件)),比如我们需要做一个创建新用户的RESTful的接口,我们定义用户的结构体如下:

  1. namespace myapp{
  2. struct User{
  3. std::string userName;
  4. std::string email;
  5. std::string address;
  6. };
  7. }
  8. namespace drogon
  9. {
  10. template <>
  11. inline myapp::User fromRequest(const HttpRequest &req)
  12. {
  13. auto json = req.getJsonObject();
  14. myapp::User user;
  15. if(json)
  16. {
  17. user.userName = (*json)["name"].asString();
  18. user.email = (*json)["email"].asString();
  19. user.address = (*json)["address"].asString();
  20. }
  21. return user;
  22. }
  23. }

有了上面的定义和模板特化,我们就可以向下面这样定义路径和handler:

  1. class UserController:public drogon::HttpController<UserController>
  2. {
  3. public:
  4. METHOD_LIST_BEGIN
  5. //use METHOD_ADD to add your custom processing function here;
  6. ADD_METHOD_TO(UserController::newUser,"/users",Post);
  7. METHOD_LIST_END
  8. //your declaration of processing function maybe like this:
  9. void newUser(const HttpRequestPtr &req,
  10. std::function<void (const HttpResponsePtr &)> &&callback,
  11. myapp::User &&pNewUser) const;
  12. };

可以看到,第三个myapp::User类型的参数在映射路径上没有对应的占位符,框架会将它视为由req对象转换的参数,通过用户特化的函数模板得到这个参数,这都是drogon通过模板推导自动在编译期完成的,为用户的开发提供了极大便利。

更进一步,有些用户除了他们自定义类型的数据外,并不需要访问HttpRequestPtr对象,那么他可以把这个自定义的对象放在第一个参数的位置,框架也能正确完成映射,比如上面的例子也可以写成下面这样:

  1. class UserController:public drogon::HttpController<UserController>
  2. {
  3. public:
  4. METHOD_LIST_BEGIN
  5. //use METHOD_ADD to add your custom processing function here;
  6. ADD_METHOD_TO(UserController::newUser,"/users",Post);
  7. METHOD_LIST_END
  8. //your declaration of processing function maybe like this:
  9. void newUser(myapp::User &&pNewUser,
  10. std::function<void (const HttpResponsePtr &)> &&callback) const;
  11. };

多路径映射

drogon支持在路径映射中使用正则表达式,在{}花括号以外的部分可以有限制的使用,比如

  1. ADD_METHOD_TO(UserController::handler1,"/users/.*",Post); /// Match any path prefixed with `/users/`
  2. ADD_METHOD_TO(UserController::handler2,"/{name}/[0-9]+",Post); ///Match any path composed with a name string and a number.

这种方法不支持子表达式,负向匹配等正则表达式,如果想使用他们,请用如下的方案。

正则表达式

上面的方法对正则表达式的支持比较有限,如果用户想自由使用正则表达式,drogon提供了ADD_METHOD_VIA_REGEX宏来实现这一点,比如

  1. ADD_METHOD_VIA_REGEX(UserController::handler1,"/users/(.*)",Post); /// Match any path prefixed with `/users/` and map the rest of the path to a parameter of the handler1.
  2. ADD_METHOD_VIA_REGEX(UserController::handler2,"/.*([0-9]*)",Post); /// Match any path that ends in a number and map that number to a parameter of the handler2.
  3. ADD_METHOD_VIA_REGEX(UserController::handler3,"/(?!data).*",Post); /// Match any path that does not start with '/data'

可以看到,使用正则表达式也可以完成参数映射,所有子表达式匹配的字符串都会按顺序映射到handler的参数上。

需要注意的是,使用正则表达式要注意匹配冲突(多个不同的handler都匹配),当冲突发生在同一个controller内部时,drogon只会执行第一个handler(先注册进框架的那个handler),当冲突发生在不同controller之间时,执行哪个handler是不确定的,因此用户需要避免这种冲突发生。

04.3 WebSocketController