-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathterminal_nodes.h
58 lines (50 loc) · 1.68 KB
/
terminal_nodes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2018 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#ifndef TBOX_TERMINAL_NODES_H_20220214
#define TBOX_TERMINAL_NODES_H_20220214
#include "types.h"
#include "session.h"
namespace tbox {
namespace terminal {
/**
* 终端的结点管理接口
*/
class TerminalNodes {
public:
//! 创建函数结点
virtual NodeToken createFuncNode(const Func &func, const std::string &help = "") = 0;
//! 创建目录结点
virtual NodeToken createDirNode(const std::string &help = "") = 0;
//! 删除结点
virtual bool deleteNode(NodeToken node_token) = 0;
//! 获取根结点
virtual NodeToken rootNode() const = 0;
//! 根据路径查找结点
virtual NodeToken findNode(const std::string &path) const = 0;
//! 将子指定结点挂载到指定父目录结点,并指定名称
virtual bool mountNode(const NodeToken &parent, const NodeToken &child, const std::string &name) = 0;
//! 从指定父目录结点上卸载指定名称的子结点
virtual bool umountNode(const NodeToken &parent, const std::string &name) = 0;
protected:
virtual ~TerminalNodes() { }
};
}
}
#endif //TBOX_TERMINAL_NODES_H_20220214