-
Notifications
You must be signed in to change notification settings - Fork 0
/
err_msg.c
142 lines (118 loc) · 4.45 KB
/
err_msg.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
#ifndef LINT
static char sccs_err_id[] = "Module @(#)err_msg.c Version 1.5 Date 94/10/14 Time 17:03:56";
#endif
/*-----------------------------------------------------------------------------
err_msg.c : funzione per la lettura del file di messaggi
Viene richiamata dai programmi Informix 4GL
Parametri in input: nome programma,
stringa di errore
-----------------------------------------------------------------------------*/
#include <stdio.h>
#define FILE_ERR_DEF "file_msg.iem" /* file messaggi/errori di default */
#define MAXLINEA 256
int err_msg(void)
{
int i,x;
int fine=0;
char np[81]; /* parametro in input: nome del programma */
char par1[81]; /* parametro in input: codice d'errore */
char mess[81]; /* parametro di output : messaggio d'errore */
char linea_letta[MAXLINEA]; /* linea letta dal file di messaggi/errori */
char nome_file[15]; /* nome del file messaggi/errori */
char opn_fal[30]; /* messaggio di fallimento apertura file */
char nome_prog[81];
char messaggio[81];
char *punta;
char *EnvVar;
/*
FILE *fopen(char *,char *),*fp;
*/
FILE *fp;
char *getenv(char *);
char *strrchr(char *,int);
char *fgets(char *,int,FILE *);
void *memset(void *,int,size_t);
memset((void *)par1,'\0',sizeof(par1));
memset((void *)np,'\0',sizeof(np));
/***********************************
lettura dei parametri dallo stack
***********************************/
popquote(par1,sizeof(par1));
popquote(np,sizeof(np));
memset((void *)mess,' ',sizeof(mess));
/*****************************************
definizione del file di errori/messaggi
*****************************************/
EnvVar = getenv("DBERR");
if(EnvVar == (char *)NULL)
strcpy(nome_file,FILE_ERR_DEF);
else
strcpy(nome_file,EnvVar);
/********************************************
eliminazione dei blanks non significativi
********************************************/
if( np[strlen(np) -1] == ' ') {
punta = &np[strlen(np) - 1];
while(*punta == ' ')
punta--;
punta++;
*punta = '\0';
}
if( par1[strlen(par1) -1] == ' ') {
punta = &par1[strlen(par1) - 1];
while(*punta == ' ')
punta--;
punta++;
*punta = '\0';
}
fine=0;
i=0;
/************************************
apertura del file errori/messaggi
************************************/
if((fp = fopen(nome_file,"r")) != (FILE *)NULL) {
memset((void *)linea_letta,'\0',sizeof(linea_letta));
while((fgets(linea_letta,MAXLINEA,fp) != (char *)NULL) &&
fine == 0 ) {
i=0;
if (sscanf(linea_letta,"%[^|]|%[^|]|%[^|]|\n",
nome_prog,messaggio,mess) == 3) {
/**************************************************
confronto tra parametri e stringhe identificate
**************************************************/
if((strcmp(np ,nome_prog) == 0 ) &&
(strcmp(par1,messaggio) == 0 ) ) {
/********************
messaggio Trovato
********************/
fine = 1;
}
else {
/**********************************************
pulizia stringhe nel caso di esito negativo
dal confronto precedente
**********************************************/
memset((void *)linea_letta,' ',sizeof(linea_letta));
memset((void *)mess,' ',sizeof(mess));
memset((void *)nome_prog,' ',sizeof(nome_prog));
memset((void *)messaggio,' ',sizeof(messaggio));
}
}
}
fclose(fp);
}
else {
/*******************************************************************
assegnazione del messaggio di errore in caso di fallita apertura
file errori/messaggi
*******************************************************************/
strcpy(opn_fal,"Error opening ");
strcat(opn_fal,nome_file);
strcpy(mess,opn_fal);
}
/**************************
restituzione parametro
**************************/
retquote(mess);
return(1);
}