-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculadoraGUI.java
249 lines (226 loc) · 11 KB
/
CalculadoraGUI.java
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EmptyBorder;
import javax.swing.border.LineBorder;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.rmi.Naming;
import java.rmi.RemoteException;
import java.rmi.NotBoundException;
import java.net.MalformedURLException;
public class CalculadoraGUI extends JFrame {
private IOperacion operacionesBasicas;
private IOpeCientifica operacionesCientificas;
private JTextField display;
public CalculadoraGUI() {
setTitle("Calculadora RMI");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel contentPanel = new JPanel();
contentPanel.setLayout(new GridBagLayout());
GridBagConstraints c = new GridBagConstraints();
c.fill = GridBagConstraints.BOTH;
display = new JTextField();
display.setHorizontalAlignment(JTextField.RIGHT);
c.gridx = 0;
c.gridy = 0;
c.gridwidth = 4;
c.weightx = 1.0;
contentPanel.add(display, c);
String[] buttonLabels = {
"7", "8", "9", "/",
"4", "5", "6", "*",
"1", "2", "3", "-",
"0", ".", "=", "+",
"Sen", "Cos", "Tan", "sqrt",
"Ln", "Log10", "x^y", "Abs",
"!", "Exp", "Atan", "C"
};
c.gridwidth = 1;
c.weightx = 0.50;
int x = 0;
int y = 1;
for (String label : buttonLabels) {
JButton button = new JButton(label);
button.setFont(new Font("Serif", Font.BOLD, 20));
button.setForeground(Color.BLACK);
button.setBackground(new Color(218, 202, 251));
Border line = new LineBorder(Color.BLACK);
Border margin = new EmptyBorder(5, 15, 5, 15);
Border compound = new CompoundBorder(line, margin);
button.setBorder(compound);
button.addActionListener(new ButtonClickListener());
c.gridx = x;
c.gridy = y;
contentPanel.add(button, c);
x++;
if (x > 3) {
x = 0;
y++;
}
}
add(contentPanel);
pack();
setLocationRelativeTo(null);
try {
String urlBasicas = "rmi://192.168.1.12/Operaciones";
operacionesBasicas = (IOperacion) Naming.lookup(urlBasicas);
String urlCientificas = "rmi://192.168.1.13/OperaCientifica";
operacionesCientificas = (IOpeCientifica) Naming.lookup(urlCientificas);
} catch (MalformedURLException | RemoteException | NotBoundException e) {
e.printStackTrace();
System.exit(1);
}
}
private class ButtonClickListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
String command = e.getActionCommand();
try {
if ("0123456789.".contains(command)) {
display.setText(display.getText() + command);
} else if ("+-*/".contains(command)) {
display.setText(display.getText() + " " + command + " ");
} else if ("=" .equals(command)) {
String[] parts = display.getText().split(" ");
if (parts.length == 3) {
try {
float num1 = Float.parseFloat(parts[0]);
float num2 = Float.parseFloat(parts[2]);
float result = 0;
switch (parts[1]) {
case "+":
result = operacionesBasicas.suma(num1, num2);
break;
case "-":
result = operacionesBasicas.resta(num1, num2);
break;
case "*":
result = operacionesBasicas.multiplicacion(num1, num2);
break;
case "/":
if (num2 != 0) {
result = operacionesBasicas.division(num1, num2);
} else {
showError("Error: División por cero.");
return;
}
break;
case "^":
result = (float)operacionesCientificas.potencia(num1, num2);
}
display.setText(Float.toString(result));
} catch (RemoteException re) {
handleServerConnectionError(operacionesBasicas, "Operaciones básicas");
}
}
} else if ("Sen".equals(command) || "Cos".equals(command) || "Tan".equals(command) || "sqrt".equals(command) ||
"Ln".equals(command) || "Log10".equals(command) || "x^y".equals(command) || "Abs".equals(command) ||
"!".equals(command) || "Exp".equals(command) || "Atan".equals(command)) {
String expression = display.getText();
double num = Double.parseDouble(expression);
double result = 0;
try {
switch (command) {
case "Sen":
result = operacionesCientificas.sen(num);
break;
case "Cos":
result = operacionesCientificas.cos(num);
break;
case "Tan":
result = operacionesCientificas.tan(num);
break;
case "sqrt":
result = operacionesCientificas.raizCuadrada(num);
break;
case "Ln":
if (num > 0) {
result = operacionesCientificas.logaritmoNatural(num);
} else {
showError("Error: El logaritmo natural no está definido para números no positivos.");
return;
}
break;
case "Log10":
if (num > 0) {
result = operacionesCientificas.logaritmoBase10(num);
} else {
showError("Error: El logaritmo base 10 no está definido para números no positivos.");
return;
}
break;
case "x^y":
display.setText(display.getText() + " ^ ");
return;
case "Abs":
result = operacionesCientificas.valorAbsoluto(num);
break;
case "!":
if (num >= 0 && num == (int) num) {
result = operacionesCientificas.factorial((int) num);
} else {
showError("Error: El factorial no está definido para números no enteros o negativos.");
return;
}
break;
case "Exp":
result = operacionesCientificas.exponencial(num);
break;
case "Atan":
result = operacionesCientificas.arcotangente(num);
break;
}
display.setText(Double.toString(result));
} catch (RemoteException re) {
handleServerConnectionError(operacionesCientificas, "Operaciones científicas");
}
} else if ("x^y".equals(command)) {
display.setText(display.getText() + " ^ ");
} else if ("C".equals(command)) {
display.setText("");
}
} catch (NumberFormatException ex) {
showError("Error: Entrada no válida.");
}
}
private void showError(String message) {
JOptionPane.showMessageDialog(null, message, "Error", JOptionPane.ERROR_MESSAGE);
}
private void handleServerConnectionError(Object server, String serverName) {
int attemptCount = 0;
while (attemptCount < 3) {
try {
Thread.sleep(2000); // Espera 2 segundos antes de intentar nuevamente.
System.out.println("Intentando reconectar con el servidor de " + serverName + "...");
JOptionPane.showMessageDialog(null, "Intentando reconectar con el servidor de " + serverName + "...");
establishConnection(server, serverName);
return;
} catch (Exception e) {
attemptCount++;
}
}
showError("Error: No se puede conectar con el servidor de " + serverName + ". Por favor, verifique la conexión.");
}
private void establishConnection(Object server, String serverName) {
try {
if (server == operacionesBasicas) {
String urlBasicas = "rmi://192.168.1.12/Operaciones";
operacionesBasicas = (IOperacion) Naming.lookup(urlBasicas);
} else if (server == operacionesCientificas) {
String urlCientificas = "rmi://192.168.1.13/OperaCientifica";
operacionesCientificas = (IOpeCientifica) Naming.lookup(urlCientificas);
}
System.out.println("Conexión con el servidor de " + serverName + " restablecida.");
JOptionPane.showMessageDialog(null, "Conexión con el servidor de " + serverName + " restablecida.");
} catch (Exception ex) {
// La conexión no se pudo restablecer, se manejará en el siguiente ciclo.
}
}
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
new CalculadoraGUI().setVisible(true);
});
}
}