2018-05-31 09:00:31 +00:00
|
|
|
/**
|
|
|
|
*
|
2018-10-30 10:43:11 +00:00
|
|
|
* create_controller.h
|
|
|
|
* An Tao
|
2018-05-31 09:00:31 +00:00
|
|
|
*
|
|
|
|
* Copyright 2018, An Tao. All rights reserved.
|
2018-12-07 07:50:18 +00:00
|
|
|
* https://github.com/an-tao/drogon
|
2018-05-31 09:00:31 +00:00
|
|
|
* Use of this source code is governed by a MIT license
|
|
|
|
* that can be found in the License file.
|
|
|
|
*
|
2018-11-16 05:26:14 +00:00
|
|
|
* Drogon
|
2018-05-31 09:00:31 +00:00
|
|
|
*
|
|
|
|
*/
|
2018-05-29 05:49:26 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <drogon/DrObject.h>
|
|
|
|
#include "CommandHandler.h"
|
|
|
|
using namespace drogon;
|
|
|
|
namespace drogon_ctl
|
|
|
|
{
|
2018-10-14 07:56:54 +00:00
|
|
|
class create_controller : public DrObject<create_controller>, public CommandHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void handleCommand(std::vector<std::string> ¶meters) override;
|
|
|
|
virtual std::string script() override { return "create controller files"; }
|
2018-08-22 06:27:45 +00:00
|
|
|
|
2018-10-14 07:56:54 +00:00
|
|
|
protected:
|
|
|
|
enum ControllerType
|
|
|
|
{
|
|
|
|
Simple = 0,
|
2018-11-15 06:31:10 +00:00
|
|
|
Http,
|
2018-10-14 07:56:54 +00:00
|
|
|
WebSocket
|
|
|
|
};
|
|
|
|
void createSimpleController(std::vector<std::string> &ctlNames, const std::string &namespaceName = "");
|
|
|
|
void createSimpleController(const std::string &ctlName, const std::string &namespaceName = "");
|
|
|
|
void createWebsockController(std::vector<std::string> &ctlNames, const std::string &namespaceName = "");
|
|
|
|
void createWebsockController(const std::string &ctlName, const std::string &namespaceName = "");
|
2018-08-22 06:27:45 +00:00
|
|
|
|
2018-11-15 06:31:10 +00:00
|
|
|
void createHttpController(std::vector<std::string> &httpClasses);
|
|
|
|
void createHttpController(const std::string &className);
|
2018-10-14 07:56:54 +00:00
|
|
|
void newSimpleControllerHeaderFile(std::ofstream &file, const std::string &ctlName, const std::string &namespaceName = "");
|
|
|
|
void newSimpleControllerSourceFile(std::ofstream &file, const std::string &ctlName, const std::string &namespaceName = "");
|
|
|
|
void newWebsockControllerHeaderFile(std::ofstream &file, const std::string &ctlName, const std::string &namespaceName = "");
|
|
|
|
void newWebsockControllerSourceFile(std::ofstream &file, const std::string &ctlName, const std::string &namespaceName = "");
|
2018-06-06 10:29:05 +00:00
|
|
|
|
2018-11-15 06:31:10 +00:00
|
|
|
void newHttpControllerHeaderFile(std::ofstream &file, const std::string &className);
|
|
|
|
void newHttpControllerSourceFile(std::ofstream &file, const std::string &className, const std::string &filename);
|
2018-10-14 07:56:54 +00:00
|
|
|
};
|
|
|
|
} // namespace drogon_ctl
|