-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.c
140 lines (123 loc) · 3.74 KB
/
options.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
#include "affect.h"
// Lit les options entrées en arguments -------------------------------------
void LitOptions ( int argc, char ** argv )
{
int opt ;
char * NomFichier;
OPTIONS = 0 ;
while ( ( opt = getopt(argc, argv, "ievf:hn") ) != -1 )
{
switch ( opt )
{
case 'v' :
OPTIONS |= VERB ;
break;
case 'i' :
OPTIONS |= INVERT ;
break;
case 'n' :
OPTIONS |= PAS_NOM ;
break;
case 'f' :
NomFichier = optarg ;
OPTIONS |= FICH ;
break;
case 'h' :
ShowHelp( argv[0] ) ;
exit ( EXIT_SUCCESS ) ;
break;
case 'e' :
ShowHelp( argv[0] ) ;
ShowExample( argv[0] ) ;
exit ( EXIT_SUCCESS ) ;
break;
default:
fprintf ( stderr, "\nError: unkonwn argument" ) ;
ShowHelp ( argv[0] ) ;
exit ( EXIT_FAILURE ) ;
}
}
if ( ! ( OPTIONS & FICH ) ) {
ShowHelp ( argv[0] ) ;
exit ( EXIT_FAILURE ) ;
}
if ( loadFile ( NomFichier ) )
exit ( EXIT_FAILURE ) ;
}
// Load file and matrix in memory ---------------------------------------
int loadFile ( char * fichier )
{
FILE *ptr; // Pointer on the File
size_t s; // Size of name
int i, j ;
char *tmp = (char *) calloc ( 1, 50 ) ; // Tempory name of sommet
char *tmpNom ; // Pointeur vers la vraie future zone memoire du nom
if ( ( ptr = fopen ( fichier, "r+" ) ) == NULL ) {
fprintf ( stderr, "Error: Can't open file\n" ) ;
return 2 ;
}
// Lit le nombre de Sommets
fscanf( ptr, "%d", &NBR_SOMMET );
if ( NBR_SOMMET <= 0 )
return 3;
// Alloue la memoire pour la matrice
Matrice = (float **) malloc ( sizeof ( float * ) * NBR_SOMMET );
for( i = 0 ; i < NBR_SOMMET ; i++ )
Matrice [ i ] = malloc ( sizeof ( float ) * NBR_SOMMET);
//if ( OPTIONS & INVERT )
//{
// allocate memory for temporary matrix
Matrice_svg = (float **) malloc ( sizeof ( float * ) * NBR_SOMMET );
for( i = 0 ; i < NBR_SOMMET ; i++ )
Matrice_svg [ i ] = malloc ( sizeof ( float ) * NBR_SOMMET);
//}
// Alloue la memoire pour checker les zeros
Matrice_zero = ( int **) malloc ( sizeof ( int * ) * NBR_SOMMET );
for( i = 0 ; i < NBR_SOMMET ; i++ )
Matrice_zero [ i ] = malloc ( sizeof ( int ) * NBR_SOMMET);
Matrice_ligne = ( int * ) malloc ( sizeof( int ) * NBR_SOMMET ) ;
Matrice_colonne = ( int * ) malloc ( sizeof( int ) * NBR_SOMMET ) ;
// Alloue memoire pour les noms des sommets
Nom_colonne = (char **) malloc ( sizeof ( char * ) * NBR_SOMMET );
Nom_ligne = (char **) malloc ( sizeof ( char * ) * NBR_SOMMET );
if ( ! (OPTIONS & PAS_NOM ) )
{
// Read ROW names : Lit le nom des lignes -----------------------------
for ( i = 0 ; i < NBR_SOMMET ; i++ )
{
fscanf ( ptr, "%49s", tmp ) ;
s = strlen ( tmp ) ;
tmpNom = (char *) calloc ( 1, s + 3 ) ;
memcpy ( tmpNom, tmp, s ) ;
tmpNom [ (int) s ] = '\0' ;
Nom_ligne [ i ] = tmpNom ;
}
// Read COLUMN names : Lit le nom des colonnes ------------------------
for ( i = 0 ; i < NBR_SOMMET ; i++ )
{
fscanf ( ptr, "%49s", tmp ) ;
s = strlen ( tmp ) ;
tmpNom = (char *) calloc ( 1, s + 3 ) ;
memcpy ( tmpNom, tmp, s ) ;
tmpNom [ (int) s ] = '\0' ;
Nom_colonne [ i ] = tmpNom ;
}
}
// Lit les affectation entre chaque ligne / colone --------------
for( i = 0 ; i < NBR_SOMMET ; i++ )
{
for ( j = 0 ; j < NBR_SOMMET ; j++ )
{
if ( EOF == fscanf( ptr, "%s", tmp) )
ExitError( "End of File unexpected ; Try with option '-n' to not load row's and column's names" );
if ( VerifyNbr( tmp ) )
ExitError( "Char unexpected ; Expected number ; Try without option '-u' to load row's and column's names" );
Matrice[ i ][ j ] = atoi( tmp );
//if ( OPTIONS & INVERT )
Matrice_svg[ i ][ j ] = atoi( tmp );
}
}
free ( tmp ) ;
fclose ( ptr ) ;
return 0 ; // Ok, tout c'est bien passé
}