serviceWindowGenerationFromCC.cpp
2.48 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
#include "include/serviceWindowGenerationFromCC.h"
using namespace std;
ServiceWindowGenerationFromCC::ServiceWindowGenerationFromCC(
char* path, int position, int size, int transparency, int _serviceType) {
setPathInput(path);
numero_legendas = 0;
setPosition(position);
setSize(size);
setTransparency(transparency);
setServiceType(_serviceType);
//this->fisish = false;
//initialize();
}
ServiceWindowGenerationFromCC::~ServiceWindowGenerationFromCC() {
}
void ServiceWindowGenerationFromCC::setPathInput(char* path) {
this->path_input = path;
}
void ServiceWindowGenerationFromCC::notificaCC(unsigned char* cc, int64_t pts) {
cout << "1-Chegou LEGENDA no ServiceFromCC\n" << endl;
printf("Glosa: %s PTS: %lld\n", cc, pts);
if (!strcmp((const char*) cc, "Homem supermercado falar nao vender.")) {
printf("\nIGUAL\n");
return;
} else {
//printf("\nDIFERENTE\n");
}
numero_legendas++;
char op = this->getRunningOption();
if (op == '3') {
notificaSincronizadorSemTradutor(cc, pts);
} else {
adicionaPTS(pts);
notificaTradutor(cc);
}
}
void ServiceWindowGenerationFromCC::notificaSincronizadorSemTradutor(unsigned char * cc, int64_t pts) {
char* pch = strtok((char*) cc, " ");
while (pch != NULL) {
string pch_string = (string) pch;
sincronizador->recebeglosa(pch_string, pts);
printf("%s\n", pch);
pch = strtok(NULL, " ");
}
}
void ServiceWindowGenerationFromCC::notificaTradutor(unsigned char* cc) {
const char* constchar = (const char*) cc;
char* cc_copy = new char[strlen(constchar)];
strcpy(cc_copy, constchar);
tradutor->traduz((unsigned char*) cc_copy);
}
void ServiceWindowGenerationFromCC::initialize() {
inputfile = new InputFile(this->path_input);
extratorCC = new ExtratorCC();
monitor_pcr_base = new MonitorPCR();
demux = new Demux(278, (DemuxListener*) extratorCC);
inputfile->registraOuvinte(demux);
extratorCC->registraOuvinte(this);
inputfile->registraOuvinte(monitor_pcr_base);
ServiceWindowGeneration::initialize();
inputfile->initialize();
this->Start();
}
void ServiceWindowGenerationFromCC::Run() {
while (true) {
if (inputfile->isFinished()) {
this->finish = true;
if (getRunningOption() == '3') {
//printf("\n\n\nEncerrei\n\n\n");
sincronizador->stop();
}
}
sleep(5);
}
}