2018-05-31 09:00:31 +00:00
|
|
|
/**
|
|
|
|
*
|
2020-10-12 13:51:39 +00:00
|
|
|
* @file create_view.h
|
|
|
|
* @author 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 09:21:37 +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_view : public DrObject<create_view>, public CommandHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void handleCommand(std::vector<std::string> ¶meters) override;
|
2019-05-18 12:39:57 +00:00
|
|
|
virtual std::string script() override
|
|
|
|
{
|
|
|
|
return "create view class files";
|
|
|
|
}
|
2018-05-29 09:21:37 +00:00
|
|
|
|
2018-10-14 07:56:54 +00:00
|
|
|
protected:
|
2019-11-21 03:27:47 +00:00
|
|
|
std::string outputPath_{"."};
|
2020-10-09 13:41:27 +00:00
|
|
|
std::vector<std::string> namespaces_;
|
2020-10-12 13:51:39 +00:00
|
|
|
bool pathToNamespaceFlag_{false};
|
2018-10-14 07:56:54 +00:00
|
|
|
void createViewFiles(std::vector<std::string> &cspFileNames);
|
|
|
|
int createViewFile(const std::string &script_filename);
|
|
|
|
void newViewHeaderFile(std::ofstream &file, const std::string &className);
|
2019-05-18 12:39:57 +00:00
|
|
|
void newViewSourceFile(std::ofstream &file,
|
|
|
|
const std::string &className,
|
2020-10-12 13:51:39 +00:00
|
|
|
const std::string &namespacePrefix,
|
2019-05-18 12:39:57 +00:00
|
|
|
std::ifstream &infile);
|
2018-10-14 07:56:54 +00:00
|
|
|
};
|
2019-05-18 12:39:57 +00:00
|
|
|
} // namespace drogon_ctl
|