]> arthur.barton.de Git - netdata.git/blob - src/procfile.h
added libavl for supporting balanced binary trees - this improves search performance...
[netdata.git] / src / procfile.h
1 /*
2  * procfile is a library for reading kernel files from /proc
3  * 
4  * The idea is this:
5  *
6  *  - every file is opened once with procfile_open().
7  *
8  *  - to read updated contents, we rewind it (lseek() to 0) and read again
9  *    with procfile_readall().
10  *
11  *  - for every file, we use a buffer that is adjusted to fit its entire
12  *    contents in memory, allowing us to read it with a single read() call.
13  *    (this provides atomicity / consistency on the data read from the kernel)
14  *
15  *  - once the data are read, we update two arrays of pointers:
16  *     - a words array, pointing to each word in the data read
17  *     - a lines array, pointing to the first word for each line
18  *
19  *    This is highly optimized. Both arrays are automatically adjusted to
20  *    fit all contents and are updated in a single pass on the data:
21  *     - a raspberry Pi can process 5.000+ files / sec.
22  *     - a J1900 celeron processor can process 23.000+ files / sec.
23 */
24
25
26 #ifndef NETDATA_PROCFILE_H
27 #define NETDATA_PROCFILE_H 1
28
29 // ----------------------------------------------------------------------------
30 // An array of words
31
32 typedef struct {
33         uint32_t len;   // used entries
34         uint32_t size;  // capacity
35         char *words[];  // array of pointers
36 } pfwords;
37
38
39 // ----------------------------------------------------------------------------
40 // An array of lines
41
42 typedef struct {
43         uint32_t words;         // how many words this line has
44         uint32_t first;         // the id of the first word of this line
45                                 // in the words array
46 } ffline;
47
48 typedef struct {
49         uint32_t len;           // used entries
50         uint32_t size;          // capacity
51         ffline lines[];         // array of lines
52 } pflines;
53
54
55 // ----------------------------------------------------------------------------
56 // The procfile
57
58 typedef struct {
59         char filename[FILENAME_MAX + 1];
60         int fd;                 // the file desriptor
61         ssize_t len;            // the bytes we have placed into data
62         ssize_t size;           // the bytes we have allocated for data
63         pflines *lines;
64         pfwords *words;
65         char separators[256];
66         char data[];            // allocated buffer to keep file contents
67 } procfile;
68
69 // close the proc file and free all related memory
70 extern void procfile_close(procfile *ff);
71
72 // (re)read and parse the proc file
73 extern procfile *procfile_readall(procfile *ff);
74
75 // open a /proc or /sys file
76 extern procfile *procfile_open(const char *filename, const char *separators);
77
78 // example walk-through a procfile parsed file
79 extern void procfile_print(procfile *ff);
80
81 // ----------------------------------------------------------------------------
82
83 // return the number of lines present
84 #define procfile_lines(ff) (ff->lines->len)
85
86 // return the number of words of the Nth line
87 #define procfile_linewords(ff, line) (((line) < procfile_lines(ff)) ? (ff)->lines->lines[(line)].words : 0)
88
89 // return the Nth word of the file, or empty string
90 #define procfile_word(ff, word) (((word) < (ff)->words->len) ? (ff)->words->words[(word)] : "")
91
92 // return the first word of the Nth line, or empty string
93 #define procfile_line(ff, line) (((line) < procfile_lines(ff)) ? procfile_word((ff), (ff)->lines->lines[(line)].first) : "")
94
95 // return the Nth word of the current line
96 #define procfile_lineword(ff, line, word) (((line) < procfile_lines(ff) && (word) < procfile_linewords(ff, (line))) ? procfile_word((ff), (ff)->lines->lines[(line)].first + word) : "")
97
98 #endif /* NETDATA_PROCFILE_H */