summaryrefslogtreecommitdiff
path: root/lib/libutil++/libutil++.hh
AgeCommit message (Collapse)Author
2025-08-07libutil++: Appease GCC -Wshadow warnings in constructorsJohn Baldwin
Fixes: 937e92b5f7cc ("libutil++: Add freebsd::fd_up class to manage file descriptors") Fixes: 7be913e00d79 ("libutil++: Add freebsd::pidfile wrapper class around struct pidfh") Sponsored by: Chelsio Communications
2025-08-04libutil++: Add freebsd::pidfile wrapper class around struct pidfhJohn Baldwin
This class wraps the pidfile_* API from libutil. The destructor calls pidfile_remove() when an object is destroyed. This class is similar to std::unique_ptr<> in that it retains exclusive ownership of the pidfh object. In addition to release and reset methods, write, close, and fileno methods are provided as wrappers for pidfile_*. Sponsored by: Chelsio Communications Pull Request: https://github.com/freebsd/freebsd-src/pull/1794
2025-08-04libutil++: Add freebsd::nvlist_up wrapper class for std::unique_ptr<>John Baldwin
This class uses a custom deleter that calls nvlist_destroy(). Sponsored by: Chelsio Communications Pull Request: https://github.com/freebsd/freebsd-src/pull/1794
2025-08-04libutil++: Add freebsd::fd_up class to manage file descriptorsJohn Baldwin
This class aims to provide a std::unique_ptr<>-like interface in that it assumes exclusive ownership of a file descriptor. The descriptor is closed when the object is destroyed. Sponsored by: Chelsio Communications Pull Request: https://github.com/freebsd/freebsd-src/pull/1794
2025-08-04libutil++: Add freebsd::addrinfo_up wrapper class for std::unique_ptr<>John Baldwin
This class uses a custom deleter that calls freeaddrinfo(). Sponsored by: Chelsio Communications Pull Request: https://github.com/freebsd/freebsd-src/pull/1794
2025-08-04libutil++: New library containing C++ utility classes for use in baseJohn Baldwin
- freebsd::FILE_up is a wrapper class for std::unique_ptr<> for FILE objects which uses a custom deleter that calls fclose(). - freebsd::malloc_up<T> is a wrapper class for std::unique_ptr<> which uses a custom deleter that calls free(). It is useful for pointers allocated by malloc() such as strdup(). - The freebsd::stringf() functions return a std::string constructed using a printf format string. The current implementation of freebsd::stringf() uses fwopen() where the write function appends to a std::string. Sponsored by: Chelsio Communications Pull Request: https://github.com/freebsd/freebsd-src/pull/1794