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
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <syslog.h>
#include <dirent.h>
#include <sys/time.h>
#include <string.h>
#include <glib-object.h> /* g_type_init */
void recurse(char *cur_dir,FILE *out);
/**
*
*
**/
void
usage(void)
{
printf("priority: recurses templates and generates priority file\n");
printf("\t-h\thelp\n");
printf("\t-f\toutput file\n");
}
/**
*
*
**/
int
main(int argc, char** argv)
{
int ch;
char *filename = NULL;
/* this is needed before calling certain glib functions */
g_type_init();
//grab inputs
while ((ch = getopt(argc, argv, "hf:")) != -1) {
switch (ch) {
case 'h':
usage();
exit(0);
case 'f':
filename = optarg;
//GET OUT FILE HERE
}
if (filename == NULL) {
strcpy(filename,"priority");
}
FILE *fp = fopen(filename,"w");
if (fp == NULL) {
printf("cannot open priority file. exiting...\n");
}
char root_dir[2048] = "";
recurse(root_dir,fp);
fclose(fp);
}
return 0;
}
/**
* On each priority node write out location and value and continue recursion
*
**/
void
recurse(char *cur_dir,FILE *out)
{
char root_path[] = "/opt/vyatta/share/vyatta-cfg/templates";
char str[2048];
//open and scan node.def
char file[2048];
sprintf(file,"%s/%s/node.def",root_path,cur_dir);
FILE *fp = fopen(file,"r");
// printf("found node.def at: %s\n",file);
if (fp != NULL) {
while (fgets(str, 1024, fp) != 0) {
if (strncmp("priority:",str,9) == 0) {
//retrieve value and write out...
const char delimiters[] = " ";
char *running;
char *token;
running = strdup(str);
token = strsep(&running, delimiters);
token = strsep(&running, delimiters);
unsigned long val = strtoul(token,NULL,10);
if (val > 0 && val <= 1000) {
fwrite(token,1,strlen(token)-1,out);
fwrite(" ",1,1,out);
//remove fixed path
//offset by 1 to remove the leading slash
fwrite(cur_dir+1,1,strlen(cur_dir)-1,out);
fwrite("\n",1,1,out);
}
break;
}
}
fclose(fp);
}
//now recurse the other directories here.
//iterate over directory here
char path[2048];
sprintf(path,"%s/%s",root_path,cur_dir);
DIR *dp;
if ((dp = opendir(path)) == NULL) {
return;
}
//finally iterate over valid child directory entries
struct dirent *dirp = NULL;
while ((dirp = readdir(dp)) != NULL) {
if (strcmp(dirp->d_name, ".") != 0 &&
strcmp(dirp->d_name, "..") != 0 &&
strcmp(dirp->d_name, "node.def") != 0) {
char local_dir[2048];
strcpy(local_dir,cur_dir);
strcat(local_dir,"/");
strcat(local_dir,dirp->d_name);
recurse(local_dir,out);
}
}
closedir(dp);
}
|