1999-03-19 18:51:19 +01:00
/*
2019-02-15 21:24:31 +01:00
* boxes - Command line filter to draw / remove ASCII boxes around text
2021-02-11 22:11:16 +01:00
* Copyright ( c ) 1999 - 2021 Thomas Jensen and the boxes contributors
1999-07-20 20:48:46 +02:00
*
2019-02-15 21:24:31 +01:00
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License , version 2 , as published
* by the Free Software Foundation .
2021-01-22 18:47:16 +01:00
*
2019-02-15 21:24:31 +01:00
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE . See the GNU General Public License
* for more details .
2021-01-22 18:47:16 +01:00
*
2019-02-15 21:24:31 +01:00
* You should have received a copy of the GNU General Public License along
* with this program ; if not , write to the Free Software Foundation , Inc . ,
* 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA .
1999-03-19 18:51:19 +01:00
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
1999-03-18 16:08:57 +01:00
2019-02-20 11:04:09 +01:00
/*
* Project - wide globals and data structures
*/
2019-02-15 21:24:31 +01:00
1999-03-18 16:08:57 +01:00
# ifndef BOXES_H
# define BOXES_H
2021-02-05 11:01:38 +01:00
/* #define DEBUG 1 */
2021-02-06 18:17:00 +01:00
/* #define REGEXP_DEBUG 1 */
2021-02-05 11:01:38 +01:00
/* #define PARSER_DEBUG 1 */
/* #define LEXER_DEBUG 1 */
1999-06-22 14:01:24 +02:00
2021-03-06 13:40:26 +01:00
# include <stdio.h>
2021-01-27 19:11:03 +01:00
# include <unitypes.h>
2021-02-05 11:01:38 +01:00
# include "regulex.h"
# include "shape.h"
1999-06-23 21:21:15 +02:00
1999-04-04 18:10:51 +02:00
1999-03-18 16:08:57 +01:00
# define PROJECT "boxes" /* name of program */
1999-08-22 01:37:23 +02:00
# define VERSION "--BVERSION--" /* current release of project */
# define GLOBALCONF "--GLOBALCONF--" /* name of system-wide config file */
1999-03-18 16:08:57 +01:00
1999-03-30 11:36:58 +02:00
1999-04-04 18:10:51 +02:00
/*
* default settings of all kinds ( THIS PARAGRAPH MAY BE EDITED )
*/
2006-07-22 21:15:52 +02:00
# define DEF_TABSTOP 8 /* default tab stop distance (part of -t) */
1999-04-04 18:10:51 +02:00
# define DEF_INDENTMODE 'b' /* indent box, not text by default */
1999-03-30 11:36:58 +02:00
/*
1999-06-30 14:19:12 +02:00
* max . allowed tab stop distance
1999-06-22 14:01:24 +02:00
*/
# define MAX_TABSTOP 16
1999-06-30 14:19:12 +02:00
/*
2021-01-22 18:47:16 +01:00
* max . supported line length in bytes
1999-06-22 14:01:24 +02:00
* This is how many characters of a line will be read . Anything beyond
* will be discarded . The line feed character at the end does not count .
* ( This should have been done via sysconf ( ) , but I didn ' t do it in order
* to ease porting to non - unix platforms . )
1999-03-30 11:36:58 +02:00
*/
2021-01-22 18:49:54 +01:00
# if defined(LINE_MAX_BYTES) && (LINE_MAX_BYTES < 2048)
2021-01-22 18:47:16 +01:00
# undef LINE_MAX_BYTES
1999-06-22 14:01:24 +02:00
# endif
2021-01-22 18:47:16 +01:00
# ifndef LINE_MAX_BYTES
2021-03-04 21:42:00 +01:00
# define LINE_MAX_BYTES 16382
1999-06-22 14:01:24 +02:00
# endif
1999-03-30 11:36:58 +02:00
1999-03-19 18:51:19 +01:00
1999-06-23 14:33:49 +02:00
# ifdef DEBUG
# define __TJ(s) fprintf (stderr, s);
# else
# define __TJ(s) /**/
# endif
1999-03-19 18:51:19 +01:00
1999-06-30 14:19:12 +02:00
# define BTOP 0 /* for use with sides */
1999-03-30 11:36:58 +02:00
# define BRIG 1
# define BBOT 2
# define BLEF 3
1999-03-18 16:08:57 +01:00
1999-04-04 18:10:51 +02:00
typedef struct {
2021-02-05 11:01:38 +01:00
char * search ;
char * repstr ;
pcre2_code * prog ; /* compiled search pattern */
int line ; /* line of definition in config file */
char mode ; /* 'g' or 'o' */
1999-04-04 18:10:51 +02:00
} reprule_t ;
1999-03-18 16:08:57 +01:00
typedef struct {
1999-04-04 18:10:51 +02:00
char * name ;
2021-03-20 21:27:48 +01:00
char * * aliases ; /* zero-terminated array of alias names of the design */
2016-01-05 22:39:11 +01:00
char * author ; /* creator of the configuration file entry */
char * designer ; /* creator of the original ASCII artwork */
1999-06-14 14:11:54 +02:00
char * created ; /* date created, free format */
char * revision ; /* revision number of design */
char * revdate ; /* date of current revision */
1999-04-04 18:10:51 +02:00
char * sample ;
1999-06-14 14:11:54 +02:00
char indentmode ; /* 'b', 't', or 'n' */
sentry_t shape [ ANZ_SHAPES ] ;
1999-08-14 21:31:23 +02:00
size_t maxshapeheight ; /* height of highest shape in design */
1999-04-04 18:10:51 +02:00
size_t minwidth ;
size_t minheight ;
1999-06-20 16:19:31 +02:00
int padding [ ANZ_SIDES ] ;
2019-05-25 14:50:53 +02:00
char * tags ;
2021-03-13 15:16:17 +01:00
char * defined_in ; /* path to config file where this was defined */
1999-06-14 14:11:54 +02:00
reprule_t * current_rule ;
reprule_t * reprules ; /* applied when drawing a box */
1999-04-04 18:10:51 +02:00
size_t anz_reprules ;
1999-06-14 14:11:54 +02:00
reprule_t * revrules ; /* applied upon removal of a box */
size_t anz_revrules ;
1999-03-18 16:08:57 +01:00
} design_t ;
extern design_t * designs ;
1999-06-23 21:21:15 +02:00
extern int anz_designs ;
1999-06-22 14:01:24 +02:00
1999-06-23 14:33:49 +02:00
1999-06-22 14:01:24 +02:00
typedef struct { /* Command line options: */
2021-03-02 22:03:12 +01:00
int l ; /** list available designs */
char * f ; /** the string specified as argument to -f ; config file path */
int mend ; /** 1 if -m is given, 2 in 2nd loop */
int q ; /** special handling of web UI needs */
int r ; /** remove box from input */
int tabstop ; /** tab stop distance */
char tabexp ; /** tab expansion mode (for leading tabs) */
int padding [ ANZ_SIDES ] ; /** in spaces or lines resp. */
design_t * design ; /** currently used box design */
int design_choice_by_user ; /** true if design was chosen by user */
char * cld ; /** commandline design definition, -c */
long reqwidth ; /** requested box width (-s) */
long reqheight ; /** requested box height (-s) */
char valign ; /** text position inside box */
char halign ; /** ( h[lcr]v[tcb] ) */
char indentmode ; /** 'b', 't', 'n', or '\0' */
char justify ; /** 'l', 'c', 'r', or '\0' */
int killblank ; /** -1 if not set */
char * encoding ; /** character encoding override for input and output text */
FILE * infile ; /** where we get our input */
FILE * outfile ; /** where we put our output */
1999-06-22 14:01:24 +02:00
} opt_t ;
extern opt_t opt ;
1999-03-18 16:08:57 +01:00
1999-06-23 21:21:15 +02:00
typedef struct {
2021-01-30 21:03:57 +01:00
size_t len ; /* length of visible text in columns (visible character positions in a text terminal), which is the same as the length of the 'text' field */
2021-02-05 11:01:38 +01:00
char * text ; /* ASCII line content, tabs expanded, ansi escapes removed, multi-byte chars replaced with one or more 'x' */
2021-01-30 21:03:57 +01:00
size_t invis ; /* number of invisble columns/characters (part of an ansi sequence) */
2021-01-28 21:37:23 +01:00
uint32_t * mbtext ; /* multi-byte (original) line content, tabs expanded. We use UTF-32 in order to enable pointer arithmetic. */
2021-01-30 21:03:57 +01:00
size_t num_chars ; /* total number of characters in mbtext, visible + invisible */
2021-02-05 11:01:38 +01:00
uint32_t * mbtext_org ; /* mbtext as originally allocated, so that we can free it again */
2021-01-30 21:03:57 +01:00
2021-01-28 21:37:23 +01:00
size_t * tabpos ; /* tab positions in expanded work strings, or NULL if not needed */
size_t tabpos_len ; /* number of tabs in a line */
size_t num_leading_blanks ; /* number of spaces at the start of the line after justification */
2021-02-06 18:17:00 +01:00
size_t * posmap ; /* for each character in `text`, position of corresponding char in `mbtext`. Needed for box removal. */
1999-06-23 21:21:15 +02:00
} line_t ;
2021-01-28 21:37:23 +01:00
1999-06-23 21:21:15 +02:00
# ifndef FILE_LEXER_L
typedef struct {
line_t * lines ;
2021-01-27 19:11:03 +01:00
size_t anz_lines ; /* number of entries in input */
size_t maxline ; /* length of longest input line */
size_t indent ; /* number of leading spaces found */
int final_newline ; /* true if the last line of input ends with newline */
1999-06-23 21:21:15 +02:00
} input_t ;
2021-01-22 18:47:16 +01:00
# define INPUT_INITIALIZER {NULL, 0, 0, LINE_MAX_BYTES, 0}
1999-06-23 21:21:15 +02:00
extern input_t input ;
# endif /*!FILE_LEXER_L*/
1999-03-18 16:08:57 +01:00
1999-06-23 21:21:15 +02:00
# endif /* BOXES_H */
2021-03-06 13:40:26 +01:00
/*EOF*/ /* vim: set cindent sw=4: */