Skip to content

Commit ae273d8

Browse files
committed
casync: add more API functions (copied from systemd)
1 parent 271c607 commit ae273d8

File tree

3 files changed

+120
-0
lines changed

3 files changed

+120
-0
lines changed

src/gcc-macro.h

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#define _printf_(a,b) __attribute__ ((format (printf, a, b)))
77
#define _sentinel_ __attribute__ ((sentinel))
88
#define _unused_ __attribute__ ((unused))
9+
#define _unused_ __attribute__ ((unused))
910
#define _likely_(x) (__builtin_expect(!!(x),1))
1011
#define _unlikely_(x) (__builtin_expect(!!(x),0))
1112
#define _malloc_ __attribute__ ((malloc))

src/util.c

+100
Original file line numberDiff line numberDiff line change
@@ -1464,3 +1464,103 @@ int free_and_strdup(char **p, const char *s) {
14641464

14651465
return 1;
14661466
}
1467+
1468+
DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, funlockfile);
1469+
1470+
int read_line(FILE *f, size_t limit, char **ret) {
1471+
_cleanup_free_ char *buffer = NULL;
1472+
size_t n = 0, allocated = 0, count = 0;
1473+
1474+
assert(f);
1475+
1476+
/* Something like a bounded version of getline().
1477+
*
1478+
* Considers EOF, \n and \0 end of line delimiters, and does not include these delimiters in the string
1479+
* returned.
1480+
*
1481+
* Returns the number of bytes read from the files (i.e. including delimiters — this hence usually differs from
1482+
* the number of characters in the returned string). When EOF is hit, 0 is returned.
1483+
*
1484+
* The input parameter limit is the maximum numbers of characters in the returned string, i.e. excluding
1485+
* delimiters. If the limit is hit we fail and return -ENOBUFS.
1486+
*
1487+
* If a line shall be skipped ret may be initialized as NULL. */
1488+
1489+
if (ret) {
1490+
if (!GREEDY_REALLOC(buffer, allocated, 1))
1491+
return -ENOMEM;
1492+
}
1493+
1494+
{
1495+
_unused_ _cleanup_(funlockfilep) FILE *flocked = f;
1496+
flockfile(f);
1497+
1498+
for (;;) {
1499+
int c;
1500+
1501+
if (n >= limit)
1502+
return -ENOBUFS;
1503+
1504+
errno = 0;
1505+
c = fgetc_unlocked(f);
1506+
if (c == EOF) {
1507+
/* if we read an error, and have no data to return, then propagate the error */
1508+
if (ferror_unlocked(f) && n == 0)
1509+
return errno > 0 ? -errno : -EIO;
1510+
1511+
break;
1512+
}
1513+
1514+
count++;
1515+
1516+
if (IN_SET(c, '\n', 0)) /* Reached a delimiter */
1517+
break;
1518+
1519+
if (ret) {
1520+
if (!GREEDY_REALLOC(buffer, allocated, n + 2))
1521+
return -ENOMEM;
1522+
1523+
buffer[n] = (char) c;
1524+
}
1525+
1526+
n++;
1527+
}
1528+
}
1529+
1530+
if (ret) {
1531+
buffer[n] = 0;
1532+
1533+
*ret = buffer;
1534+
buffer = NULL;
1535+
}
1536+
1537+
return (int) count;
1538+
}
1539+
1540+
char *delete_trailing_chars(char *s, const char *bad) {
1541+
char *p, *c = s;
1542+
1543+
/* Drops all specified bad characters, at the end of the string */
1544+
1545+
if (!s)
1546+
return NULL;
1547+
1548+
if (!bad)
1549+
bad = WHITESPACE;
1550+
1551+
for (p = s; *p; p++)
1552+
if (!strchr(bad, *p))
1553+
c = p + 1;
1554+
1555+
*c = 0;
1556+
1557+
return s;
1558+
}
1559+
1560+
char *strstrip(char *s) {
1561+
if (!s)
1562+
return NULL;
1563+
1564+
delete_trailing_chars(s, WHITESPACE);
1565+
return s + strspn(s, WHITESPACE);
1566+
}

src/util.h

+19
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,18 @@ static inline void safe_close_nonstdp(int *fd) {
140140
safe_close_above(STDERR_FILENO, *fd);
141141
}
142142

143+
static inline FILE *safe_fclose(FILE *f) {
144+
if (f)
145+
fclose(f);
146+
147+
return NULL;
148+
}
149+
150+
static inline void safe_fclosep(FILE **f) {
151+
if (f && *f)
152+
fclose(*f);
153+
}
154+
143155
typedef uint16_t le16_t;
144156
typedef uint32_t le32_t;
145157
typedef uint64_t le64_t;
@@ -807,4 +819,11 @@ int free_and_strdup(char **p, const char *s);
807819
#define ERRNO_IS_UNSUPPORTED(error) \
808820
IN_SET(error, ENOTTY, ENOSYS, EBADF, EOPNOTSUPP, EINVAL)
809821

822+
#define LARGE_LINE_MAX (64U*1024U)
823+
824+
int read_line(FILE *f, size_t limit, char **ret);
825+
826+
char *delete_trailing_chars(char *s, const char *bad);
827+
char *strstrip(char *s);
828+
810829
#endif

0 commit comments

Comments
 (0)