libsmartcols.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /*
  2. * Prints table or tree.
  3. *
  4. * Copyright (C) 2014 Ondrej Oprala <ooprala@redhat.com>
  5. * Copyright (C) 2014 Karel Zak <kzak@redhat.com>
  6. *
  7. * This file may be redistributed under the terms of the
  8. * GNU Lesser General Public License.
  9. */
  10. #ifndef _LIBSMARTCOLS_H
  11. #define _LIBSMARTCOLS_H
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include <stdlib.h>
  16. #include <stdio.h>
  17. #include <sys/types.h>
  18. /**
  19. * LIBSMARTCOLS_VERSION:
  20. *
  21. * Library version string
  22. */
  23. #define LIBSMARTCOLS_VERSION "2.28.1"
  24. /**
  25. * libscols_iter:
  26. *
  27. * Generic iterator
  28. */
  29. struct libscols_iter;
  30. /**
  31. * libscols_symbols:
  32. *
  33. * Symbol groups for printing tree hierarchies
  34. */
  35. struct libscols_symbols;
  36. /**
  37. * libscols_cell:
  38. *
  39. * A cell - the smallest library object
  40. */
  41. struct libscols_cell;
  42. /**
  43. * libscols_line:
  44. *
  45. * A line - an array of cells
  46. */
  47. struct libscols_line;
  48. /**
  49. * libscols_table:
  50. *
  51. * A table - The most abstract object, encapsulating lines, columns, symbols and cells
  52. */
  53. struct libscols_table;
  54. /**
  55. * libscols_column:
  56. *
  57. * A column - defines the number of columns and column names
  58. */
  59. struct libscols_column;
  60. /* iter.c */
  61. enum {
  62. SCOLS_ITER_FORWARD = 0,
  63. SCOLS_ITER_BACKWARD
  64. };
  65. /*
  66. * Column flags
  67. */
  68. enum {
  69. SCOLS_FL_TRUNC = (1 << 0), /* truncate fields data if necessary */
  70. SCOLS_FL_TREE = (1 << 1), /* use tree "ascii art" */
  71. SCOLS_FL_RIGHT = (1 << 2), /* align to the right */
  72. SCOLS_FL_STRICTWIDTH = (1 << 3), /* don't reduce width if column is empty */
  73. SCOLS_FL_NOEXTREMES = (1 << 4), /* ignore extreme fields when count column width*/
  74. SCOLS_FL_HIDDEN = (1 << 5), /* maintain data, but don't print */
  75. SCOLS_FL_WRAP = (1 << 6), /* wrap long lines to multi-line cells */
  76. };
  77. /*
  78. * Cell flags, see scols_cell_set_flags() before use
  79. */
  80. enum {
  81. SCOLS_CELL_FL_LEFT = 0,
  82. SCOLS_CELL_FL_CENTER,
  83. SCOLS_CELL_FL_RIGHT
  84. };
  85. extern struct libscols_iter *scols_new_iter(int direction);
  86. extern void scols_free_iter(struct libscols_iter *itr);
  87. extern void scols_reset_iter(struct libscols_iter *itr, int direction);
  88. extern int scols_iter_get_direction(struct libscols_iter *itr);
  89. /* init.c */
  90. extern void scols_init_debug(int mask);
  91. /* version.c */
  92. extern int scols_parse_version_string(const char *ver_string);
  93. extern int scols_get_library_version(const char **ver_string);
  94. /* symbols.c */
  95. extern struct libscols_symbols *scols_new_symbols(void);
  96. extern void scols_ref_symbols(struct libscols_symbols *sy);
  97. extern void scols_unref_symbols(struct libscols_symbols *sy);
  98. extern struct libscols_symbols *scols_copy_symbols(const struct libscols_symbols *sb);
  99. extern int scols_symbols_set_branch(struct libscols_symbols *sb, const char *str);
  100. extern int scols_symbols_set_vertical(struct libscols_symbols *sb, const char *str);
  101. extern int scols_symbols_set_right(struct libscols_symbols *sb, const char *str);
  102. extern int scols_symbols_set_title_padding(struct libscols_symbols *sb, const char *str);
  103. /* cell.c */
  104. extern int scols_reset_cell(struct libscols_cell *ce);
  105. extern int scols_cell_copy_content(struct libscols_cell *dest,
  106. const struct libscols_cell *src);
  107. extern int scols_cell_set_data(struct libscols_cell *ce, const char *str);
  108. extern int scols_cell_refer_data(struct libscols_cell *ce, char *str);
  109. extern const char *scols_cell_get_data(const struct libscols_cell *ce);
  110. extern int scols_cell_set_color(struct libscols_cell *ce, const char *color);
  111. extern const char *scols_cell_get_color(const struct libscols_cell *ce);
  112. extern int scols_cell_set_flags(struct libscols_cell *ce, int flags);
  113. extern int scols_cell_get_flags(const struct libscols_cell *ce);
  114. extern void *scols_cell_get_userdata(struct libscols_cell *ce);
  115. extern int scols_cell_set_userdata(struct libscols_cell *ce, void *data);
  116. extern int scols_cmpstr_cells(struct libscols_cell *a,
  117. struct libscols_cell *b, void *data);
  118. /* column.c */
  119. extern int scols_column_is_tree(struct libscols_column *cl);
  120. extern int scols_column_is_trunc(struct libscols_column *cl);
  121. extern int scols_column_is_right(struct libscols_column *cl);
  122. extern int scols_column_is_strict_width(struct libscols_column *cl);
  123. extern int scols_column_is_hidden(struct libscols_column *cl);
  124. extern int scols_column_is_noextremes(struct libscols_column *cl);
  125. extern int scols_column_is_wrap(struct libscols_column *cl);
  126. extern int scols_column_set_flags(struct libscols_column *cl, int flags);
  127. extern int scols_column_get_flags(struct libscols_column *cl);
  128. extern struct libscols_column *scols_new_column(void);
  129. extern void scols_ref_column(struct libscols_column *cl);
  130. extern void scols_unref_column(struct libscols_column *cl);
  131. extern struct libscols_column *scols_copy_column(const struct libscols_column *cl);
  132. extern int scols_column_set_whint(struct libscols_column *cl, double whint);
  133. extern double scols_column_get_whint(struct libscols_column *cl);
  134. extern struct libscols_cell *scols_column_get_header(struct libscols_column *cl);
  135. extern int scols_column_set_color(struct libscols_column *cl, const char *color);
  136. extern const char *scols_column_get_color(struct libscols_column *cl);
  137. extern int scols_column_set_cmpfunc(struct libscols_column *cl,
  138. int (*cmp)(struct libscols_cell *a,
  139. struct libscols_cell *b, void *),
  140. void *data);
  141. /* line.c */
  142. extern struct libscols_line *scols_new_line(void);
  143. extern void scols_ref_line(struct libscols_line *ln);
  144. extern void scols_unref_line(struct libscols_line *ln);
  145. extern int scols_line_alloc_cells(struct libscols_line *ln, size_t n);
  146. extern void scols_line_free_cells(struct libscols_line *ln);
  147. extern int scols_line_set_userdata(struct libscols_line *ln, void *data);
  148. extern void *scols_line_get_userdata(struct libscols_line *ln);
  149. extern int scols_line_remove_child(struct libscols_line *ln, struct libscols_line *child);
  150. extern int scols_line_add_child(struct libscols_line *ln, struct libscols_line *child);
  151. extern int scols_line_has_children(struct libscols_line *ln);
  152. extern int scols_line_next_child(struct libscols_line *ln,
  153. struct libscols_iter *itr, struct libscols_line **chld);
  154. extern struct libscols_line *scols_line_get_parent(struct libscols_line *ln);
  155. extern int scols_line_set_color(struct libscols_line *ln, const char *color);
  156. extern const char *scols_line_get_color(struct libscols_line *ln);
  157. extern size_t scols_line_get_ncells(struct libscols_line *ln);
  158. extern struct libscols_cell *scols_line_get_cell(struct libscols_line *ln, size_t n);
  159. extern struct libscols_cell *scols_line_get_column_cell(
  160. struct libscols_line *ln,
  161. struct libscols_column *cl);
  162. extern int scols_line_set_data(struct libscols_line *ln, size_t n, const char *data);
  163. extern int scols_line_refer_data(struct libscols_line *ln, size_t n, char *data);
  164. extern int scols_line_set_column_data(struct libscols_line *ln, struct libscols_column *cl, const char *data);
  165. extern int scols_line_refer_column_data(struct libscols_line *ln, struct libscols_column *cl, char *data);
  166. extern struct libscols_line *scols_copy_line(struct libscols_line *ln);
  167. /* table */
  168. extern int scols_table_colors_wanted(struct libscols_table *tb);
  169. extern int scols_table_set_name(struct libscols_table *tb, const char *name);
  170. extern struct libscols_cell *scols_table_get_title(struct libscols_table *tb);
  171. extern int scols_table_is_raw(struct libscols_table *tb);
  172. extern int scols_table_is_ascii(struct libscols_table *tb);
  173. extern int scols_table_is_json(struct libscols_table *tb);
  174. extern int scols_table_is_noheadings(struct libscols_table *tb);
  175. extern int scols_table_is_empty(struct libscols_table *tb);
  176. extern int scols_table_is_export(struct libscols_table *tb);
  177. extern int scols_table_is_maxout(struct libscols_table *tb);
  178. extern int scols_table_is_tree(struct libscols_table *tb);
  179. extern int scols_table_enable_colors(struct libscols_table *tb, int enable);
  180. extern int scols_table_enable_raw(struct libscols_table *tb, int enable);
  181. extern int scols_table_enable_ascii(struct libscols_table *tb, int enable);
  182. extern int scols_table_enable_json(struct libscols_table *tb, int enable);
  183. extern int scols_table_enable_noheadings(struct libscols_table *tb, int enable);
  184. extern int scols_table_enable_export(struct libscols_table *tb, int enable);
  185. extern int scols_table_enable_maxout(struct libscols_table *tb, int enable);
  186. extern int scols_table_enable_nowrap(struct libscols_table *tb, int enable);
  187. extern int scols_table_enable_nolinesep(struct libscols_table *tb, int enable);
  188. extern int scols_table_set_column_separator(struct libscols_table *tb, const char *sep);
  189. extern int scols_table_set_line_separator(struct libscols_table *tb, const char *sep);
  190. extern struct libscols_table *scols_new_table(void);
  191. extern void scols_ref_table(struct libscols_table *tb);
  192. extern void scols_unref_table(struct libscols_table *tb);
  193. extern int scols_table_add_column(struct libscols_table *tb, struct libscols_column *cl);
  194. extern int scols_table_remove_column(struct libscols_table *tb, struct libscols_column *cl);
  195. extern int scols_table_remove_columns(struct libscols_table *tb);
  196. extern struct libscols_column *scols_table_new_column(struct libscols_table *tb, const char *name, double whint, int flags);
  197. extern int scols_table_next_column(struct libscols_table *tb, struct libscols_iter *itr, struct libscols_column **cl);
  198. extern char *scols_table_get_column_separator(struct libscols_table *tb);
  199. extern char *scols_table_get_line_separator(struct libscols_table *tb);
  200. extern int scols_table_get_ncols(struct libscols_table *tb);
  201. extern int scols_table_get_nlines(struct libscols_table *tb);
  202. extern struct libscols_column *scols_table_get_column(struct libscols_table *tb, size_t n);
  203. extern int scols_table_add_line(struct libscols_table *tb, struct libscols_line *ln);
  204. extern int scols_table_remove_line(struct libscols_table *tb, struct libscols_line *ln);
  205. extern void scols_table_remove_lines(struct libscols_table *tb);
  206. extern int scols_table_next_line(struct libscols_table *tb, struct libscols_iter *itr, struct libscols_line **ln);
  207. extern struct libscols_line *scols_table_new_line(struct libscols_table *tb, struct libscols_line *parent);
  208. extern struct libscols_line *scols_table_get_line(struct libscols_table *tb, size_t n);
  209. extern struct libscols_table *scols_copy_table(struct libscols_table *tb);
  210. extern int scols_table_set_symbols(struct libscols_table *tb, struct libscols_symbols *sy);
  211. extern int scols_table_set_stream(struct libscols_table *tb, FILE *stream);
  212. extern FILE *scols_table_get_stream(struct libscols_table *tb);
  213. extern int scols_table_reduce_termwidth(struct libscols_table *tb, size_t reduce);
  214. extern int scols_sort_table(struct libscols_table *tb, struct libscols_column *cl);
  215. /* table_print.c */
  216. extern int scols_print_table(struct libscols_table *tb);
  217. extern int scols_print_table_to_string(struct libscols_table *tb, char **data);
  218. extern int scols_table_print_range( struct libscols_table *tb,
  219. struct libscols_line *start,
  220. struct libscols_line *end);
  221. extern int scols_table_print_range_to_string( struct libscols_table *tb,
  222. struct libscols_line *start,
  223. struct libscols_line *end,
  224. char **data);
  225. #ifdef __cplusplus
  226. }
  227. #endif
  228. #endif /* _LIBSMARTCOLS_H */