-
Notifications
You must be signed in to change notification settings - Fork 0
/
anotacoes.y
211 lines (176 loc) · 5.17 KB
/
anotacoes.y
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
%{
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
extern int yylex();
int yyerror();
char *currentHTML;
char* currentSujeito;
char* currentRelacao;
void create_HTML(char *str){
for(int i = 0; str[i] != '\0'; i++){
if(str[i] == '\n'){
str[i] = '\0';
break;
}
}
currentHTML = strdup(str);
char file[80];
int count_bytes = 0;
sprintf(file, "./html/%s.html", str);
int fd = open(file, O_CREAT | O_TRUNC | O_WRONLY | O_APPEND, 0666);
char *buf = "<!DOCTYPE html>\n<html>\n<body>\n";
char string[30];
count_bytes = sprintf(string,"<h1>%s</h1>\n", str);
write(fd, buf, strlen(buf));
write(fd, string, count_bytes);
close(fd);
}
void close_HTML(){
char file[80];
sprintf(file, "./html/%s.html", currentHTML);
int fd = open(file, O_WRONLY | O_APPEND, 0666);
char* buf = "</body>\n</html>\n";
write(fd, buf, strlen(buf));
close(fd);
}
void titulo_HTML(char* str){
char file[80];
sprintf(file, "./html/%s.html", currentHTML);
int fd = open(file, O_WRONLY | O_APPEND, 0666);
char string[50];
int count_bytes = sprintf(string,"<h2>%s</h2>\n", str);
write(fd, string, count_bytes);
close(fd);
}
void texto_HTML(char* str){
char file[80];
sprintf(file, "./html/%s.html", currentHTML);
int fd = open(file, O_WRONLY | O_APPEND, 0666);
char string[200];
int count_bytes = sprintf(string,"<p>%s</p>\n", str);
write(fd, string, count_bytes);
close(fd);
}
char* poeEspaco(char* c){
char* res = strdup(c);
for(int i = 0; i < strlen(c); i++){
if(res[i] == '_'){
res[i] = ' ';
}
}
return res;
}
char* retiraDoisPontos(char* relacao){
char* rel;
if(relacao[0] == ':') {
rel = relacao + 1;
return poeEspaco(rel);
}
return poeEspaco(relacao);
}
char* formataObjeto(char* objeto){
char* obj;
if(objeto[0] == '\"') {
obj = strdup(objeto + 1);
obj[strlen(obj)-1] = '\0';
}
return poeEspaco(obj);
}
void triplos_HTML(char *str){
int count_bytes;
char file[80];
sprintf(file, "./html/%s.html", currentHTML);
int fd = open(file, O_WRONLY | O_APPEND, 0666);
char string[200];
if(strcmp(currentRelacao, ":img") == 0){
count_bytes = sprintf(string,"<img src=\"../imagens/%s\" alt=\"Coragem\" title=\"%s\">\n", formataObjeto(str), currentSujeito);
}
else if(strcmp(currentRelacao, "a") == 0){
if(str[0] == '\"' && strcmp(currentRelacao, ":img") != 0) {
count_bytes = sprintf(string,"<p><a href=\"./%s.html\">%s</a> é %s\n</p>", currentSujeito+1, poeEspaco(currentSujeito+1),formataObjeto(str));
}
else{
count_bytes = sprintf(string,"<p><a href=\"./%s.html\">%s</a> é <a href=\"./%s.html\">%s</a>\n</p>", currentSujeito+1, poeEspaco(currentSujeito+1), str+1, poeEspaco(str+1));
}
} else {
if(str[0] == '\"' && strcmp(currentRelacao, ":img") != 0) {
count_bytes = sprintf(string,"<p><a href=\"./%s.html\">%s</a> é %s %s\n</p>", currentSujeito+1, poeEspaco(currentSujeito+1), retiraDoisPontos(currentRelacao), formataObjeto(str));
}
else{
count_bytes = sprintf(string,"<p><a href=\"./%s.html\">%s</a> é %s <a href=\"./%s.html\">%s</a>\n</p>", currentSujeito+1, poeEspaco(currentSujeito+1), retiraDoisPontos(currentRelacao), str+1, poeEspaco(str+1));
}
}
write(fd, string, count_bytes);
close(fd);
}
void create_Blank_HTML(char* str){
char file[80];
if(str[0] == ':'){
sprintf(file, "./html/%s.html", str+1);
int fd = open(file, O_WRONLY | O_APPEND | O_CREAT, 0666);
close(fd);
}
}
%}
%union{ char* palavra; char* objeto;}
%token IN INITIT INITTRIP PONTOVIRGULA VIRG SPACE
%token <palavra> pal
%token <palavra> esp
%token <objeto> obj
%token <objeto> suj
%token <objeto> img
%%
Anotacao : IN Doc Triplos
| IN Doc Triplos Anotacao
;
Doc : Topico Titulo Texto
;
Topico : pal {create_HTML($1);}
;
Titulo : INITIT pal {titulo_HTML($2);}
;
Texto : Texto pal {texto_HTML($2);}
| pal {texto_HTML($1);}
;
Triplos : INITTRIP TriplosList {close_HTML();}
;
TriplosList : Sujeito SPACE Relacoes
| Sujeito SPACE Relacoes TriplosList
;
Relacoes : Relacao SPACE ListaObjeto
| Relacao SPACE ListaObjeto SPACE Relacoes
| RelacaoEspecial SPACE ListaObjeto
| RelacaoEspecial SPACE ListaObjeto SPACE Relacoes
| RelacaoImagem SPACE ListaObjeto
| RelacaoImagem SPACE ListaObjeto SPACE Relacoes
;
Relacao : obj {currentRelacao = $1;}
;
RelacaoEspecial : esp {currentRelacao = $1;}
;
RelacaoImagem : img {currentRelacao = $1;}
;
ListaObjeto : Objeto PONTOVIRGULA
| Objeto VIRG SPACE ListaObjeto
;
Sujeito : suj {currentSujeito = $1;}
;
Objeto : obj {triplos_HTML($1); create_Blank_HTML($1);}
;
%%
#include "lex.yy.c"
int yyerror(char *s) {
printf("ERRO: %s\n",s);
return(0);
}
int main(){
yyparse();
return 0;
}