forked from ignasave/TPFinalProgramacion2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cliente.c
305 lines (253 loc) · 10.4 KB
/
cliente.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
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#include "cliente.h"
/**************************************************************************
* \brief Funcion que agrega un cliente al archivo de clientes
* \param stCliente cliente a agregar
**************************************************************************/
void agregarUnCliente(stCliente c){
FILE *pArchClientes = fopen(AR_CLIENTES, "ab");
if(pArchClientes){
fwrite(&c,sizeof(stCliente),1,pArchClientes);
fclose(pArchClientes);
}
}
/*********************************************************************//**
*
* \brief Valida si existe una @ en un string
* \param char email[]
* \return int 0 si no existe - 1 si existe
*
**************************************************************************/
int validaEmail(char email[]){
int v=strlen(email);
int i=0;
int flag=0;
while(i<v && flag == 0){
if(email[i]==64){ /// =='@'
flag=1;
}
i++;
}
return flag;
}
/**************************************************************************
* \brief Funcion que obtiene un valor entero cualquiera manualmente
* \return int valor obtenido
**************************************************************************/
int obtenerInt(){
int valor;
printf("\n\t Ingrese nuevo valor : ");
scanf("%d", &valor);
return valor;
}
/**************************************************************************
* \brief Funcion que muestra las opciones para modificar un cliente
* \param stCliente cliente a modificar
**************************************************************************/
void mostrarModificacion(stCliente c) {
printf("\n\n\t ----------------------------------------");
printf("\n\t 1) Nro Cliente ......: %d", c.nroCliente);
printf("\n\t 2) Nombre ...........: %s", c.nombre);
printf("\n\t 3) Apellido .........: %s", c.apellido);
printf("\n\t 4) DNI ..............: %s", c.dni);
printf("\n\t 5) Email ............: %s", c.email);
printf("\n\t 6) Domicilio ........: %s", c.domicilio);
printf("\n\t 7) Movil ............: %s", c.movil);
printf("\n\t 8) Baja .............: %s", (c.baja) ? "SI" : "NO" );
printf("\n\n\n\t Cancelar (ESC) | Confirmar (c)\n");
}
/**************************************************************************
* \brief Sobreescribe un cliente en un archivo de clientes
* \param stCliente c el cliente modificado
**************************************************************************/
void modificarClienteArchivo(stCliente c) {
int pos = 0;
pos = posPorIdCliente(c.idCliente);
FILE *pArchClientes = fopen(AR_CLIENTES, "r+b");
if(pArchClientes){
fseek(pArchClientes, sizeof(stCliente)*pos, SEEK_SET);
fwrite(&c, sizeof(stCliente), 1, pArchClientes);
fclose(pArchClientes);
}
}
/*************************************************************************
*
* \brief Busca la posicion en el archivo de un determinado cliente por su id
* \param int id
* \return int posicion
*
**************************************************************************/
int posPorIdCliente(int id){
int pos = -1;
stCliente c;
FILE *pArchClientes = fopen(AR_CLIENTES, "rb");
if(pArchClientes){
while(pos == -1 && fread(&c, sizeof(stCliente), 1, pArchClientes) > 0){
if(c.idCliente == id){
pos = ftell(pArchClientes)/sizeof(stCliente) -1;
}
}
fclose(pArchClientes);
}
return pos;
}
/**************************************************************************
*
* \brief Retorna el ultimo id cargado
* \return int -1 si no hay registros o el id del ultimo registro
*
**************************************************************************/
int ultimoIdCliente() {
stCliente c;
int id = -1;
FILE *pArchCliente = fopen(AR_CLIENTES, "rb");
if(pArchCliente){
fseek(pArchCliente, sizeof(stCliente)*(-1),SEEK_END);
if(fread(&c,sizeof(stCliente),1,pArchCliente) > 0){
id = c.idCliente;
}
fclose(pArchCliente);
}
return id;
}
/*************************************************************//**
*
* \brief Muestra el cartel informacion del cliente
*
*****************************************************************/
void cartelInformacionCliente(){
printf("\n%s%s INFORMACION DEL CLIENTE ", TAB, TAB);
}
/*************************************************************//**
*
* \brief Muestra las opciones de visualizacion como encabezado
*
*****************************************************************/
void encabezado()
{
printf("\n%s%s--------------------------------------------------------------------------------------", TAB, TAB);
printf("\n%s%s| |", TAB, TAB);
printf("\n%s%s|(1) FILTRAR | (2) VER TODO | (3) MODIFICAR CLIENTE | (4) VER DETALLE | (ESC) SALIR |", TAB, TAB);
printf("\n%s%s| |", TAB, TAB);
printf("\n%s%s--------------------------------------------------------------------------------------\n", TAB, TAB);
}
/*************************************************************//**
*
* \brief Muestra una barra a modo de footer de lista de clientes
*
*****************************************************************/
void footerDeCliente()
{
printf("%s---------------------------------------------------------------------------------------------------------------------------------\n", TAB);
}
/*************************************************************//**
*
* \brief Muestra las propiedades de los clientes como encabezado de la lista de clientes
*
*****************************************************************/
void headerDeCliente()
{
printf("\n%s---------------------------------------------------------------------------------------------------------------------------------", TAB);
printf("\n%s| | | | | | | | |", TAB);
printf("\n%s| Nro Cliente | Nombre | Apellido | DNI | Email | Domicilio | Movil | Baja |", TAB);
printf("\n%s| | | | | | | | |", TAB);
printf("\n%s---------------------------------------------------------------------------------------------------------------------------------\n", TAB);
}
/**********************************************************************
* \brief Funcion que muestra las opciones de los filtros de clientes
********************************************************************/
void mostrarFiltros() {
printf("\n\n\t ----------- FILTRAR POR ---------------");
printf("\n\t ----------------------------------------");
printf("\n\t 1) Nro Cliente ......: ");
printf("\n\t 2) Nombre ...........: ");
printf("\n\t 3) Apellido .........: ");
printf("\n\t 4) DNI ..............: ");
printf("\n\t 5) Email ............: ");
printf("\n\t 6) Domicilio ........: ");
printf("\n\t 7) Movil ............: ");
printf("\n\t 8) Baja .............: ");
printf("\n\n\n\t Cancelar (ESC) \n\n\n");
}
/*************************************************************//**
*
* \brief Muestra un cliente formateado correctamente
* \param stCliente cliente que mostrar
*
*****************************************************************/
void mostrarUnCliente(stCliente c){
char nroClienteF[30] = "";
formatearCeldaEntero(c.nroCliente,nroClienteF, 14);
char nombreF[30] = "";
formatearCeldaString(c.nombre,nombreF, 17);
char apellidoF[30] = "";
formatearCeldaString(c.apellido,apellidoF, 19);
char dniF[30] = "";
formatearCeldaString(c.dni,dniF, 11);
char emailF[30] = "";
formatearCeldaString(c.email,emailF, 26);
char domicilioF[30] = "";
formatearCeldaString(c.domicilio,domicilioF, 22);
char movilF[30] = "";
formatearCeldaString(c.movil,movilF, 12);
char bajaF[30] = "";
formatearCeldaString(c.baja ? "SI" : "NO" ,bajaF, 7);
printf("%s|%s%s%s%s%s%s%s%s\n",TAB ,nroClienteF , nombreF, apellidoF, dniF, emailF, domicilioF, movilF,bajaF );
}
/*************************************************************//**
*
* \brief Formatea un entero para que entre dentro de un tama�o especifico y le pone un separador
* \param int valor entero a formatear
* \param char string al que pasar el valor formateado
* \param int tama�o al que formatear el valor
*
*****************************************************************/
void formatearCeldaEntero(int valor, char formateado[], int tamanoMaximo) {
char aux[100];
itoa(valor, aux, 10);
int length = strlen(aux);
if( length < tamanoMaximo - 1) {
int espacioVacio = tamanoMaximo - 1 - length;
int mitad = espacioVacio / 2;
for(int i = 0; i < mitad; i++){
formateado[i] = ' ';
}
strcat(formateado, aux);
for(int i = length + mitad; i < tamanoMaximo; i++){
formateado[i] = ' ';
}
formateado[tamanoMaximo - 1] = '|';
} else {
for(int i = 0; i < tamanoMaximo; i++){
formateado[i] = aux[i];
}
formateado[tamanoMaximo - 1] = '|';
}
}
/*************************************************************//**
*
* \brief Formatea un entero para que entre dentro de un tama�o especifico y le pone un separador
* \param char string a formatear
* \param char string al que pasar el valor formateado
* \param int tama�o al que formatear el valor
*
*****************************************************************/
void formatearCeldaString(char valor[], char formateado[] ,int tamanoMaximo) {
int length = strlen(valor);
if( length < tamanoMaximo - 1) {
int espacioVacio = tamanoMaximo - 1 - length;
int mitad = espacioVacio / 2;
for(int i = 0; i < mitad; i++){
formateado[i] = ' ';
}
strcat(formateado, valor);
for(int i = length + mitad; i < tamanoMaximo; i++){
formateado[i] = ' ';
}
formateado[tamanoMaximo - 1] = '|';
} else {
for(int i = 0; i < tamanoMaximo; i++){
formateado[i] = valor[i];
}
formateado[tamanoMaximo - 1] = '|';
}
}