@@ -1464,3 +1464,103 @@ int free_and_strdup(char **p, const char *s) {
1464
1464
1465
1465
return 1 ;
1466
1466
}
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
+ }
0 commit comments