-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.cpp
More file actions
190 lines (163 loc) · 4.05 KB
/
application.cpp
File metadata and controls
190 lines (163 loc) · 4.05 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Copyright (C) 2016 Anders Lövgren, BMC Computing Department, Uppsala University
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// --------------------------------------------------------------------------
// Author: Anders Lövgren <anders.lovgren@bmc.uu.se>
//
// File: application.cpp
// Date: 4 Feb 2016
// --------------------------------------------------------------------------
//
#include <fstream>
#include <sstream>
#include <unistd.h>
#include "application.hpp"
#include "options.hpp"
#include "output.hpp"
Application::Application(int argc, char **argv)
{
options = new Options;
options->Parse(argc, argv);
}
Application::~Application()
{
delete options;
}
//
// Process current options.
//
void Application::Process()
{
if(options->HasTaskFile()) {
Process(options->GetTaskFile());
} else {
Process(options->GetTask());
}
}
//
// Process single task.
//
void Application::Process(const Task &task) const
{
Process(new Task(task));
}
//
// Process single task.
//
void Application::Process(Task *task) const
{
task->setTaskObserver(this);
task->Start();
}
//
// Process task definition file.
//
void Application::Process(const std::string &file)
{
std::ifstream stream(file, std::ios::in);
if(!stream) {
throw Exception("Failed open " + file);
}
Process(stream);
}
//
// Process task definition stream.
//
void Application::Process(std::ifstream &stream)
{
Start(stream);
Join();
}
//
// Start all task from input stream.
//
void Application::Start(std::ifstream &stream)
{
std::string line;
int index = 0;
const Options::Start &start = options->GetStart();
while(std::getline(stream, line)) {
if(Start(line)) {
if((index != 0) && (index % start.num == 0)) {
::sleep(start.wait);
}
}
}
}
//
// Start task defined by input string (read from file). The task is
// merged with common task options before started. The defined task
// options have precedence.
//
bool Application::Start(const std::string &line)
{
Task *task = new Task(options->GetTask());
task->Scan(line);
return Start(task);
}
//
// Start task in own thread. If successful, the task is inserted in the
// list of running tasks.
//
bool Application::Start(Task *task)
{
Thread thread;
if(pthread_create(&thread, 0, Task::Start, task) != 0) {
perror("pthread_create");
return false;
}
tasks[thread] = task;
task->setTaskObserver(this);
return true;
}
//
// Join all running threads (tasks).
//
void Application::Join()
{
for(TaskIterator it = tasks.begin(); it != tasks.end(); ++it) {
Join(it->first, it->second);
}
}
//
// Join thread and collect results.
//
void Application::Join(Application::Thread thread, Task *task)
{
if(pthread_join(thread, 0) != 0) {
perror("pthread_join");
}
tasks.erase(tasks.find(thread));
}
//
// Collect result from finished task.
//
void Application::Collect(const Task *task)
{
}
void Application::Status(std::string message) const
{
std::ostringstream ss;
ss << tasks.size() << " active tasks: " << message;
Output::Info(ss.str());
}
void Application::OnStatusChange(const Task *task) const
{
if(task->GetStatus() == Task::Starting) {
Status(task->GetStudent() + " [" + task->GetActivity() + "]" + "\tparams=" + task->ToString());
} else {
Status(task->GetStudent() + " [" + task->GetActivity() + "]");
}
}