-
Notifications
You must be signed in to change notification settings - Fork 2
/
motor.c
93 lines (69 loc) · 2.46 KB
/
motor.c
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
/*Copyright 2016 2017 Almudena Garcia Jurado-Centurion
This file is part of Calculadora_APSO.
Calculadora_APSO 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.
Calculadora_APSO 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 Calculadora_APSO. If not, see <http://www.gnu.org/licenses/>.*/
#include <stdlib.h>
#include <fcntl.h>
#include <sys/types.h>
#include <signal.h>
#include <unistd.h>
//Variable control para indicar la finalizacion del programa
int fin = 0;
//Proceso asociado a la senal de fin de programa, que activa la variable control
void llega_fin(){
fin = 1;
}
int main(){
int fifo_motor, fifo_op2, fifo_operador;
float num1, num2, resultado;
int operador;
//Abrimos la fifo que mandara el resultado al proceso principal, en modo escritura
fifo_motor = open("fifo_motor", O_WRONLY);
//Abrimos la fifo que leera el operando del proceso OP2
fifo_op2 = open("fifo_op2", O_RDONLY);
//Abrimos la fifo que leera el operador del proceso operador
fifo_operador = open("fifo_operador", O_RDONLY);
//Nos preparamos para recibir la senal de finalizacion
signal(9, llega_fin);
do{
//Leemos el primer operando desde la pipe de OP1, situada en el canal 2
while(read(2, &num1, sizeof(num1)) == 0);
//Leemos el segundo operando desde la fifo de OP2
while(read(fifo_op2, &num2, sizeof(num2)) == 0);
//Leemos el operador desde la fifo de operador
while(read(fifo_operador, &operador, sizeof(operador)) == 0);
//Realizamos la operacion
switch(operador){
case 1:
resultado = num1 + num2;
break;
case 2:
resultado = num1 - num2;
break;
case 3:
resultado = num1 * num2;
break;
case 4:
resultado = num1 / num2;
break;
}
//Pasamos el resultado al proceso interfaz, mediante la fifo fifo_motor
write(fifo_motor, &resultado, sizeof(resultado));
//Repetimos el proceso hasta recibir la senal de finalizacion
}while (fin == 0);
//Iniciamos finalizacion de programa
//Cerramos las fifos
close(fifo_op2);
close(fifo_operador);
//Salimos del programa
exit(0);
return num2;
}