-
Notifications
You must be signed in to change notification settings - Fork 0
/
processor.hpp
65 lines (56 loc) · 1.93 KB
/
processor.hpp
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
59
60
61
62
63
64
65
// Ixte - a temporal structure editor for musical composition and analysis
// Copyright (C) 2014 Raphael Sousa Santos, https://www.raphaelss.com
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#ifndef PROCESSOR_HPP_IXTE_INCLUDED
#define PROCESSOR_HPP_IXTE_INCLUDED
#include <string>
#include <vector>
#include <thread>
#include "graphic_system.hpp"
#include "error_msgr.hpp"
#include "external.hpp"
#include <boost/asio.hpp>
#include <mutex>
namespace ixte {
class processor {
public:
processor(graphic_system &sys, error_msgr &msgr);
~processor();
void request_exit();
void execute(std::string str);
private:
bool dispatch(std::string str);
void exit_cmd(std::string &args);
void save_cmd(std::string &args);
void bind_cmd(std::string &args);
void mkline_cmd(std::string &args);
void rmline_cmd(std::string &args);
void mkpoint_cmd(std::string &args);
void rmpoint_cmd(std::string &args);
bool external_cmd(std::string &cmd, std::string &args);
bool has_running_external();
void write_to_external(const std::string &str);
void push_external(external &&ext);
void pop_external();
void async_external_read();
graphic_system &_system;
error_msgr &_error_msgr;
boost::asio::io_service _io_serv;
std::thread _worker_thread;
std::vector<external> _running_externals;
std::mutex _externals_lock;
};
}
#endif