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
|
#include <bvr.h>
#include <stdlib.h>
#include <stdio.h>
#include <tape.c>
#include <dirent.h>
#include <string.h>
#include <limits.h>
extern int main(int argc, char* argv[]) {
if(argc != 3) {
printf("usage: %s source-dir/ destination-dir/ (trailing slash mandatory)\n", argv[0]);
return 1;
}
char* source_folder_name = argv[1];
char* destination_folder_name = argv[2];
char* file_extension = ".bvr";
char* destination_extension = ".html";
char* file_extension2 = ".bverbose"; // unofficial
char source_filename[NAME_MAX];
char destination_filename[NAME_MAX];
int response_from_composer;
char copy_buffer;
DIR *dir;
struct dirent *ent;
if ((dir = opendir (source_folder_name)) != NULL) {
while ((ent = readdir (dir)) != NULL) {
if(strcmp(ent->d_name, ".") != 0 && strcmp(ent->d_name, "..") != 0) {
char *dot = strrchr(ent->d_name, '.');
if(dot && ( !strcmp(dot, file_extension) || !strcmp(dot, file_extension2) ) ) {
strcpy(source_filename, source_folder_name);
strcat(source_filename, ent->d_name);
strcpy(destination_filename, destination_folder_name);
strcat(destination_filename, ent->d_name);
char* temp_pointer = strrchr(destination_filename, '.');
if (!temp_pointer) {
} else {
*temp_pointer = '\0';
}
strcat(destination_filename, destination_extension);
fprintf(stderr, "[compose-all-in-dir.c] %s -> %s ", source_filename, destination_filename);
fflush(stderr);
if(bvr_compose_page(source_filename, 0, destination_filename) == SUCCESS) {
fprintf(stderr, "SUCCESS!\n");
} else {
fprintf(stderr, "FAILURE!!!\n");
}
}
}
}
closedir (dir);
} else {
/* could not open directory */
return 1;
}
return 0;
}
|