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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
'\"
.\"
.\" libdi.3
.\"
.\" Copyright 2025 Brad Lanam Pleasant Hill CA USA
.\"
.\" brad.lanam.di_at_gmail.com
.\"
.TH libdi 3 "28 Jan 2025"
.SH Name
\fBlibdi\fP - disk information library
.SH Synopsis
.SS Initialization
#include <di.h>
.PP
void * \fBdi_initialize\fP (void);
.br
int \fBdi_process_options\fP (void *\fIdi_data\fP, int \fItargc\fP, const char *\fItargv\fP [], int \fIoffset\fP);
.br
void \fBdi_cleanup\fP (void *\fIdi_data\fP);
.br
const char *\fBdi_version\fP (void);
.SS Options
.PP
int \fBdi_check_option\fP (void *\fIdi_data\fP, int \fIoption\fP);
.br
void \fBdi_format_iter_init\fP (void *\fIdi_data\fP);
.br
int \fBdi_format_iterate\fP (void *\fIdi_data\fP);
.br
.SS Getting data
.PP
int \fBdi_get_all_disk_info\fP (void *\fIdi_data\fP);
.br
int \fBdi_iterate_init\fP (void *\fIdi_data\fP, int \fIiteroption\fP);
.br
.EX
typedef struct {
const char *strdata [DI_DISP_MAX]; /* string data */
int index; /* internal index value */
int doPrint; /* printable flag based on options */
int printFlag; /* print result flag */
int isLocal; /* filesystem is local */
int isReadOnly; /* filesystem is read-only */
int isLoopback; /* filesystem is a loopback filesystem */
} di_pub_disk_info_t;
.EE
.PP
const di_pub_disk_info_t * \fBdi_iterate\fP (void *\fIdi_data\fP);
.br
int \fBdi_get_scale_max\fP (void *\fIdi_data\fP, int \fIindex\fP,
.br
int \fIvalueidxA\fP, int \fIvalueidxB\fP, int \fIvalueidxC\fP);
.br
double \fBdi_get_scaled\fP (void *\fIdi_data\fP, int \fIindex\fP,
.br
int \fIscaleidx\fP, int \fIvalueidxA\fP, int \fIvalueidxB\fP, int \fIvalueidxC\fP);
.br
void \fBdi_disp_scaled\fP (void *\fIdi_data\fP, char *\fIbuff\fP, long \fIbuffsz\fP,
.br
int \fIindex\fP, int \fIscaleidx\fP,
.br
int \fIvalueidxA\fP, int \fIvalueidxB\fP, int \fIvalueidxC\fP);
.br
double \fBdi_get_perc\fP (void *\fIdi_data\fP, int \fIindex\fP,
.br
int \fIvalueidxA\fP, int \fIvalueidxB\fP,
.br
int \fIvalueidxC\fP, int \fIvalueidxB\fP, int \fIvalueidxE\fP);
.br
void \fBdi_disp_perc\fP (void *\fIdi_data\fP, char *\fIbuff\fP, long \fIbuffsz\fP,
.br
int \fIindex\fP,
.br
int \fIvalueidxA\fP, int \fIvalueidxB\fP,
.br
int \fIvalueidxC\fP, int \fIvalueidxB\fP, int \fIvalueidxE\fP);
.SH Overview
.SS Initialization
\fBdi_initialize\fP returns a pointer to a
\fIdi_data\fP structure, used in all of the other library calls.
The returned pointer must be freed with \fBdi_cleanup\fP.
.PP
\fBdi_process_options\fP processes the arguments to \fIdi\fP.
These are passed as strings via an \fIargv\fP structure as if on the
command line. If no call to \fBdi_process_options\fP is made, \fIdi\fP
will use the defaults and the \fIDI_ARGS\fP environment variable
will not be processed.
.PP
If the return value from \fIdi_process_options\fP is not DI_EXIT_NORM,
\fIdi_cleanup\fP should be called and processing stopped.
.PP
\fBdi_cleanup\fP frees all allocated data.
.SS Options
\fBdi_check_option\fP returns the value of the specified option. All
options will return a boolean value, excepting:
DI_OPT_DEBUG, DI_OPT_FMT_STR_LEN, DI_OPT_SCALE and DI_OPT_BLOCK_SZ.
.PP
\fIoption\fP may be one of:
.IP
DI_OPT_POSIX_COMPAT
.br
DI_OPT_QUOTA_CHECK
.br
DI_OPT_DISP_CSV
.br
DI_OPT_DISP_CSV_TAB
.br
DI_OPT_EXCL_LOOPBACK
.br
DI_OPT_DISP_JSON
.br
DI_OPT_DISP_TOTALS
.br
DI_OPT_DISP_HEADER
.br
DI_OPT_DISP_ALL
.br
DI_OPT_LOCAL_ONLY
.br
DI_OPT_NO_SYMLINK
.br
DI_OPT_DEBUG
.br
DI_OPT_FMT_STR_LEN
.br
DI_OPT_SCALE
.br
DI_OPT_BLOCK_SZ
.PP
\fBdi_format_iter_init\fP initializes the format string iterator.
.PP
\fBdi_format_iterate\fP iterates through each format character in the format
string. Note that \fIdi\fP allows unrecognized format characters. In the
main \fIdi\fP program, these are printed as-is.
.SS Getting Data
\fBdi_get_all_disk_info\fP retrieves and processes all of the disk
information from the operating system.
.PP
If the return value from \fIdi_get_all_disk_info\fP is not DI_EXIT_NORM,
\fIdi_cleanup\fP should be called and processing stopped.
.PP
\fBdi_iterate_init\fP initializes the disk information iterator.
\fIiteroption\fP is one of DI_ITER_PRINTABLE or DI_ITER_ALL.
If DI_ITER_PRINTABLE is specified, only the partitions with the \fIdoPrint\fP
flag set will be returned by the iterator.
.PP
\fBdi_iterate\fP iterates through the filesystems, returning a
\fIdi_pub_disk_info_t\fP structure for each filesystem. If the
\fI\-\-totals\fP flag was specified as an option, the totals will be
the last item returned by the iterator.
.PP
\fBdi_get_scale_max\fP gets the maximum scaling unit for the space value.
.PP
\fIindex\fP is the index from the \fIdi_pub_disk_info_t\fP structure.
.PP
The \fIvalueidx\fP arguments indicate which disk space values to use to
calculate the the space value. The formula is: \fBA\~-\~(B\~-\~C)\fP.
Valid combinations are:
.IP
DI_SPACE_TOTAL, DI_VALUE_NONE, DI_VALUE_NONE // total
.br
DI_SPACE_TOTAL, DI_SPACE_FREE, DI_SPACE_AVAIL // used
.br
DI_SPACE_TOTAL, DI_SPACE_FREE, DI_VALUE_NONE // used
.br
DI_SPACE_TOTAL, DI_SPACE_AVAIL, DI_VALUE_NONE // used
.br
DI_SPACE_FREE, DI_VALUE_NONE, DI_VALUE_NONE // free
.br
DI_SPACE_AVAIL, DI_VALUE_NONE, DI_VALUE_NONE // free
.br
DI_INODE_TOTAL, DI_VALUE_NONE, DI_VALUE_NONE // inode total
.br
DI_INODE_TOTAL, DI_INODE_FREE, DI_VALUE_NONE // inodes used
.br
DI_INODE_FREE, DI_VALUE_NONE, DI_VALUE_NONE // inodes free
.PP
\fBdi_get_scaled\fP gets a space value scaled according to the scaling unit.
.PP
\fIindex\fP is the index from the \fIdi_pub_disk_info_t\fP structure.
.PP
\fIscaleidx\fP is the scaling index to use. Use a scaling index returned
from \fBdi_get_scale_max\fP or use one of the following values:
.IP
DI_SCALE_BYTE
.br
DI_SCALE_KILO
.br
DI_SCALE_MEGA
.br
DI_SCALE_GIGA
.br
DI_SCALE_TERA
.br
DI_SCALE_PETA
.br
DI_SCALE_EXA
.br
DI_SCALE_ZETTA
.br
DI_SCALE_YOTTA
.br
DI_SCALE_RONNA
.br
DI_SCALE_QUETTA
.PP
The \fIvalueidx\fP arguments indicate which disk space values to use to
calculate the the space value. The formula is: \fBA\~-\~(B\~-\~C)\fP.
See \fBdi_get_scale_max\fP for a list of valid combinations.
.PP
\fBdi_disp_scaled\fP gets a space value scaled according to the scaling unit,
and creates a string that can be printed.
.PP
\fBbuff\fP is the character string where the string will be stored.
.PP
\fBbuffsz\fP is the size of the character string.
.PP
\fIindex\fP is the index from the \fIdi_pub_disk_info_t\fP structure.
.PP
\fIscaleidx\fP is the scaling index to use. Use a scaling index returned
from \fBdi_get_scale_max\fP or one of the values as listed in
\fBdi_get_scaled\fP.
.PP
The \fIvalueidx\fP arguments indicate which disk space values to use to
calculate the the space value. The formula is: \fBA\~\-\~(B\~\-\~C)\fP.
See \fBdi_get_scale_max\fP for a list of valid combinations.
.PP
\fBdi_get_perc\fP retrieves the disk space value as a percentage.
.PP
\fIindex\fP is the index from the \fIdi_pub_disk_info_t\fP structure.
.PP
The \fIvalueidx\fP arguments indicate which disk space values to use to
calculate the percentage. The formula is:
\fB(A\~\-\~B)\~/\~(C\~\-\~(D\~\-\~E))\fP.
.PP
Valid combinations are:
.IP
/* percent used */
.br
DI_SPACE_TOTAL, DI_SPACE_AVAIL,
.br
DI_SPACE_TOTAL, DI_VALUE_NONE, DI_VALUE_NONE
.br
/* percent used */
.br
DI_SPACE_TOTAL, DI_SPACE_FREE,
.br
DI_SPACE_TOTAL, DI_VALUE_NONE, DI_VALUE_NONE
.br
/* percent used, BSD style */
.br
DI_SPACE_TOTAL, DI_SPACE_FREE,
.br
DI_SPACE_TOTAL, DI_VALUE_FREE, DI_VALUE_AVAIL
.br
/* percent free */
.br
DI_SPACE_AVAIL, DI_VALUE_NONE,
.br
DI_SPACE_TOTAL, DI_VALUE_NONE, DI_VALUE_NONE,
.br
/* percent free */
.br
DI_SPACE_FREE, DI_VALUE_NONE,
.br
DI_SPACE_TOTAL, DI_VALUE_NONE, DI_VALUE_NONE,
.br
/* inodes used */
.br
DI_INODE_TOTAL, DI_INODE_AVAIL,
.br
DI_INODE_TOTAL, DI_VALUE_NONE, DI_VALUE_NONE
.br
.PP
\fBdi_disp_perc\fP retrieves the disk space value as a percentage and
creates a string that can be printed.
.PP
\fBbuff\fP is the character string where the string will be stored.
.PP
\fBbuffsz\fP is the size of the character string.
.PP
\fIindex\fP is the index from the \fIdi_pub_disk_info_t\fP structure.
.PP
The \fIvalueidx\fP arguments indicate which disk space values to use to
calculate the percentage. The formula is:
\fB(A\~\-\~B)\~/\~(C\~\-\~(D\~\-\~E))\fP. See \fBdi_get_perc\fP for valid
combinations.
.SH Example
.EX
/* this code is in the public domain */
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>
#include <di.h>
enum {
HAVE_SPACE = 0,
NO_SPACE = 1,
};
int
check_space (const char *fn, double space_wanted) {
void *di_data;
int targc;
const char *targv [10];
int exitflag;
const di_pub_disk_info_t *pub;
int rval = NO_SPACE;
int count;
targc = 1;
targv [0] = fn;
targv [1] = NULL;
di_data = di_initialize ();
exitflag = di_process_options (di_data, targc, targv, 0);
if (exitflag != DI_EXIT_NORM) {
di_cleanup (di_data);
exit (exitflag);
}
exitflag = di_get_all_disk_info (di_data);
if (exitflag != DI_EXIT_NORM) {
di_cleanup (di_data);
exit (exitflag);
}
count = di_iterate_init (di_data, DI_ITER_PRINTABLE);
while ((pub = di_iterate (di_data)) != NULL) {
double dval;
/* compare terabytes available */
dval = di_get_scaled (di_data, pub->index, DI_SCALE_TERA,
DI_SPACE_AVAIL, DI_VALUE_NONE, DI_VALUE_NONE);
if (dval >= space_wanted) {
rval = HAVE_SPACE;
}
}
di_cleanup (di_data);
return rval;
}
int
main (int argc, char *argv []) {
const char *fn = "/home/bll/s/di";
double spwant = 0.2; /* terabytes */
bool rval;
if (argc > 1) {
fn = argv [1];
}
if (argc > 2) {
spwant = atof (argv [2]);
}
rval = check_space (fn, spwant);
if (rval == NO_SPACE) {
fprintf (stdout, "Not enough disk space\\n");
}
if (rval == HAVE_SPACE) {
fprintf (stdout, "Enough disk space\\n");
}
return rval;
}
.EE
.SS Compile and Link
.EX
dilibd=$HOME/local/lib
diinc=$(pkg-config --with-path ${dilibd}/pkgconfig --cflags di)
dilibs=$(pkg-config --with-path ${dilibd}/pkgconfig --libs di)
cc -o tt ${diinc} tt.c -Wl,-R${dilibd} ${dilibs})
.EE
.SS Example Run
.PP
.EX
bll-g7:bll$ ./tt /home/bll 0.5
Not enough disk space
bll-g7:bll$ ./tt /home/bll 0.1
Enough disk space
.EE
.SH See Also
df(1), di(1)
.SH Bugs
Open a ticket at https://sourceforge.net/p/diskinfo-di/tickets/
.br
Send bug reports to: brad.lanam.di @ gmail.com
.PP
.SH Links
Home Page: https://diskinfo-di.sourceforge.io/
.br
Wiki: https://sourceforge.net/p/diskinfo-di/wiki/Home/
.br
Change Log: https://sourceforge.net/p/diskinfo-di/wiki/ChangeLog/
.SH Author
Copyright 1994-2025 by Brad Lanam Pleasant Hill, CA
|