Blame view

tools/lia_ltbox/lia_tagg_orig/src/tagg/produit_lex_reacc.c 3.49 KB
e6be5137b   Jean-François Rey   reinitialized pro...
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
  /*
  #    --------------------------------------------------------
  #    LIA_TAGG: a statistical POS tagger + syntactic bracketer
  #    --------------------------------------------------------
  #
  #    Copyright (C) 2001 FREDERIC BECHET
  #
  #    ..................................................................
  #
  #    This file is part of LIA_TAGG
  #
  #    LIA_TAGG 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.
  #
  #    This program 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 this program; if not, write to the Free Software
  #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  #    ..................................................................
  #
  #    Contact :
  #              FREDERIC BECHET - LIA - UNIVERSITE D'AVIGNON
  #              AGROPARC BP1228 84911  AVIGNON  CEDEX 09  FRANCE
  #              frederic.bechet@lia.univ-avignon.fr
  #    ..................................................................
  */
  /*  Produit un fichier lexique pour le reaccentueur :
      - prends en entree un lexique union eclate (mots\tcate\tcompte\tlemm)
      - remplace le lemme par le mot lui meme
      - enleve les accents des graphies ET laisse les graphies accentues
      - ressort le lexique au meme format
      entree : stdin
      sortie : stdout  */
  /*  FRED 0201  */
  
  #include <stdio.h>
  #include <stdlib.h>
  #include <string.h>
  #include <strings.h>
  
  /*................................................................*/
  
  #define TailleLigne	400
  
  #define True	1
  #define False	0
  
  void ERREUR(char *ch1,char *ch2)
  {
  fprintf(stderr,"ERREUR : %s %s
  ",ch1,ch2);
  exit(0);
  }
  
  /*................................................................*/
  
  int poss_accent(char c)
  {
  if ((c>='1')&&(c<='4')) return True; else return False;
  }
  
  int main(int argc, char **argv)
  {
  char ch[TailleLigne],*graf,*cate,*compte,newgraf[TailleLigne];
  int nb,i,j,accent_bdlex;
  
  if ((argc>1)&&(!strcmp(argv[1],"-bdlex"))) accent_bdlex=1; else accent_bdlex=0;
  
  for(nb=0;fgets(ch,TailleLigne,stdin);nb++)
   {
   if ((nb+1)%100000==0) fprintf(stderr,"En cours : %d
  ",nb+1);
   graf=strtok(ch," \t
  ");
   cate=strtok(NULL," \t
  ");
   compte=strtok(NULL," \t
  ");
   for(i=j=0;graf[i];)
    if (accent_bdlex)
     {
     newgraf[j++]=graf[i];
     if (
       (graf[i]=='a')&&(poss_accent(graf[i+1]))||
       (graf[i]=='e')&&(poss_accent(graf[i+1]))||
       (graf[i]=='i')&&(poss_accent(graf[i+1]))||
       (graf[i]=='o')&&(poss_accent(graf[i+1]))||
       (graf[i]=='u')&&(poss_accent(graf[i+1]))||
       (graf[i]=='c')&&(graf[i+1]=='5')
       )
       i+=2;
     else i++;
     }
    else
     {
     if ((graf[i]=='à')||(graf[i]=='â')) newgraf[j++]='a'; else
     if ((graf[i]=='ç')) newgraf[j++]='c'; else
     if ((graf[i]=='è')||(graf[i]=='é')||(graf[i]=='ê')||(graf[i]=='ë')) newgraf[j++]='e'; else
     if ((graf[i]=='î')||(graf[i]=='ï')) newgraf[j++]='i'; else
     if ((graf[i]=='ô')) newgraf[j++]='o'; else
     if ((graf[i]=='ù')||(graf[i]=='û')) newgraf[j++]='u'; else
     newgraf[j++]=graf[i];
     i++;
     }
   newgraf[j]='\0';
  
   printf("%s\t%s\t%s\t%s
  ",graf,cate,compte,graf);
   if (strcmp(newgraf,graf)) printf("%s\t%s\t%s\t%s
  ",newgraf,cate,compte,graf);
   }
  }