Skip to content

Commit f54f8b0

Browse files
committed
feat(main,util,flow): 1.11.10
1.添加Module::addAs()方法,允许添加多个同类对象,并重命名; 2.优化Action::toJson(),在vars_为空的时候,不生成Json对象; 3.添加终端命名/apps/dump,打印所有的Module数据; 4.添加Module::toJson()方法,实现将所有Module数据导出为为Json; 5.修复Terminal::Impl::~Impl()内存申请与释放不一致的问題; 6.修复编译问题
1 parent 8ac7718 commit f54f8b0

File tree

11 files changed

+82
-12
lines changed

11 files changed

+82
-12
lines changed

examples/main/03_nc_client_and_echo_server/main.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ void RegisterApps(Module &apps, Context &ctx)
2929
{
3030
apps.add(new echo_server::App(ctx));
3131
apps.add(new nc_client::App(ctx));
32+
apps.addAs(new nc_client::App(ctx), "nc_client_2");
3233
}
3334

3435
std::string GetAppDescribe()
@@ -46,7 +47,7 @@ void GetAppVersion(int &major, int &minor, int &rev, int &build)
4647
major = 1;
4748
minor = 0;
4849
rev = 0;
49-
build = 0;
50+
build = 1;
5051
}
5152

5253
}

modules/flow/action.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ void Action::toJson(Json &js) const {
5757
js["state"] = ToString(state_);
5858
js["result"] = ToString(result_);
5959

60-
vars_.toJson(js["vars"]);
60+
if (!vars_.empty())
61+
vars_.toJson(js["vars"]);
6162
}
6263

6364
bool Action::start() {

modules/main/context_imp.cpp

+22-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#include <tbox/terminal/helper.h>
3636

3737
#include "main.h"
38+
#include "module.h"
3839

3940
namespace tbox {
4041
namespace main {
@@ -110,8 +111,11 @@ void ContextImp::fillDefaultConfig(Json &cfg) const
110111
cfg["thread_pool"] = R"({"min":0, "max":1})"_json;
111112
}
112113

113-
bool ContextImp::initialize(const char* proc_name, const Json &cfg)
114+
bool ContextImp::initialize(const char* proc_name, const Json &cfg, Module *module)
114115
{
116+
TBOX_ASSERT(module != nullptr);
117+
module_ = module;
118+
115119
if (util::json::HasObjectField(cfg, "loop")) {
116120
auto &js_loop = cfg["loop"];
117121
initLoop(js_loop);
@@ -469,6 +473,23 @@ void ContextImp::initShell()
469473
wp_nodes->mountNode(info_node, func_node, "what");
470474
}
471475
}
476+
477+
{
478+
auto apps_node = wp_nodes->createDirNode("Applications directory");
479+
wp_nodes->mountNode(wp_nodes->rootNode(), apps_node, "apps");
480+
481+
auto func_node = wp_nodes->createFuncNode(
482+
[this] (const Session &s, const Args &) {
483+
Json js;
484+
module_->toJson(js);
485+
auto json_str = js.dump(2);
486+
util::string::Replace(json_str, "\n", "\r\n");
487+
s.send(json_str);
488+
s.send("\r\n");
489+
}
490+
, "Dump apps as JSON");
491+
wp_nodes->mountNode(apps_node, func_node, "dump");
492+
}
472493
}
473494

474495
}

modules/main/context_imp.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
namespace tbox {
3131
namespace main {
3232

33+
class Module;
34+
3335
//! 进程上下文
3436
class ContextImp : public Context {
3537
public:
@@ -38,7 +40,7 @@ class ContextImp : public Context {
3840

3941
void fillDefaultConfig(Json &cfg) const;
4042

41-
bool initialize(const char *proc_name, const Json &cfg);
43+
bool initialize(const char *proc_name, const Json &cfg, Module *module);
4244
bool start();
4345
void stop();
4446
void cleanup();
@@ -76,6 +78,8 @@ class ContextImp : public Context {
7678
coroutine::Scheduler *sp_coroutine_ = nullptr;
7779

7880
std::chrono::steady_clock::time_point start_time_point_;
81+
82+
Module *module_ = nullptr;
7983
};
8084

8185
}

modules/main/module.cpp

+34-2
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,35 @@ bool Module::add(Module *child, bool required)
5454

5555
auto iter = std::find_if(children_.begin(), children_.end(),
5656
[child] (const ModuleItem &item) {
57-
return item.module_ptr == child;
57+
return item.module_ptr == child ||
58+
item.module_ptr->name() == child->name();
5859
}
5960
);
60-
if (iter != children_.end())
61+
if (iter != children_.end()) {
62+
LogWarn("module %s is already exist or name duplicated.", child->name().c_str());
6163
return false;
64+
}
6265

6366
children_.emplace_back(ModuleItem{ child, required });
6467
child->vars_.setParent(&vars_);
6568

6669
return true;
6770
}
6871

72+
bool Module::addAs(Module *child, const std::string &name, bool required)
73+
{
74+
auto tmp = child->name_;
75+
child->name_ = name;
76+
77+
if (!add(child, required)) {
78+
//! 如果失败了,还原之前的名称
79+
child->name_ = tmp;
80+
return false;
81+
}
82+
83+
return true;
84+
}
85+
6986
void Module::fillDefaultConfig(Json &js_parent)
7087
{
7188
Json &js_this = name_.empty() ? js_parent : js_parent[name_];
@@ -157,5 +174,20 @@ void Module::cleanup()
157174
state_ = State::kNone;
158175
}
159176

177+
void Module::toJson(Json &js) const
178+
{
179+
if (!vars_.empty())
180+
vars_.toJson(js["vars"]);
181+
182+
if (!children_.empty()) {
183+
Json &js_children = js["children"];
184+
for (auto &item : children_) {
185+
Json &js_child = js_children[item.module_ptr->name()];
186+
js_child["required"] = item.required;
187+
item.module_ptr->toJson(js_child);
188+
}
189+
}
190+
}
191+
160192
}
161193
}

modules/main/module.h

+6
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ class Module {
9898
*/
9999
bool add(Module *child, bool required = true);
100100

101+
//! 同上,但会对child进行重新命名
102+
bool addAs(Module *child, const std::string &name, bool required = true);
103+
101104
//! 下面5个函数,由父Module自动调用。使用者不需要关心
102105
void fillDefaultConfig(Json &js_parent);
103106
bool initialize(const Json &js_parent);
@@ -110,6 +113,9 @@ class Module {
110113
inline State state() const { return state_; }
111114
inline util::Variables& vars() { return vars_; }
112115

116+
//! 导出为JSON对象
117+
virtual void toJson(Json &js) const;
118+
113119
protected:
114120
//! 下面的5个虚函数,可由使用者根据需要重写。如果没有操作,就不用重写
115121

modules/main/run_in_backend.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ bool Start(int argc, char **argv)
167167
std::this_thread::sleep_for(std::chrono::seconds(1));
168168
};
169169

170-
if (ctx.initialize(argv[0], js_conf)) {
170+
if (ctx.initialize(argv[0], js_conf, &apps)) {
171171
if (apps.initialize(js_conf)) {
172172
if (ctx.start()) { //! 启动所有应用
173173
if (apps.start()) {

modules/main/run_in_frontend.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ int Main(int argc, char **argv)
155155
std::this_thread::sleep_for(std::chrono::seconds(1));
156156
};
157157

158-
if (ctx.initialize(argv[0], js_conf)) {
158+
if (ctx.initialize(argv[0], js_conf, &apps)) {
159159
if (apps.initialize(js_conf)) {
160160
if (ctx.start() && apps.start()) { //! 启动所有应用
161161
RunInFrontend(ctx, apps, exit_wait_sec);

modules/terminal/impl/terminal.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Terminal::Impl::Impl(event::Loop *wp_loop)
5555
Terminal::Impl::~Impl()
5656
{
5757
sessions_.foreach(
58-
[](SessionContext *p) {
59-
delete p;
58+
[this](SessionContext *s) {
59+
session_ctx_pool_.free(s);
6060
}
6161
);
6262
sessions_.clear();

modules/util/variables.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@
2121
#define TBOX_VARIABLES_H_20250201
2222

2323
#include <map>
24+
2425
#include <tbox/base/defines.h>
2526
#include <tbox/base/json_fwd.h>
26-
#include <tbox/util/json.h>
27+
28+
#include "json.h"
2729

2830
namespace tbox {
2931
namespace util {
@@ -100,6 +102,9 @@ class Variables {
100102
*/
101103
bool set(const std::string &name, const Json &js_new_value, bool local_only = false);
102104

105+
//! 检查是否没有变量
106+
inline bool empty() const { return var_map_ == nullptr; }
107+
103108
public:
104109
void toJson(Json &js) const; //! 导出为Json对象
105110

version.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
# TBOX版本号
2222
TBOX_VERSION_MAJOR := 1
2323
TBOX_VERSION_MINOR := 11
24-
TBOX_VERSION_REVISION := 8
24+
TBOX_VERSION_REVISION := 10

0 commit comments

Comments
 (0)