-
Notifications
You must be signed in to change notification settings - Fork 0
/
MatrixBuilder.h
151 lines (123 loc) · 4.24 KB
/
MatrixBuilder.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
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
#pragma once
#include <iostream>
#include <vector>
#include <unistd.h>
#include <bits/stdc++.h>
#include "Utils.cpp"
#include "LeitorArquivo.h"
using namespace std;
class MatrixBuilder
{
private:
int** matriz;
vector<int>* matriz1;
int nThreads;
vector<LeitorArquivo*> threads;
vector<string> arquivos;
string arqSaida;
int arqsLidos = 0;
int lenMaiorLinha = 0;
int* szLinhas;
public:
/**
* Define e valida os parâmetros de entrada
*/
void setParametros(vector<string>& params)
{
try{
if(params.size() < 5)
throw "Parâmetros inválidos";
nThreads = stoi(params.at(1));
try{
for(int i=2; i<params.size(); i++){
if(params[i] == "-o")
arqSaida = params.at(++i);
else
arquivos.push_back(params[i]);
}
}catch(out_of_range ex){
throw "Informe um arquivo de saída";
}
if(nThreads != 2 && nThreads != 4 && nThreads != 8 && nThreads != 16)
throw "Quantidade de threads inválida";
if(arqSaida.empty())
throw "Informe um arquivo de saída";
if(arquivos.empty())
throw "Informe pelo menos um arquivo de entrada";
}catch(const char* msg){
cout << "Erro: " << msg << endl;
cout << "-- Utilização --" << endl;
cout << params[0] << " <numThreads [2, 4, 8, 16]> <arq_1..n> -o <arqSaida>" << endl;
}
}
/**
* Imprime a matriz
*/
bool printMatriz()
{
for(int i=0; i<arquivos.size(); i++){
for(int j=0; j<szLinhas[i]; j++){
cout << matriz[i][j] << ", ";
}
cout << endl;
}
}
/**
* Carrega os arquivos informados
*/
void carregarArquivos()
{
// Aloca a matriz com o conteúdo dos arquivos e seus tamanhos
matriz = (int **) calloc(sizeof(int *), arquivos.size());
szLinhas = (int *) calloc(sizeof(int), arquivos.size());
// Inicializa as threads
for(int i=0; i<nThreads; i++)
threads.push_back(new LeitorArquivo(i));
clock_t inicio = clock();
for(int i=0; i<arquivos.size(); i++){
// 'Pedaço' do arquivo que a thread irá ler
int fatiaThread = Utils::getTamanhoArquivo(arquivos[i]) / nThreads;
// Ler o arquivo e aguardar cada thread
for(int j=0; j<nThreads; j++)
threads[j]->lerArquivo(arquivos[i], fatiaThread * j, fatiaThread);
for(int j=0; j<nThreads; j++)
threads[j]->aguardarThread();
// Coletar o conteúdo de cada thread
vector<int> cont;
for(int j=0; j<nThreads; j++){
vector<int> vet = threads[j]->getNumeros();
cont.insert(cont.end(), vet.begin(), vet.end());
}
matriz[arqsLidos] = (int *) calloc(sizeof(int), cont.size());
szLinhas[arqsLidos] = cont.size();
// Alimenta a matriz principal
for(int j=0; j<cont.size(); j++)
matriz[arqsLidos][j] = cont[j];
// Define a maior linha (para adição de zeros)
if(cont.size() > lenMaiorLinha)
lenMaiorLinha = cont.size();
arqsLidos++;
}
cout << "Tempo para ler o arquivo com " << nThreads << " threads :" << endl;
clock_t fim = clock();
double time_taken = double(fim - inicio) / double(CLOCKS_PER_SEC) * 1000;
cout << time_taken << setprecision(7) << " ms " << endl;
salvarArquivoSaida();
}
/**
* Grava o arquivo de saída
*/
void salvarArquivoSaida()
{
ofstream arq(arqSaida);
for(int i=0; i<arquivos.size(); i++){
string linha;
for(int j=0; j<szLinhas[i]; j++)
linha.append(to_string(matriz[i][j]).append("\t"));
for(int j=0; j<lenMaiorLinha - szLinhas[i]; j++)
linha.append("0\t");
linha.append("\n");
arq.write(linha.c_str(), linha.size());
}
}
};