File: manip_chaine.c

package info (click to toggle)
syrthes 4.3.0-dfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 84,148 kB
  • sloc: ansic: 49,309; python: 25,790; makefile: 265; sh: 215; xml: 153
file content (319 lines) | stat: -rwxr-xr-x 10,164 bytes parent folder | download | duplicates (3)
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/*-----------------------------------------------------------------------

                         SYRTHES version 4.3
                         -------------------

     This file is part of the SYRTHES Kernel, element of the
     thermal code SYRTHES.

     Copyright (C) 2009 EDF S.A., France

     contact: syrthes-support@edf.fr


     The SYRTHES Kernel 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 2 of
     the License, or (at your option) any later version.

     The SYRTHES Kernel 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 the SYRTHES Kernel; if not, write to the
     Free Software Foundation, Inc.,
     51 Franklin St, Fifth Floor,
     Boston, MA  02110-1301  USA

-----------------------------------------------------------------------*/

# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <ctype.h>

#include "syr_usertype.h"
#include "syr_proto.h"


/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |     Manipulation de chaines                                          |
  |======================================================================| */
void extr_motcle_(char* mc,char *ch,int *i1,int *i2)
{
  int i=0,j=0;
  char *c;

  c=ch;
  while(!strncmp(c," ",1) && i<strlen(ch)-1) {c++;i++;}
  if (i==strlen(ch)-1) 
    {
      *i1=*i2=0;
    }
  else
    {
      j=i;
      while(strncmp(c,"=",1) && j<strlen(ch)-1) {c++;j++;}
      if (j==strlen(ch)-1) 
	{
	  if (SYRTHES_LANG == FR)
	    {
	      printf("Erreur sur la chaine %s\n",ch);
	      printf("On attend un symbole '='\n");
	    }
	  else if (SYRTHES_LANG == EN)
	    {
	      printf("Error on the string %s\n",ch);
	      printf("The following symbol is expected '='\n");
	    }
	  syrthes_exit(1);
	}
      else
	{
	  strncpy(mc,ch+i,j-i);
	  strcpy(mc+j-i,"\0");
	  /*	  *i1=i; *i2=j+1; */
	  *i1=i; *i2=j;
	}
    }
  
  
  /*  int i;
      
      i=0; *i1=*i2=-1;
      while (*i2==-1)
      {
      if (ch[i]=='\'')
      if (*i1==-1) *i1=i;
      else *i2=i;
      i++;
      }
      strncpy(mc,ch+*i1+1,*i2-*i1-1);
      strcpy(mc+*i2-*i1-1,"\0");
  */
}
/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |      Extraction de mots-cles                                         |
  |======================================================================| */
void extr_motcle(char* mc,char *ch,int *i1,int *i2)
{
  int i=0,j=0;
  char *c;

  c=ch;
  while(!strncmp(c," ",1) && i<strlen(ch)-1) {c++;i++;}
  if (i==strlen(ch)-1) 
    {
      *i1=*i2=0;
    }
  else
    {
      j=i;
      while(strncmp(c," ",1) && j<strlen(ch)-1) {c++;j++;}
      strncpy(mc,ch+i,j-i);
      strcpy(mc+j-i,"\0");
      /*      *i1=i; *i2=j+1;*/
      *i1=i; *i2=j;
    }
  
} 
/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  | lecture des mot-cle : lecture d'une reponse de type "chaine"         |
  | obligatoirement non vide et sans espaces                             |
  |======================================================================| */
int rep_ch(char*ch1,char *ch)
{
  int i=0,j=0;
  char c;

  c=ch[0]; i=j=0;
  while( c == ' ' && i<strlen(ch)-1) {i++; c=ch[i];}
  if (i==strlen(ch)-1) {
    return 0;
  }
  else {
    j=i;
    c=ch[j];
    while( c != ' ' && iscntrl(c)==0 && j<strlen(ch)-1) {j++;c=ch[j];}
    strncpy(ch1,ch+i,j-i);
    strcpy(ch1+j-i,"\0");
    return j;
  }
}
  
/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2012 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  | lecture des mot-cle : lecture d'une reponse de type "chaine"         |
  | obligatoirement non vide, mais presences d'espaces possible          |
  |======================================================================| */
int rep_chw(char*ch1,char *ch)
{
  int i=0,j=0;
  char c;

  c=ch[0]; i=j=0;
  while( c == ' ' && i<strlen(ch)-1) {i++; c=ch[i];}
  if (i==strlen(ch)-1) {
    return 0;
  }
  else {
    j=i;
    c=ch[j];
    while( c != '\0' && iscntrl(c)==0 && j<strlen(ch)-1) {j++;c=ch[j];}
    strncpy(ch1,ch+i,j-i);
    strcpy(ch1+j-i,"\0");
    return j;
  }
}
  
/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |                                                                      |
  |======================================================================| */
int rep_int(char *ch)
{
  int i;
  
  sscanf(ch,"%d",&i);
  return(i);
}
/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |                                                                      |
  |======================================================================| */
double rep_dbl(char *ch)
{
  double d;
  
  sscanf(ch,"%lf",&d);
  return(d);
}

/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |                                                                      |
  |======================================================================| */
void rep_listint(int *ilist,int *nb,char *ch)
{
  int i=0;
  char c;
  
  *nb=0;
  c=ch[0];
  while(iscntrl(c)==0 && i<strlen(ch)-1)
    {
      while( c == ' ') {i++;c=ch[i];}
      if (iscntrl(c)==0 && i<strlen(ch)-1)
	{
	  sscanf(ch+i,"%d",ilist+*nb); 
	  (*nb)++;
	  while( (c) && (c != ' ')) {i++;c=ch[i];}
	}
    }
}

/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |                                                                      |
  |======================================================================| */
void rep_listdble(double *dlist,int *nb,char *ch)
{
  int i=0;
  char c;
  
  *nb=0;
  c=ch[0];
  while(iscntrl(c)==0 && i<strlen(ch)-1)
    {
      while( c == ' ') {i++;c=ch[i];}
      if (iscntrl(c)==0 && i<strlen(ch)-1)
	{
	  sscanf(ch+i,"%le",dlist+*nb); 
	  (*nb)++;
	  while( c != ' ') {i++;c=ch[i];}
	}
    }
}

/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |                                                                      |
  |======================================================================| */
void rep_ndbl(int nb,double *dlist,int *ifin,char *ch)
{
  int i=0,n=0;
  char *c;
  
  c=ch;
  while(n<nb)
    {
      while(!strncmp(c," ",1)) {c++;i++;}
      sscanf(c,"%lf",dlist+n); 
      n++;
      while(strncmp(c," ",1)&&i<strlen(ch)) {c++;i++;}
    }
  *ifin=i;
}


/*|======================================================================|
  | SYRTHES 4.3                                       COPYRIGHT EDF 2009 |
  |======================================================================|
  | AUTEURS  : C. PENIGUEL, I. RUPP                                      |
  |======================================================================|
  |                                                                      |
  |======================================================================| */
void rep_nint(int nb,int *ilist,int *ifin,char *ch)
{
  int i=0,n=0;
  char *c;
  
  c=ch;
  while(n<nb)
    {
      while(!strncmp(c," ",1)) {c++;i++;}
      sscanf(c,"%d",ilist+n); 
      n++;
      while(strncmp(c," ",1)&&i<strlen(ch)) {c++;i++;}
    }
  *ifin=i;
}