]> arthur.barton.de Git - netdata.git/blob - src/procfile.h
Merge remote-tracking branch 'upstream/master' into health
[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 #define PROCFILE_FLAG_DEFAULT             0x00000000
59 #define PROCFILE_FLAG_NO_ERROR_ON_FILE_IO 0x00000001
60
61 typedef struct {
62     char filename[FILENAME_MAX + 1];
63     uint32_t flags;
64     int fd;         // the file desriptor
65     size_t len;     // the bytes we have placed into data
66     size_t size;        // the bytes we have allocated for data
67     pflines *lines;
68     pfwords *words;
69     char separators[256];
70     char data[];        // allocated buffer to keep file contents
71 } procfile;
72
73 // close the proc file and free all related memory
74 extern void procfile_close(procfile *ff);
75
76 // (re)read and parse the proc file
77 extern procfile *procfile_readall(procfile *ff);
78
79 // open a /proc or /sys file
80 extern procfile *procfile_open(const char *filename, const char *separators, uint32_t flags);
81
82 // re-open a file
83 // if separators == NULL, the last separators are used
84 extern procfile *procfile_reopen(procfile *ff, const char *filename, const char *separators, uint32_t flags);
85
86 // example walk-through a procfile parsed file
87 extern void procfile_print(procfile *ff);
88
89 extern void procfile_set_quotes(procfile *ff, const char *quotes);
90 extern void procfile_set_open_close(procfile *ff, const char *open, const char *close);
91
92 // ----------------------------------------------------------------------------
93
94 // set this to 1, to have procfile adapt its initial buffer allocation to the max allocation used so far
95 extern int procfile_adaptive_initial_allocation;
96
97 // return the number of lines present
98 #define procfile_lines(ff) (ff->lines->len)
99
100 // return the number of words of the Nth line
101 #define procfile_linewords(ff, line) (((line) < procfile_lines(ff)) ? (ff)->lines->lines[(line)].words : 0)
102
103 // return the Nth word of the file, or empty string
104 #define procfile_word(ff, word) (((word) < (ff)->words->len) ? (ff)->words->words[(word)] : "")
105
106 // return the first word of the Nth line, or empty string
107 #define procfile_line(ff, line) (((line) < procfile_lines(ff)) ? procfile_word((ff), (ff)->lines->lines[(line)].first) : "")
108
109 // return the Nth word of the current line
110 #define procfile_lineword(ff, line, word) (((line) < procfile_lines(ff) && (word) < procfile_linewords(ff, (line))) ? procfile_word((ff), (ff)->lines->lines[(line)].first + word) : "")
111
112 #endif /* NETDATA_PROCFILE_H */