Compare commits
126 Commits
649c351560
...
34460ca715
| Author | SHA1 | Date | |
|---|---|---|---|
|
34460ca715
|
|||
|
9883caf849
|
|||
|
22a121383f
|
|||
|
0e89bb9f46
|
|||
|
63aed8f0fd
|
|||
|
f545be725d
|
|||
|
7e8e085c97
|
|||
|
782a9a5977
|
|||
|
34f86651f6
|
|||
|
5dec46df2c
|
|||
|
1b9d89cab3
|
|||
|
a3ad5e7751
|
|||
|
960420df3e
|
|||
|
d71c47f8ce
|
|||
|
425ea57b17
|
|||
|
8822d06091
|
|||
|
9639777814
|
|||
|
929229a1d7
|
|||
|
53bcebc2f0
|
|||
|
b08cf6c29f
|
|||
|
69101eb155
|
|||
|
9d14562f7e
|
|||
|
9b72304963
|
|||
|
1cd9ba8d97
|
|||
|
7e5b6c5343
|
|||
|
c2c5031538
|
|||
|
df3f53bd5c
|
|||
|
e029aae1d3
|
|||
|
b9457c321f
|
|||
|
2201becca4
|
|||
|
7023c51347
|
|||
|
d21f8466b5
|
|||
|
7f919025ee
|
|||
|
1a76b2032e
|
|||
|
722ef65c1f
|
|||
|
317dfcb6e2
|
|||
|
bca7167d03
|
|||
|
3e4e4e5103
|
|||
|
9494e8e2af
|
|||
|
8ffe20c0e8
|
|||
|
bb30c7d86e
|
|||
|
47ef2ae5bd
|
|||
|
69800a6afb
|
|||
|
fe1035633a
|
|||
|
da75b6f735
|
|||
|
199c56e141
|
|||
|
6e9217e5d0
|
|||
|
3835b6e499
|
|||
|
bf534010cb
|
|||
|
7b0d7a19e5
|
|||
|
1dcd259d05
|
|||
|
03894cae45
|
|||
|
412100289e
|
|||
|
ec128558a4
|
|||
|
7f7606008d
|
|||
|
17322a3686
|
|||
|
22edb6d489
|
|||
|
9866675bb7
|
|||
|
e25a880883
|
|||
|
9afcb337ad
|
|||
|
daa900e12f
|
|||
|
4a5929b4ef
|
|||
|
084e964286
|
|||
|
0e08055d6d
|
|||
|
6642bdf9cd
|
|||
|
349a0fc3b1
|
|||
|
5552ce1dbe
|
|||
|
680980632d
|
|||
|
973a4b7656
|
|||
|
74b00a921a
|
|||
|
f53b717f3b
|
|||
|
dfc7ff57ef
|
|||
|
2a15b1de70
|
|||
|
dc54db9069
|
|||
|
0b77bdeaf9
|
|||
|
a34ce0b6b8
|
|||
|
ad143fd8c0
|
|||
|
296cc704a1
|
|||
|
c1c191717f
|
|||
|
952cf985dc
|
|||
|
6234f686e0
|
|||
|
b07d9df5fc
|
|||
| 3cc975bb2a | |||
| 365aed456e | |||
| 1051ad555a | |||
| 9bff16f5ec | |||
| 052d2ffc9a | |||
| ce8703cea0 | |||
| f213a76ad4 | |||
| 61ca0c988f | |||
| 8a9a28231b | |||
| ff046ea596 | |||
| 38d105dede | |||
| a90aeaf0d9 | |||
| 60dd23ab8f | |||
| 9e3cb2b6aa | |||
| f90cc1e5a2 | |||
| bc7e83137e | |||
| 8c06ec3276 | |||
| 6a19b51516 | |||
| 3f20b39b71 | |||
| 385b3bdb47 | |||
| 020a11a5b5 | |||
| 9957adc458 | |||
| 4dfd88c2c8 | |||
| b5724a654a | |||
| 66340e08d7 | |||
| 733de7bae2 | |||
| 13d04e7a35 | |||
| 455f2cec82 | |||
| ee40af0031 | |||
| 80815519b3 | |||
| f6d74544f8 | |||
| 2d8a8e0b1b | |||
| a4313ee4b9 | |||
| 8b2e41ed8f | |||
| 91fca5cb05 | |||
| 51663d5ee3 | |||
| 5d3e911f01 | |||
| 75d063e363 | |||
| 122ab355a6 | |||
| 0adcaf67c2 | |||
| 835f0a36db | |||
| 6b1273f43c | |||
| bb3d669c3b | |||
| ee2457df7c |
32
.clang-format
Normal file
32
.clang-format
Normal file
@@ -0,0 +1,32 @@
|
||||
# clang-format is fairly limited, and these rules are approximate:
|
||||
# - array initializers can get terribly mangled with clang-format 12.0,
|
||||
# - sometimes it still aligns with space characters,
|
||||
# - struct name NL { NL ... NL } NL name; is unachievable.
|
||||
BasedOnStyle: GNU
|
||||
ColumnLimit: 80
|
||||
IndentWidth: 4
|
||||
TabWidth: 4
|
||||
UseTab: ForContinuationAndIndentation
|
||||
BreakBeforeBraces: Allman
|
||||
SpaceAfterCStyleCast: true
|
||||
AlignAfterOpenBracket: DontAlign
|
||||
AlignOperands: DontAlign
|
||||
AlignConsecutiveMacros: Consecutive
|
||||
AllowAllArgumentsOnNextLine: false
|
||||
AllowAllParametersOfDeclarationOnNextLine: false
|
||||
IndentGotoLabels: false
|
||||
|
||||
# IncludeCategories has some potential, but it may also break the build.
|
||||
# Note that the documentation says the value should be "Never".
|
||||
SortIncludes: false
|
||||
|
||||
# This is a compromise, it generally works out aesthetically better.
|
||||
BinPackArguments: false
|
||||
|
||||
# Unfortunately, this can't be told to align to column 40 or so.
|
||||
SpacesBeforeTrailingComments: 2
|
||||
|
||||
# liberty-specific macro body wrappers.
|
||||
MacroBlockBegin: "BLOCK_START"
|
||||
MacroBlockEnd: "BLOCK_END"
|
||||
ForEachMacros: ["LIST_FOR_EACH"]
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -7,3 +7,5 @@
|
||||
/liberty.files
|
||||
/liberty.creator*
|
||||
/liberty.includes
|
||||
/liberty.cflags
|
||||
/liberty.cxxflags
|
||||
|
||||
18
.travis.yml
18
.travis.yml
@@ -1,18 +0,0 @@
|
||||
language: c
|
||||
notifications:
|
||||
irc:
|
||||
channels: "anathema.us.nu#anathema"
|
||||
use_notice: true
|
||||
skip_join: true
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
before_install:
|
||||
- sudo apt-get update -qq
|
||||
before_script:
|
||||
- mkdir build
|
||||
- cd build
|
||||
script:
|
||||
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
||||
- make
|
||||
- ctest -V
|
||||
@@ -1,34 +1,54 @@
|
||||
project (liberty C)
|
||||
cmake_minimum_required (VERSION 2.8.5)
|
||||
cmake_minimum_required (VERSION 2.8.12)
|
||||
|
||||
# Moar warnings
|
||||
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
||||
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC)
|
||||
# -Wunused-function is pretty annoying here, as everything is static
|
||||
set (CMAKE_C_FLAGS "-std=c99 -Wall -Wextra -Wno-unused-function")
|
||||
endif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
||||
set (wdisabled "-Wno-unused-function")
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra ${wdisabled}")
|
||||
endif ()
|
||||
|
||||
# Dependencies
|
||||
set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
|
||||
include (AddThreads)
|
||||
|
||||
find_package (PkgConfig REQUIRED)
|
||||
pkg_check_modules (libssl REQUIRED libssl libcrypto)
|
||||
|
||||
# -lpthread is only there for debugging (gdb & errno)
|
||||
# -lrt is only for glibc < 2.17
|
||||
set (common_libraries ${libssl_LIBRARIES} rt pthread)
|
||||
if ("${CMAKE_SYSTEM_NAME}" MATCHES "BSD")
|
||||
# Our POSIX version macros make these undefined
|
||||
add_definitions (-D__BSD_VISIBLE=1 -D_BSD_SOURCE=1)
|
||||
endif ()
|
||||
|
||||
set (common_libraries ${libssl_LIBRARIES})
|
||||
include_directories (${libssl_INCLUDE_DIRS})
|
||||
link_directories (${libssl_LIBRARY_DIRS})
|
||||
|
||||
# Generate a configuration file
|
||||
# TODO: actualy use the configuration file for something; so far we allow
|
||||
# for direct inclusion without running this CMakeLists.txt
|
||||
configure_file (${PROJECT_SOURCE_DIR}/liberty-config.h.in
|
||||
${PROJECT_BINARY_DIR}/liberty-config.h)
|
||||
include_directories (${PROJECT_SOURCE_DIR} ${PROJECT_BINARY_DIR})
|
||||
set (common_sources ${PROJECT_BINARY_DIR}/liberty-config.h)
|
||||
# -lrt is only for glibc < 2.17
|
||||
# -liconv may or may not be a part of libc
|
||||
foreach (extra iconv rt)
|
||||
find_library (extra_lib_${extra} ${extra})
|
||||
if (extra_lib_${extra})
|
||||
list (APPEND common_libraries ${extra})
|
||||
endif ()
|
||||
endforeach ()
|
||||
|
||||
# Build some unit tests
|
||||
include_directories (${PROJECT_SOURCE_DIR})
|
||||
enable_testing ()
|
||||
foreach (name liberty proto)
|
||||
set (tests liberty proto)
|
||||
|
||||
pkg_check_modules (libpulse libpulse)
|
||||
if (libpulse_FOUND)
|
||||
list (APPEND tests pulse)
|
||||
list (APPEND common_libraries ${libpulse_LIBRARIES})
|
||||
include_directories (${libpulse_INCLUDE_DIRS})
|
||||
link_directories (${libpulse_LIBRARY_DIRS})
|
||||
endif ()
|
||||
|
||||
foreach (name ${tests})
|
||||
add_executable (test-${name} tests/${name}.c ${common_sources})
|
||||
add_threads (test-${name})
|
||||
target_link_libraries (test-${name} ${common_libraries})
|
||||
add_test (test-${name} test-${name})
|
||||
endforeach (name)
|
||||
add_test (NAME test-${name} COMMAND test-${name})
|
||||
endforeach ()
|
||||
|
||||
22
LICENSE
22
LICENSE
@@ -1,14 +1,12 @@
|
||||
Copyright (c) 2014 - 2015, Přemysl Janouch <p.janouch@gmail.com>
|
||||
All rights reserved.
|
||||
Copyright (c) 2014 - 2022, Přemysl Eric Janouch <p@janouch.name>
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
liberty
|
||||
=======
|
||||
|
||||
`liberty' is a pseudolibrary of all the common C code I have written for various
|
||||
'liberty' is a pseudolibrary of all the common C code I have written for various
|
||||
projects. I used to copy-paste large swaths of code with minimal changes to it
|
||||
and it slowly became awfully painful to synchronize. The project can be thought
|
||||
of as a successor to my other C library, libxtnd.
|
||||
@@ -15,14 +15,17 @@ The API is intentionally unstable, which allows for easy refactoring.
|
||||
|
||||
All development is done on Linux, but other POSIX-compatible operating systems
|
||||
should be supported as well. They have an extremely low priority, however, and
|
||||
I'm not testing them at all.
|
||||
I'm not testing them at all, with the exception of OpenBSD.
|
||||
|
||||
Contributing and Support
|
||||
------------------------
|
||||
Use https://git.janouch.name/p/liberty to report any bugs, request features,
|
||||
or submit pull requests. `git send-email` is tolerated. If you want to discuss
|
||||
the project, feel free to join me at ircs://irc.janouch.name, channel #dev.
|
||||
|
||||
Bitcoin donations are accepted at: 12r5uEWEgcHC46xd64tt3hHt9EUvYYDHe9
|
||||
|
||||
License
|
||||
-------
|
||||
`liberty' is written by Přemysl Janouch <p.janouch@gmail.com>.
|
||||
|
||||
You may use the software under the terms of the ISC license, the text of which
|
||||
is included within the package, or, at your option, you may relicense the work
|
||||
under the MIT or the Modified BSD License, as listed at the following site:
|
||||
|
||||
http://www.gnu.org/licenses/license-list.html
|
||||
This software is released under the terms of the 0BSD license, the text of which
|
||||
is included within the package along with the list of authors.
|
||||
23
cmake/AddThreads.cmake
Normal file
23
cmake/AddThreads.cmake
Normal file
@@ -0,0 +1,23 @@
|
||||
# Public Domain
|
||||
|
||||
# We're looking for pthreads only, while preferring the -pthread flag
|
||||
set (CMAKE_THREAD_PREFER_PTHREAD ON)
|
||||
set (THREADS_PREFER_PTHREAD_FLAG ON)
|
||||
find_package (Threads)
|
||||
|
||||
# Prepares the given target for threads
|
||||
function (add_threads target)
|
||||
if (NOT Threads_FOUND OR NOT CMAKE_USE_PTHREADS_INIT)
|
||||
message (FATAL_ERROR "pthreads not found")
|
||||
endif (NOT Threads_FOUND OR NOT CMAKE_USE_PTHREADS_INIT)
|
||||
|
||||
if (THREADS_HAVE_PTHREAD_ARG)
|
||||
set_property (TARGET ${target} PROPERTY
|
||||
COMPILE_OPTIONS "-pthread")
|
||||
set_property (TARGET ${target} PROPERTY
|
||||
INTERFACE_COMPILE_OPTIONS "-pthread")
|
||||
endif (THREADS_HAVE_PTHREAD_ARG)
|
||||
if (CMAKE_THREAD_LIBS_INIT)
|
||||
target_link_libraries (${target} "${CMAKE_THREAD_LIBS_INIT}")
|
||||
endif (CMAKE_THREAD_LIBS_INIT)
|
||||
endfunction (add_threads)
|
||||
17
cmake/FindNcursesw.cmake
Normal file
17
cmake/FindNcursesw.cmake
Normal file
@@ -0,0 +1,17 @@
|
||||
# Public Domain
|
||||
|
||||
find_package (PkgConfig REQUIRED)
|
||||
pkg_check_modules (Ncursesw QUIET ncursesw)
|
||||
|
||||
# OpenBSD doesn't provide a pkg-config file
|
||||
set (required_vars Ncursesw_LIBRARIES)
|
||||
if (NOT Ncursesw_FOUND)
|
||||
find_library (Ncursesw_LIBRARIES NAMES ncursesw)
|
||||
find_path (Ncursesw_INCLUDE_DIRS ncurses.h)
|
||||
list (APPEND required_vars Ncursesw_INCLUDE_DIRS)
|
||||
endif (NOT Ncursesw_FOUND)
|
||||
|
||||
include (FindPackageHandleStandardArgs)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS (Ncursesw DEFAULT_MSG ${required_vars})
|
||||
|
||||
mark_as_advanced (Ncursesw_LIBRARIES Ncursesw_INCLUDE_DIRS)
|
||||
10
cmake/FindUnistring.cmake
Normal file
10
cmake/FindUnistring.cmake
Normal file
@@ -0,0 +1,10 @@
|
||||
# Public Domain
|
||||
|
||||
find_path (Unistring_INCLUDE_DIRS unistr.h)
|
||||
find_library (Unistring_LIBRARIES NAMES unistring libunistring)
|
||||
|
||||
include (FindPackageHandleStandardArgs)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS (Unistring DEFAULT_MSG
|
||||
Unistring_INCLUDE_DIRS Unistring_LIBRARIES)
|
||||
|
||||
mark_as_advanced (Unistring_LIBRARIES Unistring_INCLUDE_DIRS)
|
||||
18
fuzz
Executable file
18
fuzz
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
# I'm not sure how to make maximum use of this invention
|
||||
# Make sure to have llvm-symbolizer installed
|
||||
clang -g -fsanitize=address,undefined,fuzzer -fno-sanitize-recover=all \
|
||||
tests/fuzz.c -o fuzz-executor
|
||||
|
||||
fuzz () {
|
||||
echo "`tput bold`-- Fuzzing $1`tput sgr0`"
|
||||
mkdir -p /tmp/corpus-$1
|
||||
./fuzz-executor -test=$1 -artifact_prefix=$1- \
|
||||
-max_total_time=600 -timeout=1 /tmp/corpus-$1
|
||||
}
|
||||
|
||||
if [ $# -gt 0 ]; then
|
||||
for test in "$@"; do fuzz $test; done
|
||||
else
|
||||
for test in $(./fuzz-executor); do fuzz $test; done
|
||||
fi
|
||||
836
liberty-proto.c
836
liberty-proto.c
File diff suppressed because it is too large
Load Diff
348
liberty-pulse.c
Normal file
348
liberty-pulse.c
Normal file
@@ -0,0 +1,348 @@
|
||||
/*
|
||||
* liberty-pulse.c: PulseAudio mainloop abstraction
|
||||
*
|
||||
* Copyright (c) 2016 - 2021, Přemysl Eric Janouch <p@janouch.name>
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <pulse/mainloop.h>
|
||||
|
||||
// --- PulseAudio mainloop abstraction -----------------------------------------
|
||||
|
||||
struct pa_io_event
|
||||
{
|
||||
LIST_HEADER (pa_io_event)
|
||||
|
||||
pa_mainloop_api *api; ///< Parent structure
|
||||
struct poller_fd fd; ///< Underlying FD event
|
||||
|
||||
pa_io_event_cb_t dispatch; ///< Dispatcher
|
||||
pa_io_event_destroy_cb_t free; ///< Destroyer
|
||||
void *user_data; ///< User data
|
||||
};
|
||||
|
||||
struct pa_time_event
|
||||
{
|
||||
LIST_HEADER (pa_time_event)
|
||||
|
||||
pa_mainloop_api *api; ///< Parent structure
|
||||
struct poller_timer timer; ///< Underlying timer event
|
||||
|
||||
pa_time_event_cb_t dispatch; ///< Dispatcher
|
||||
pa_time_event_destroy_cb_t free; ///< Destroyer
|
||||
void *user_data; ///< User data
|
||||
};
|
||||
|
||||
struct pa_defer_event
|
||||
{
|
||||
LIST_HEADER (pa_defer_event)
|
||||
|
||||
pa_mainloop_api *api; ///< Parent structure
|
||||
struct poller_idle idle; ///< Underlying idle event
|
||||
|
||||
pa_defer_event_cb_t dispatch; ///< Dispatcher
|
||||
pa_defer_event_destroy_cb_t free; ///< Destroyer
|
||||
void *user_data; ///< User data
|
||||
};
|
||||
|
||||
struct poller_pa
|
||||
{
|
||||
struct poller *poller; ///< The underlying event loop
|
||||
pa_io_event *io_list; ///< I/O events
|
||||
pa_time_event *time_list; ///< Timer events
|
||||
pa_defer_event *defer_list; ///< Deferred events
|
||||
};
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static short
|
||||
poller_pa_flags_to_events (pa_io_event_flags_t flags)
|
||||
{
|
||||
short result = 0;
|
||||
if (flags & PA_IO_EVENT_ERROR) result |= POLLERR;
|
||||
if (flags & PA_IO_EVENT_HANGUP) result |= POLLHUP;
|
||||
if (flags & PA_IO_EVENT_INPUT) result |= POLLIN;
|
||||
if (flags & PA_IO_EVENT_OUTPUT) result |= POLLOUT;
|
||||
return result;
|
||||
}
|
||||
|
||||
static pa_io_event_flags_t
|
||||
poller_pa_events_to_flags (short events)
|
||||
{
|
||||
pa_io_event_flags_t result = 0;
|
||||
if (events & POLLERR) result |= PA_IO_EVENT_ERROR;
|
||||
if (events & POLLHUP) result |= PA_IO_EVENT_HANGUP;
|
||||
if (events & POLLIN) result |= PA_IO_EVENT_INPUT;
|
||||
if (events & POLLOUT) result |= PA_IO_EVENT_OUTPUT;
|
||||
return result;
|
||||
}
|
||||
|
||||
static struct timeval
|
||||
poller_pa_get_current_time (void)
|
||||
{
|
||||
struct timeval tv;
|
||||
#ifdef _POSIX_TIMERS
|
||||
struct timespec tp;
|
||||
hard_assert (clock_gettime (CLOCK_REALTIME, &tp) != -1);
|
||||
tv.tv_sec = tp.tv_sec;
|
||||
tv.tv_usec = tp.tv_nsec / 1000;
|
||||
#else
|
||||
gettimeofday (&tv, NULL);
|
||||
#endif
|
||||
return tv;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static void
|
||||
poller_pa_io_dispatcher (const struct pollfd *pfd, void *user_data)
|
||||
{
|
||||
pa_io_event *self = user_data;
|
||||
self->dispatch (self->api, self,
|
||||
pfd->fd, poller_pa_events_to_flags (pfd->revents), self->user_data);
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_io_enable (pa_io_event *self, pa_io_event_flags_t events)
|
||||
{
|
||||
struct poller_fd *fd = &self->fd;
|
||||
if (events)
|
||||
poller_fd_set (fd, poller_pa_flags_to_events (events));
|
||||
else
|
||||
poller_fd_reset (fd);
|
||||
}
|
||||
|
||||
static pa_io_event *
|
||||
poller_pa_io_new (pa_mainloop_api *api, int fd_, pa_io_event_flags_t events,
|
||||
pa_io_event_cb_t cb, void *userdata)
|
||||
{
|
||||
pa_io_event *self = xcalloc (1, sizeof *self);
|
||||
self->api = api;
|
||||
self->dispatch = cb;
|
||||
self->user_data = userdata;
|
||||
|
||||
struct poller_pa *data = api->userdata;
|
||||
self->fd = poller_fd_make (data->poller, fd_);
|
||||
self->fd.user_data = self;
|
||||
self->fd.dispatcher = poller_pa_io_dispatcher;
|
||||
|
||||
// FIXME: under x2go PA tries to register twice for the same FD,
|
||||
// which fails with our curent poller implementation;
|
||||
// we could maintain a list of { poller_fd, listeners } structures;
|
||||
// or maybe we're doing something wrong, which is yet to be determined
|
||||
poller_pa_io_enable (self, events);
|
||||
LIST_PREPEND (data->io_list, self);
|
||||
return self;
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_io_free (pa_io_event *self)
|
||||
{
|
||||
if (self->free)
|
||||
self->free (self->api, self, self->user_data);
|
||||
|
||||
struct poller_pa *data = self->api->userdata;
|
||||
poller_fd_reset (&self->fd);
|
||||
LIST_UNLINK (data->io_list, self);
|
||||
free (self);
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_io_set_destroy (pa_io_event *self, pa_io_event_destroy_cb_t cb)
|
||||
{
|
||||
self->free = cb;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static void
|
||||
poller_pa_time_dispatcher (void *user_data)
|
||||
{
|
||||
pa_time_event *self = user_data;
|
||||
// XXX: the meaning of the time argument is undocumented,
|
||||
// so let's just put current Unix time in there
|
||||
struct timeval now = poller_pa_get_current_time ();
|
||||
self->dispatch (self->api, self, &now, self->user_data);
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_time_restart (pa_time_event *self, const struct timeval *tv)
|
||||
{
|
||||
struct poller_timer *timer = &self->timer;
|
||||
if (tv)
|
||||
{
|
||||
struct timeval now = poller_pa_get_current_time ();
|
||||
poller_timer_set (timer,
|
||||
(tv->tv_sec - now.tv_sec) * 1000 +
|
||||
(tv->tv_usec - now.tv_usec) / 1000);
|
||||
}
|
||||
else
|
||||
poller_timer_reset (timer);
|
||||
}
|
||||
|
||||
static pa_time_event *
|
||||
poller_pa_time_new (pa_mainloop_api *api, const struct timeval *tv,
|
||||
pa_time_event_cb_t cb, void *userdata)
|
||||
{
|
||||
pa_time_event *self = xcalloc (1, sizeof *self);
|
||||
self->api = api;
|
||||
self->dispatch = cb;
|
||||
self->user_data = userdata;
|
||||
|
||||
struct poller_pa *data = api->userdata;
|
||||
self->timer = poller_timer_make (data->poller);
|
||||
self->timer.user_data = self;
|
||||
self->timer.dispatcher = poller_pa_time_dispatcher;
|
||||
|
||||
poller_pa_time_restart (self, tv);
|
||||
LIST_PREPEND (data->time_list, self);
|
||||
return self;
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_time_free (pa_time_event *self)
|
||||
{
|
||||
if (self->free)
|
||||
self->free (self->api, self, self->user_data);
|
||||
|
||||
struct poller_pa *data = self->api->userdata;
|
||||
poller_timer_reset (&self->timer);
|
||||
LIST_UNLINK (data->time_list, self);
|
||||
free (self);
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_time_set_destroy (pa_time_event *self, pa_time_event_destroy_cb_t cb)
|
||||
{
|
||||
self->free = cb;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static void
|
||||
poller_pa_defer_dispatcher (void *user_data)
|
||||
{
|
||||
pa_defer_event *self = user_data;
|
||||
self->dispatch (self->api, self, self->user_data);
|
||||
}
|
||||
|
||||
static pa_defer_event *
|
||||
poller_pa_defer_new (pa_mainloop_api *api,
|
||||
pa_defer_event_cb_t cb, void *userdata)
|
||||
{
|
||||
pa_defer_event *self = xcalloc (1, sizeof *self);
|
||||
self->api = api;
|
||||
self->dispatch = cb;
|
||||
self->user_data = userdata;
|
||||
|
||||
struct poller_pa *data = api->userdata;
|
||||
self->idle = poller_idle_make (data->poller);
|
||||
self->idle.user_data = self;
|
||||
self->idle.dispatcher = poller_pa_defer_dispatcher;
|
||||
|
||||
poller_idle_set (&self->idle);
|
||||
LIST_PREPEND (data->defer_list, self);
|
||||
return self;
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_defer_enable (pa_defer_event *self, int enable)
|
||||
{
|
||||
struct poller_idle *idle = &self->idle;
|
||||
if (enable)
|
||||
poller_idle_set (idle);
|
||||
else
|
||||
poller_idle_reset (idle);
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_defer_free (pa_defer_event *self)
|
||||
{
|
||||
if (self->free)
|
||||
self->free (self->api, self, self->user_data);
|
||||
|
||||
struct poller_pa *data = self->api->userdata;
|
||||
poller_idle_reset (&self->idle);
|
||||
LIST_UNLINK (data->defer_list, self);
|
||||
free (self);
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_defer_set_destroy (pa_defer_event *self,
|
||||
pa_defer_event_destroy_cb_t cb)
|
||||
{
|
||||
self->free = cb;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static void
|
||||
poller_pa_quit (pa_mainloop_api *api, int retval)
|
||||
{
|
||||
(void) api;
|
||||
(void) retval;
|
||||
|
||||
// This is not called from within libpulse
|
||||
hard_assert (!"quitting the libpulse event loop is unimplemented");
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static struct pa_mainloop_api g_poller_pa_template =
|
||||
{
|
||||
.io_new = poller_pa_io_new,
|
||||
.io_enable = poller_pa_io_enable,
|
||||
.io_free = poller_pa_io_free,
|
||||
.io_set_destroy = poller_pa_io_set_destroy,
|
||||
|
||||
.time_new = poller_pa_time_new,
|
||||
.time_restart = poller_pa_time_restart,
|
||||
.time_free = poller_pa_time_free,
|
||||
.time_set_destroy = poller_pa_time_set_destroy,
|
||||
|
||||
.defer_new = poller_pa_defer_new,
|
||||
.defer_enable = poller_pa_defer_enable,
|
||||
.defer_free = poller_pa_defer_free,
|
||||
.defer_set_destroy = poller_pa_defer_set_destroy,
|
||||
|
||||
.quit = poller_pa_quit,
|
||||
};
|
||||
|
||||
static struct pa_mainloop_api *
|
||||
poller_pa_new (struct poller *self)
|
||||
{
|
||||
struct poller_pa *data = xcalloc (1, sizeof *data);
|
||||
data->poller = self;
|
||||
|
||||
struct pa_mainloop_api *api = xmalloc (sizeof *api);
|
||||
*api = g_poller_pa_template;
|
||||
api->userdata = data;
|
||||
return api;
|
||||
}
|
||||
|
||||
static void
|
||||
poller_pa_destroy (struct pa_mainloop_api *api)
|
||||
{
|
||||
struct poller_pa *data = api->userdata;
|
||||
|
||||
LIST_FOR_EACH (pa_io_event, iter, data->io_list)
|
||||
poller_pa_io_free (iter);
|
||||
LIST_FOR_EACH (pa_time_event, iter, data->time_list)
|
||||
poller_pa_time_free (iter);
|
||||
LIST_FOR_EACH (pa_defer_event, iter, data->defer_list)
|
||||
poller_pa_defer_free (iter);
|
||||
|
||||
free (data);
|
||||
free (api);
|
||||
}
|
||||
270
liberty-tui.c
Normal file
270
liberty-tui.c
Normal file
@@ -0,0 +1,270 @@
|
||||
/*
|
||||
* liberty-tui.c: the ultimate C unlibrary: TUI
|
||||
*
|
||||
* Copyright (c) 2016 - 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*
|
||||
*/
|
||||
|
||||
// This file includes some common stuff to build TUI applications with
|
||||
|
||||
#include <ncurses.h>
|
||||
|
||||
// It is surprisingly hard to find a good library to handle Unicode shenanigans,
|
||||
// and there's enough of those for it to be impractical to reimplement them.
|
||||
//
|
||||
// GLib ICU libunistring utf8proc
|
||||
// Decently sized . . x x
|
||||
// Grapheme breaks . x . x
|
||||
// Character width x . x x
|
||||
// Locale handling . . x .
|
||||
// Liberal license . x . x
|
||||
//
|
||||
// Also note that the ICU API is icky and uses UTF-16 for its primary encoding.
|
||||
//
|
||||
// Currently we're chugging along with libunistring but utf8proc seems viable.
|
||||
// Non-Unicode locales can mostly be handled with simple iconv like in sdtui.
|
||||
// Similarly grapheme breaks can be guessed at using character width (a basic
|
||||
// test here is Zalgo text).
|
||||
//
|
||||
// None of this is ever going to work too reliably anyway because terminals
|
||||
// and Unicode don't go awfully well together. In particular, character cell
|
||||
// devices have some problems with double-wide characters.
|
||||
|
||||
#include <unistr.h>
|
||||
#include <uniwidth.h>
|
||||
#include <uniconv.h>
|
||||
#include <unicase.h>
|
||||
|
||||
// --- Configurable display attributes -----------------------------------------
|
||||
|
||||
struct attrs
|
||||
{
|
||||
short fg; ///< Foreground colour index
|
||||
short bg; ///< Background colour index
|
||||
chtype attrs; ///< Other attributes
|
||||
};
|
||||
|
||||
/// Decode attributes in the value using a subset of the git config format,
|
||||
/// ignoring all errors since it doesn't affect functionality
|
||||
static struct attrs
|
||||
attrs_decode (const char *value)
|
||||
{
|
||||
struct strv v = strv_make ();
|
||||
cstr_split (value, " ", true, &v);
|
||||
|
||||
int colors = 0;
|
||||
struct attrs attrs = { -1, -1, 0 };
|
||||
for (char **it = v.vector; *it; it++)
|
||||
{
|
||||
char *end = NULL;
|
||||
long n = strtol (*it, &end, 10);
|
||||
if (*it != end && !*end && n >= SHRT_MIN && n <= SHRT_MAX)
|
||||
{
|
||||
if (colors == 0) attrs.fg = n;
|
||||
if (colors == 1) attrs.bg = n;
|
||||
colors++;
|
||||
}
|
||||
else if (!strcmp (*it, "bold")) attrs.attrs |= A_BOLD;
|
||||
else if (!strcmp (*it, "dim")) attrs.attrs |= A_DIM;
|
||||
else if (!strcmp (*it, "ul")) attrs.attrs |= A_UNDERLINE;
|
||||
else if (!strcmp (*it, "blink")) attrs.attrs |= A_BLINK;
|
||||
else if (!strcmp (*it, "reverse")) attrs.attrs |= A_REVERSE;
|
||||
#ifdef A_ITALIC
|
||||
else if (!strcmp (*it, "italic")) attrs.attrs |= A_ITALIC;
|
||||
#endif // A_ITALIC
|
||||
}
|
||||
strv_free (&v);
|
||||
return attrs;
|
||||
}
|
||||
|
||||
// --- Terminal output ---------------------------------------------------------
|
||||
|
||||
// Necessary abstraction to simplify aligned, formatted character output
|
||||
|
||||
// This callback you need to implement in the application
|
||||
static bool app_is_character_in_locale (ucs4_t ch);
|
||||
|
||||
struct row_char
|
||||
{
|
||||
ucs4_t c; ///< Unicode codepoint
|
||||
chtype attrs; ///< Special attributes
|
||||
int width; ///< How many cells this takes
|
||||
};
|
||||
|
||||
struct row_buffer
|
||||
{
|
||||
ARRAY (struct row_char, chars) ///< Characters
|
||||
int total_width; ///< Total width of all characters
|
||||
};
|
||||
|
||||
static struct row_buffer
|
||||
row_buffer_make (void)
|
||||
{
|
||||
struct row_buffer self = {};
|
||||
ARRAY_INIT_SIZED (self.chars, 256);
|
||||
return self;
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_free (struct row_buffer *self)
|
||||
{
|
||||
free (self->chars);
|
||||
}
|
||||
|
||||
/// Replace invalid chars and push all codepoints to the array w/ attributes.
|
||||
static void
|
||||
row_buffer_append (struct row_buffer *self, const char *str, chtype attrs)
|
||||
{
|
||||
// The encoding is only really used internally for some corner cases
|
||||
const char *encoding = locale_charset ();
|
||||
|
||||
// Note that this function is a hotspot, try to keep it decently fast
|
||||
struct row_char current = { .attrs = attrs };
|
||||
struct row_char invalid = { .attrs = attrs, .c = '?', .width = 1 };
|
||||
const uint8_t *next = (const uint8_t *) str;
|
||||
while ((next = u8_next (¤t.c, next)))
|
||||
{
|
||||
current.width = uc_width (current.c, encoding);
|
||||
if (current.width < 0 || !app_is_character_in_locale (current.c))
|
||||
current = invalid;
|
||||
|
||||
ARRAY_RESERVE (self->chars, 1);
|
||||
self->chars[self->chars_len++] = current;
|
||||
self->total_width += current.width;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_append_args (struct row_buffer *self, const char *s, ...)
|
||||
ATTRIBUTE_SENTINEL;
|
||||
|
||||
static void
|
||||
row_buffer_append_args (struct row_buffer *self, const char *s, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start (ap, s);
|
||||
|
||||
while (s)
|
||||
{
|
||||
row_buffer_append (self, s, va_arg (ap, chtype));
|
||||
s = va_arg (ap, const char *);
|
||||
}
|
||||
va_end (ap);
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_append_buffer (struct row_buffer *self, const struct row_buffer *rb)
|
||||
{
|
||||
ARRAY_RESERVE (self->chars, rb->chars_len);
|
||||
memcpy (self->chars + self->chars_len, rb->chars,
|
||||
rb->chars_len * sizeof *rb->chars);
|
||||
|
||||
self->chars_len += rb->chars_len;
|
||||
self->total_width += rb->total_width;
|
||||
}
|
||||
|
||||
/// Pop as many codepoints as needed to free up "space" character cells.
|
||||
/// Given the suffix nature of combining marks, this should work pretty fine.
|
||||
static int
|
||||
row_buffer_pop_cells (struct row_buffer *self, int space)
|
||||
{
|
||||
int made = 0;
|
||||
while (self->chars_len && made < space)
|
||||
made += self->chars[--self->chars_len].width;
|
||||
self->total_width -= made;
|
||||
return made;
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_space (struct row_buffer *self, int width, chtype attrs)
|
||||
{
|
||||
if (width < 0)
|
||||
return;
|
||||
|
||||
ARRAY_RESERVE (self->chars, (size_t) width);
|
||||
|
||||
struct row_char space = { .attrs = attrs, .c = ' ', .width = 1 };
|
||||
self->total_width += width;
|
||||
while (width-- > 0)
|
||||
self->chars[self->chars_len++] = space;
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_ellipsis (struct row_buffer *self, int target)
|
||||
{
|
||||
if (self->total_width <= target
|
||||
|| !row_buffer_pop_cells (self, self->total_width - target))
|
||||
return;
|
||||
|
||||
// We use attributes from the last character we've removed,
|
||||
// assuming that we don't shrink the array (and there's no real need)
|
||||
ucs4_t ellipsis = 0x2026; // …
|
||||
if (app_is_character_in_locale (ellipsis))
|
||||
{
|
||||
if (self->total_width >= target)
|
||||
row_buffer_pop_cells (self, 1);
|
||||
if (self->total_width + 1 <= target)
|
||||
row_buffer_append (self, "…", self->chars[self->chars_len].attrs);
|
||||
}
|
||||
else if (target >= 3)
|
||||
{
|
||||
if (self->total_width >= target)
|
||||
row_buffer_pop_cells (self, 3);
|
||||
if (self->total_width + 3 <= target)
|
||||
row_buffer_append (self, "...", self->chars[self->chars_len].attrs);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_align (struct row_buffer *self, int target, chtype attrs)
|
||||
{
|
||||
row_buffer_ellipsis (self, target);
|
||||
row_buffer_space (self, target - self->total_width, attrs);
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_print (uint32_t *ucs4, chtype attrs)
|
||||
{
|
||||
// This assumes that we can reset the attribute set without consequences
|
||||
char *str = u32_strconv_to_locale (ucs4);
|
||||
if (str)
|
||||
{
|
||||
attrset (attrs);
|
||||
addstr (str);
|
||||
attrset (0);
|
||||
free (str);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
row_buffer_flush (struct row_buffer *self)
|
||||
{
|
||||
if (!self->chars_len)
|
||||
return;
|
||||
|
||||
// We only NUL-terminate the chunks because of the libunistring API
|
||||
uint32_t chunk[self->chars_len + 1], *insertion_point = chunk;
|
||||
for (size_t i = 0; i < self->chars_len; i++)
|
||||
{
|
||||
struct row_char *iter = self->chars + i;
|
||||
if (i && iter[0].attrs != iter[-1].attrs)
|
||||
{
|
||||
row_buffer_print (chunk, iter[-1].attrs);
|
||||
insertion_point = chunk;
|
||||
}
|
||||
*insertion_point++ = iter->c;
|
||||
*insertion_point = 0;
|
||||
}
|
||||
row_buffer_print (chunk, self->chars[self->chars_len - 1].attrs);
|
||||
}
|
||||
26
libertyconf.vim
Normal file
26
libertyconf.vim
Normal file
@@ -0,0 +1,26 @@
|
||||
" Since the liberty configuration format is nearly indistinguishable,
|
||||
" this syntax highlight definition needs to be loaded with `set ft=libertyconf`
|
||||
if exists("b:current_syntax")
|
||||
finish
|
||||
endif
|
||||
|
||||
syn match libertyconfError "[^_[:alnum:][:space:]]\+"
|
||||
syn match libertyconfComment "#.*"
|
||||
syn match libertyconfSpecial "{\|}\|="
|
||||
syn match libertyconfNumber "[+-]\=\<\d\+\>"
|
||||
syn match libertyconfBoolean "\c\<\(true\|yes\|on\|false\|no\|off\)\>"
|
||||
syn match libertyconfNull "null"
|
||||
syn match libertyconfEscape display "\\\([xX]\x\{1,2}\|\o\{1,3}\|.\|$\)"
|
||||
\ contained
|
||||
syn region libertyconfString start=+"+ skip=+\\\\\|\\"+ end=+"+
|
||||
\ contains=libertyconfEscape
|
||||
|
||||
let b:current_syntax = "libertyconf"
|
||||
hi def link libertyconfError Error
|
||||
hi def link libertyconfComment Comment
|
||||
hi def link libertyconfSpecial Special
|
||||
hi def link libertyconfNumber Number
|
||||
hi def link libertyconfBoolean Boolean
|
||||
hi def link libertyconfNull Constant
|
||||
hi def link libertyconfEscape SpecialChar
|
||||
hi def link libertyconfString String
|
||||
28
meson/packaging/make-deb.sh
Executable file
28
meson/packaging/make-deb.sh
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/bin/sh -e
|
||||
cd "$MESON_BUILD_ROOT"
|
||||
. "$MESON_SUBDIR/meta"
|
||||
wd="`pwd`/`mktemp -d deb.XXXXXX`"
|
||||
trap "rm -rf '$wd'" INT QUIT TERM EXIT
|
||||
|
||||
[ "$arch" = x86 ] && arch=i386
|
||||
[ "$arch" = x86_64 ] && arch=amd64
|
||||
target="$name-$version-$system-$arch.deb"
|
||||
|
||||
echo 2.0 > "$wd/debian-binary"
|
||||
cat > "$wd/control" <<-EOF
|
||||
Package: $name
|
||||
Version: $version
|
||||
Section: misc
|
||||
Priority: optional
|
||||
Architecture: $arch
|
||||
Maintainer: $author
|
||||
Description: $summary
|
||||
EOF
|
||||
fakeroot sh -e <<-EOF
|
||||
DESTDIR="$wd/pkg" ninja install
|
||||
cd "$wd/pkg" && tar cJf ../data.tar.xz .
|
||||
EOF
|
||||
|
||||
(cd "$wd" && tar czf control.tar.gz ./control)
|
||||
ar rc "$target" "$wd/debian-binary" "$wd/control.tar.gz" "$wd/data.tar.xz"
|
||||
echo Written $target
|
||||
22
meson/packaging/make-pacman.sh
Executable file
22
meson/packaging/make-pacman.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh -e
|
||||
cd "$MESON_BUILD_ROOT"
|
||||
. "$MESON_SUBDIR/meta"
|
||||
wd="`pwd`/`mktemp -d pacman.XXXXXX`"
|
||||
trap "rm -rf '$wd'" INT QUIT TERM EXIT
|
||||
|
||||
target="$name-$version-$arch.tar.xz"
|
||||
fakeroot sh -e <<-EOF
|
||||
DESTDIR="$wd" ninja install
|
||||
cat > "$wd/.PKGINFO" <<END
|
||||
pkgname = $name
|
||||
pkgver = $version-1
|
||||
pkgdesc = $summary
|
||||
url = $url
|
||||
builddate = \`date -u +%s\`
|
||||
packager = $author
|
||||
size = \`du -sb | cut -f1\`
|
||||
arch = $arch
|
||||
END
|
||||
cd "$wd" && tar cJf "../$target" .PKGINFO *
|
||||
echo Written $target
|
||||
EOF
|
||||
11
meson/packaging/meson.build
Normal file
11
meson/packaging/meson.build
Normal file
@@ -0,0 +1,11 @@
|
||||
# You need to prepare a configuration object with the required metadata
|
||||
packaging.set ('arch', target_machine.cpu_family ())
|
||||
packaging.set ('system', target_machine.system ())
|
||||
configure_file (input: 'meta.in', output: 'meta', configuration: packaging)
|
||||
|
||||
# RPM is awful and I've given up on both manual generation (we'd have to either
|
||||
# include rpmrc data or generate fake noarch packages) and rpmbuild (just no)
|
||||
run_target ('deb',
|
||||
command: [join_paths (meson.current_source_dir (), 'make-deb.sh')])
|
||||
run_target ('pacman',
|
||||
command: [join_paths (meson.current_source_dir (), 'make-pacman.sh')])
|
||||
8
meson/packaging/meta.in
Normal file
8
meson/packaging/meta.in
Normal file
@@ -0,0 +1,8 @@
|
||||
define() { [ -z "$2" ] && { echo $1 is undefined; exit 1; } || eval "$1='$2'"; }
|
||||
|
||||
define name "@name@"
|
||||
define version "@version@"
|
||||
define summary "@summary@"
|
||||
define author "@author@"
|
||||
define arch "@arch@"
|
||||
define system "@system@"
|
||||
15
siphash.c
15
siphash.c
@@ -61,13 +61,13 @@ siphash (const unsigned char key[16], const unsigned char *m, size_t len)
|
||||
|
||||
switch (len - blocks)
|
||||
{
|
||||
case 7: last7 |= (uint64_t) m[i + 6] << 48;
|
||||
case 6: last7 |= (uint64_t) m[i + 5] << 40;
|
||||
case 5: last7 |= (uint64_t) m[i + 4] << 32;
|
||||
case 4: last7 |= (uint64_t) m[i + 3] << 24;
|
||||
case 3: last7 |= (uint64_t) m[i + 2] << 16;
|
||||
case 2: last7 |= (uint64_t) m[i + 1] << 8;
|
||||
case 1: last7 |= (uint64_t) m[i + 0] ;
|
||||
case 7: last7 |= (uint64_t) m[i + 6] << 48; // Fall-through
|
||||
case 6: last7 |= (uint64_t) m[i + 5] << 40; // Fall-through
|
||||
case 5: last7 |= (uint64_t) m[i + 4] << 32; // Fall-through
|
||||
case 4: last7 |= (uint64_t) m[i + 3] << 24; // Fall-through
|
||||
case 3: last7 |= (uint64_t) m[i + 2] << 16; // Fall-through
|
||||
case 2: last7 |= (uint64_t) m[i + 1] << 8; // Fall-through
|
||||
case 1: last7 |= (uint64_t) m[i + 0] ; // Fall-through
|
||||
default:;
|
||||
};
|
||||
v3 ^= last7;
|
||||
@@ -82,4 +82,3 @@ siphash (const unsigned char key[16], const unsigned char *m, size_t len)
|
||||
|
||||
return v0 ^ v1 ^ v2 ^ v3;
|
||||
}
|
||||
|
||||
|
||||
297
tests/fuzz.c
Normal file
297
tests/fuzz.c
Normal file
@@ -0,0 +1,297 @@
|
||||
/*
|
||||
* tests/fuzz.c
|
||||
*
|
||||
* Copyright (c) 2020, Přemysl Eric Janouch <p@janouch.name>
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*
|
||||
*/
|
||||
|
||||
#define PROGRAM_NAME "fuzz"
|
||||
#define PROGRAM_VERSION "0"
|
||||
|
||||
#define LIBERTY_WANT_SSL
|
||||
// The MPD client is a full wrapper and needs the network
|
||||
#define LIBERTY_WANT_POLLER
|
||||
#define LIBERTY_WANT_ASYNC
|
||||
|
||||
#define LIBERTY_WANT_PROTO_IRC
|
||||
#define LIBERTY_WANT_PROTO_HTTP
|
||||
#define LIBERTY_WANT_PROTO_SCGI
|
||||
#define LIBERTY_WANT_PROTO_FASTCGI
|
||||
#define LIBERTY_WANT_PROTO_WS
|
||||
#define LIBERTY_WANT_PROTO_MPD
|
||||
|
||||
#include "../liberty.c"
|
||||
#include "../liberty-tui.c"
|
||||
|
||||
static bool
|
||||
app_is_character_in_locale (ucs4_t ch)
|
||||
{
|
||||
return ch < 128;
|
||||
}
|
||||
|
||||
// --- UTF-8 -------------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_utf8_validate (const uint8_t *data, size_t size)
|
||||
{
|
||||
utf8_validate ((const char *) data, size);
|
||||
}
|
||||
|
||||
// --- Base 64 -----------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_base64_decode (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct str wrap = str_make ();
|
||||
str_append_data (&wrap, data, size);
|
||||
|
||||
struct str out = str_make ();
|
||||
base64_decode (wrap.str, true /* ignore_ws */, &out);
|
||||
str_free (&out);
|
||||
|
||||
str_free (&wrap);
|
||||
}
|
||||
|
||||
// --- IRC ---------------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_irc_parse_message (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct str wrap = str_make ();
|
||||
str_append_data (&wrap, data, size);
|
||||
|
||||
struct irc_message msg;
|
||||
irc_parse_message (&msg, wrap.str);
|
||||
irc_free_message (&msg);
|
||||
|
||||
str_free (&wrap);
|
||||
}
|
||||
|
||||
// --- HTTP --------------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_http_parse_media_type (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct str wrap = str_make ();
|
||||
str_append_data (&wrap, data, size);
|
||||
|
||||
char *type = NULL;
|
||||
char *subtype = NULL;
|
||||
struct str_map parameters = str_map_make (free);
|
||||
http_parse_media_type (wrap.str, &type, &subtype, ¶meters);
|
||||
free (type);
|
||||
free (subtype);
|
||||
str_map_free (¶meters);
|
||||
|
||||
str_free (&wrap);
|
||||
}
|
||||
|
||||
static void
|
||||
test_http_parse_upgrade (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct str wrap = str_make ();
|
||||
str_append_data (&wrap, data, size);
|
||||
|
||||
struct http_protocol *protocols = NULL;
|
||||
http_parse_upgrade (wrap.str, &protocols);
|
||||
LIST_FOR_EACH (struct http_protocol, iter, protocols)
|
||||
http_protocol_destroy (iter);
|
||||
|
||||
str_free (&wrap);
|
||||
}
|
||||
|
||||
// --- SCGI --------------------------------------------------------------------
|
||||
|
||||
static bool
|
||||
test_scgi_parser_on_headers_read (void *user_data)
|
||||
{
|
||||
(void) user_data;
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool
|
||||
test_scgi_parser_on_content (void *user_data, const void *data, size_t len)
|
||||
{
|
||||
(void) user_data;
|
||||
(void) data;
|
||||
(void) len;
|
||||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
test_scgi_parser_push (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct scgi_parser parser = scgi_parser_make ();
|
||||
parser.on_headers_read = test_scgi_parser_on_headers_read;
|
||||
parser.on_content = test_scgi_parser_on_content;
|
||||
|
||||
scgi_parser_push (&parser, data, size, NULL);
|
||||
scgi_parser_free (&parser);
|
||||
}
|
||||
|
||||
// --- WebSockets --------------------------------------------------------------
|
||||
|
||||
static bool
|
||||
test_ws_parser_on_frame_header (void *user_data, const struct ws_parser *self)
|
||||
{
|
||||
(void) user_data;
|
||||
(void) self;
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool
|
||||
test_ws_parser_on_frame (void *user_data, const struct ws_parser *self)
|
||||
{
|
||||
(void) user_data;
|
||||
(void) self;
|
||||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
test_ws_parser_push (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct ws_parser parser = ws_parser_make ();
|
||||
parser.on_frame_header = test_ws_parser_on_frame_header;
|
||||
parser.on_frame = test_ws_parser_on_frame;
|
||||
|
||||
ws_parser_push (&parser, data, size);
|
||||
ws_parser_free (&parser);
|
||||
}
|
||||
|
||||
// --- FastCGI -----------------------------------------------------------------
|
||||
|
||||
static bool
|
||||
test_fcgi_parser_on_message (const struct fcgi_parser *parser, void *user_data)
|
||||
{
|
||||
(void) parser;
|
||||
(void) user_data;
|
||||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
test_fcgi_parser_push (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct fcgi_parser parser = fcgi_parser_make ();
|
||||
parser.on_message = test_fcgi_parser_on_message;
|
||||
fcgi_parser_push (&parser, data, size);
|
||||
fcgi_parser_free (&parser);
|
||||
}
|
||||
|
||||
static void
|
||||
test_fcgi_nv_parser_push (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct str_map values = str_map_make (free);
|
||||
struct fcgi_nv_parser nv_parser = fcgi_nv_parser_make ();
|
||||
nv_parser.output = &values;
|
||||
|
||||
fcgi_nv_parser_push (&nv_parser, data, size);
|
||||
fcgi_nv_parser_free (&nv_parser);
|
||||
str_map_free (&values);
|
||||
}
|
||||
|
||||
// --- Config ------------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_config_item_parse (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct config_item *item =
|
||||
config_item_parse ((const char *) data, size, false, NULL);
|
||||
if (item)
|
||||
config_item_destroy (item);
|
||||
}
|
||||
|
||||
// --- TUI ---------------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_attrs_decode (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct str wrap = str_make ();
|
||||
str_append_data (&wrap, data, size);
|
||||
|
||||
attrs_decode (wrap.str);
|
||||
|
||||
str_free (&wrap);
|
||||
}
|
||||
|
||||
// --- MPD ---------------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_mpd_client_process_input (const uint8_t *data, size_t size)
|
||||
{
|
||||
struct poller poller;
|
||||
poller_init (&poller);
|
||||
|
||||
struct mpd_client mpd = mpd_client_make (&poller);
|
||||
str_append_data (&mpd.read_buffer, data, size);
|
||||
mpd_client_process_input (&mpd);
|
||||
mpd_client_free (&mpd);
|
||||
|
||||
poller_free (&poller);
|
||||
}
|
||||
|
||||
// --- Main --------------------------------------------------------------------
|
||||
|
||||
typedef void (*fuzz_test_fn) (const uint8_t *data, size_t size);
|
||||
static fuzz_test_fn generator = NULL;
|
||||
|
||||
void
|
||||
LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
|
||||
{
|
||||
generator (data, size);
|
||||
}
|
||||
|
||||
int
|
||||
LLVMFuzzerInitialize (int *argcp, char ***argvp)
|
||||
{
|
||||
struct str_map targets = str_map_make (NULL);
|
||||
#define REGISTER(name) str_map_set (&targets, #name, test_ ## name);
|
||||
REGISTER (utf8_validate)
|
||||
REGISTER (base64_decode)
|
||||
REGISTER (irc_parse_message)
|
||||
REGISTER (http_parse_media_type)
|
||||
REGISTER (http_parse_upgrade)
|
||||
REGISTER (scgi_parser_push)
|
||||
REGISTER (ws_parser_push)
|
||||
REGISTER (fcgi_parser_push)
|
||||
REGISTER (fcgi_nv_parser_push)
|
||||
REGISTER (config_item_parse)
|
||||
REGISTER (attrs_decode)
|
||||
REGISTER (mpd_client_process_input)
|
||||
|
||||
char **argv = *argvp, *option = "-test=", *name = NULL;
|
||||
for (int i = 1; i < *argcp; i++)
|
||||
if (!strncmp (argv[i], option, strlen (option)))
|
||||
{
|
||||
name = argv[i] + strlen (option);
|
||||
memmove (argv + i, argv + i + 1, (*argcp - i) * sizeof *argv);
|
||||
(*argcp)--;
|
||||
}
|
||||
|
||||
if (!name)
|
||||
{
|
||||
struct str_map_iter iter = str_map_iter_make (&targets);
|
||||
while (str_map_iter_next (&iter))
|
||||
printf ("%s\n", iter.link->key);
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if (!(generator = str_map_find (&targets, name)))
|
||||
{
|
||||
fprintf (stderr, "Unknown test: %s\n", name);
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
str_map_free (&targets);
|
||||
return 0;
|
||||
}
|
||||
433
tests/liberty.c
433
tests/liberty.c
@@ -1,12 +1,10 @@
|
||||
/*
|
||||
* tests/liberty.c
|
||||
*
|
||||
* Copyright (c) 2015, Přemysl Janouch <p.janouch@gmail.com>
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2015 - 2022, Přemysl Eric Janouch <p@janouch.name>
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
* purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
@@ -21,6 +19,9 @@
|
||||
#define PROGRAM_NAME "test"
|
||||
#define PROGRAM_VERSION "0"
|
||||
|
||||
#define LIBERTY_WANT_POLLER
|
||||
#define LIBERTY_WANT_ASYNC
|
||||
|
||||
#include "../liberty.c"
|
||||
|
||||
// --- Memory ------------------------------------------------------------------
|
||||
@@ -101,10 +102,10 @@ test_list (void)
|
||||
}
|
||||
|
||||
// Remove a few entries
|
||||
LIST_UNLINK (list, a[0]); a[0] = NULL;
|
||||
LIST_UNLINK (list, a[3]); a[3] = NULL;
|
||||
LIST_UNLINK (list, a[4]); a[4] = NULL;
|
||||
LIST_UNLINK (list, a[6]); a[6] = NULL;
|
||||
LIST_UNLINK (list, a[0]); free (a[0]); a[0] = NULL;
|
||||
LIST_UNLINK (list, a[3]); free (a[3]); a[3] = NULL;
|
||||
LIST_UNLINK (list, a[4]); free (a[4]); a[4] = NULL;
|
||||
LIST_UNLINK (list, a[6]); free (a[6]); a[6] = NULL;
|
||||
|
||||
// Prepend one more item
|
||||
a[0] = make_link (0);
|
||||
@@ -133,11 +134,11 @@ test_list_with_tail (void)
|
||||
}
|
||||
|
||||
// Remove a few entries
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[0]); a[0] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[3]); a[3] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[4]); a[4] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[6]); a[6] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[9]); a[9] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[0]); free (a[0]); a[0] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[3]); free (a[3]); a[3] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[4]); free (a[4]); a[4] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[6]); free (a[6]); a[6] = NULL;
|
||||
LIST_UNLINK_WITH_TAIL (list, tail, a[9]); free (a[9]); a[9] = NULL;
|
||||
|
||||
// Append one more item
|
||||
a[9] = make_link (9);
|
||||
@@ -154,31 +155,28 @@ test_list_with_tail (void)
|
||||
// --- Strings -----------------------------------------------------------------
|
||||
|
||||
static void
|
||||
test_str_vector (void)
|
||||
test_strv (void)
|
||||
{
|
||||
struct str_vector v;
|
||||
str_vector_init (&v);
|
||||
|
||||
str_vector_add_owned (&v, xstrdup ("xkcd"));
|
||||
str_vector_reset (&v);
|
||||
struct strv v = strv_make ();
|
||||
strv_append_owned (&v, xstrdup ("xkcd"));
|
||||
strv_reset (&v);
|
||||
|
||||
const char *a[] =
|
||||
{ "123", "456", "a", "bc", "def", "ghij", "klmno", "pqrstu" };
|
||||
|
||||
// Add the first two items via another vector
|
||||
struct str_vector w;
|
||||
str_vector_init (&w);
|
||||
str_vector_add_args (&w, a[0], a[1], NULL);
|
||||
str_vector_add_vector (&v, w.vector);
|
||||
str_vector_free (&w);
|
||||
struct strv w = strv_make ();
|
||||
strv_append_args (&w, a[0], a[1], NULL);
|
||||
strv_append_vector (&v, w.vector);
|
||||
strv_free (&w);
|
||||
|
||||
// Add an item and delete it right after
|
||||
str_vector_add (&v, "test");
|
||||
str_vector_remove (&v, v.len - 1);
|
||||
strv_append (&v, "test");
|
||||
strv_remove (&v, v.len - 1);
|
||||
|
||||
// Add the rest of the list properly
|
||||
for (int i = 2; i < (int) N_ELEMENTS (a); i++)
|
||||
str_vector_add (&v, a[i]);
|
||||
strv_append (&v, a[i]);
|
||||
|
||||
// Check the contents
|
||||
soft_assert (v.len == N_ELEMENTS (a));
|
||||
@@ -186,7 +184,7 @@ test_str_vector (void)
|
||||
soft_assert (!strcmp (v.vector[i], a[i]));
|
||||
soft_assert (v.vector[v.len] == NULL);
|
||||
|
||||
str_vector_free (&v);
|
||||
strv_free (&v);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -194,15 +192,13 @@ test_str (void)
|
||||
{
|
||||
uint8_t x[] = { 0x12, 0x34, 0x56, 0x78, 0x11, 0x22, 0x33, 0x44 };
|
||||
|
||||
struct str s;
|
||||
str_init (&s);
|
||||
str_ensure_space (&s, MEGA);
|
||||
struct str s = str_make ();
|
||||
str_reserve (&s, MEGA);
|
||||
str_append_data (&s, x, sizeof x);
|
||||
str_remove_slice (&s, 4, 4);
|
||||
soft_assert (s.len == 4);
|
||||
|
||||
struct str t;
|
||||
str_init (&t);
|
||||
struct str t = str_make ();
|
||||
str_append_str (&t, &s);
|
||||
str_append (&t, "abc");
|
||||
str_append_c (&t, 'd');
|
||||
@@ -263,10 +259,8 @@ static void
|
||||
test_str_map (void)
|
||||
{
|
||||
// Put two reference counted objects in the map under case-insensitive keys
|
||||
struct str_map m;
|
||||
str_map_init (&m);
|
||||
struct str_map m = str_map_make (free_counter);
|
||||
m.key_xfrm = tolower_ascii_strxfrm;
|
||||
m.free = free_counter;
|
||||
|
||||
int *a = make_counter ();
|
||||
int *b = make_counter ();
|
||||
@@ -280,8 +274,7 @@ test_str_map (void)
|
||||
soft_assert (str_map_find (&m, "DEFghi") == b);
|
||||
|
||||
// Check that we can iterate over both of them
|
||||
struct str_map_iter iter;
|
||||
str_map_iter_init (&iter, &m);
|
||||
struct str_map_iter iter = str_map_iter_make (&m);
|
||||
|
||||
bool met_a = false;
|
||||
bool met_b = false;
|
||||
@@ -308,8 +301,7 @@ test_str_map (void)
|
||||
free_counter (b);
|
||||
|
||||
// Iterator test with a high number of items
|
||||
str_map_init (&m);
|
||||
m.free = free;
|
||||
m = str_map_make (free);
|
||||
|
||||
for (size_t i = 0; i < 100 * 100; i++)
|
||||
{
|
||||
@@ -317,8 +309,7 @@ test_str_map (void)
|
||||
str_map_set (&m, x, x);
|
||||
}
|
||||
|
||||
struct str_map_unset_iter unset_iter;
|
||||
str_map_unset_iter_init (&unset_iter, &m);
|
||||
struct str_map_unset_iter unset_iter = str_map_unset_iter_make (&m);
|
||||
while ((str_map_unset_iter_next (&unset_iter)))
|
||||
{
|
||||
unsigned long x;
|
||||
@@ -335,10 +326,25 @@ test_str_map (void)
|
||||
static void
|
||||
test_utf8 (void)
|
||||
{
|
||||
const char valid [] = "2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm";
|
||||
const char invalid[] = "\xf0\x90\x28\xbc";
|
||||
soft_assert ( utf8_validate (valid, sizeof valid));
|
||||
soft_assert (!utf8_validate (invalid, sizeof invalid));
|
||||
const char *full = "\xc5\x99", *partial = full, *empty = full;
|
||||
soft_assert (utf8_decode (&full, 2) == 0x0159);
|
||||
soft_assert (utf8_decode (&partial, 1) == -2);
|
||||
soft_assert (utf8_decode (&empty, 0) == -1);
|
||||
|
||||
const char valid_1[] = "2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm";
|
||||
const char valid_2[] = "\xf0\x93\x82\xb9";
|
||||
const char invalid_1[] = "\xf0\x90\x28\xbc";
|
||||
const char invalid_2[] = "\xc0\x80";
|
||||
soft_assert ( utf8_validate (valid_1, sizeof valid_1));
|
||||
soft_assert ( utf8_validate (valid_2, sizeof valid_2));
|
||||
soft_assert (!utf8_validate (invalid_1, sizeof invalid_1));
|
||||
soft_assert (!utf8_validate (invalid_2, sizeof invalid_2));
|
||||
|
||||
struct utf8_iter iter = utf8_iter_make ("fóọ");
|
||||
size_t ch_len;
|
||||
hard_assert (utf8_iter_next (&iter, &ch_len) == 'f' && ch_len == 1);
|
||||
hard_assert (utf8_iter_next (&iter, &ch_len) == 0x00F3 && ch_len == 2);
|
||||
hard_assert (utf8_iter_next (&iter, &ch_len) == 0x1ECD && ch_len == 3);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -348,8 +354,8 @@ test_base64 (void)
|
||||
for (size_t i = 0; i < N_ELEMENTS (data); i++)
|
||||
data[i] = i;
|
||||
|
||||
struct str encoded; str_init (&encoded);
|
||||
struct str decoded; str_init (&decoded);
|
||||
struct str encoded = str_make ();
|
||||
struct str decoded = str_make ();
|
||||
|
||||
base64_encode (data, sizeof data, &encoded);
|
||||
soft_assert (base64_decode (encoded.str, false, &decoded));
|
||||
@@ -360,6 +366,328 @@ test_base64 (void)
|
||||
str_free (&decoded);
|
||||
}
|
||||
|
||||
// --- Asynchronous jobs -------------------------------------------------------
|
||||
|
||||
struct test_async_data
|
||||
{
|
||||
struct async_manager manager; ///< Async manager
|
||||
struct async_getaddrinfo *gai; ///< Address resolution job
|
||||
struct async_getnameinfo *gni; ///< Name resolution job
|
||||
|
||||
struct async busyloop; ///< Busy job for cancellation
|
||||
bool finished; ///< End of test indicator
|
||||
};
|
||||
|
||||
static void
|
||||
on_getnameinfo (int err, char *host, char *service, void *user_data)
|
||||
{
|
||||
(void) host;
|
||||
(void) service;
|
||||
|
||||
hard_assert (!err);
|
||||
struct test_async_data *data = user_data;
|
||||
data->gni = NULL;
|
||||
|
||||
async_cancel (&data->busyloop);
|
||||
}
|
||||
|
||||
static void
|
||||
on_getaddrinfo (int err, struct addrinfo *results, void *user_data)
|
||||
{
|
||||
hard_assert (!err);
|
||||
struct test_async_data *data = user_data;
|
||||
data->gai = NULL;
|
||||
|
||||
data->gni = async_getnameinfo
|
||||
(&data->manager, results->ai_addr, results->ai_addrlen, 0);
|
||||
data->gni->dispatcher = on_getnameinfo;
|
||||
data->gni->user_data = data;
|
||||
|
||||
freeaddrinfo (results);
|
||||
}
|
||||
|
||||
static void
|
||||
on_busyloop_execute (struct async *async)
|
||||
{
|
||||
(void) async;
|
||||
|
||||
while (true)
|
||||
sleep (1);
|
||||
}
|
||||
|
||||
static void
|
||||
on_busyloop_destroy (struct async *async)
|
||||
{
|
||||
CONTAINER_OF (async, struct test_async_data, busyloop)->finished = true;
|
||||
}
|
||||
|
||||
static void
|
||||
test_async (void)
|
||||
{
|
||||
struct test_async_data data;
|
||||
memset (&data, 0, sizeof data);
|
||||
data.manager = async_manager_make ();
|
||||
|
||||
data.busyloop = async_make (&data.manager);
|
||||
data.busyloop.execute = on_busyloop_execute;
|
||||
data.busyloop.destroy = on_busyloop_destroy;
|
||||
async_run (&data.busyloop);
|
||||
|
||||
struct addrinfo hints;
|
||||
memset (&hints, 0, sizeof hints);
|
||||
hints.ai_socktype = SOCK_STREAM;
|
||||
|
||||
// Localhost should be network-independent and instantaneous
|
||||
data.gai = async_getaddrinfo (&data.manager, "127.0.0.1", "22", &hints);
|
||||
data.gai->dispatcher = on_getaddrinfo;
|
||||
data.gai->user_data = &data;
|
||||
|
||||
struct pollfd pfd =
|
||||
{ .events = POLLIN, .fd = data.manager.finished_pipe[0] };
|
||||
|
||||
// Eventually the busyloop should get cancelled and stop the loop
|
||||
while (!data.finished)
|
||||
{
|
||||
hard_assert (poll (&pfd, 1, 1000) == 1);
|
||||
async_manager_dispatch (&data.manager);
|
||||
}
|
||||
|
||||
soft_assert (!data.gai);
|
||||
soft_assert (!data.gni);
|
||||
async_manager_free (&data.manager);
|
||||
}
|
||||
|
||||
// --- Connector ---------------------------------------------------------------
|
||||
|
||||
// This also happens to test a large part of the poller implementation
|
||||
|
||||
#include <arpa/inet.h>
|
||||
|
||||
struct test_connector_fixture
|
||||
{
|
||||
const char *host; ///< The host we're listening on
|
||||
int port; ///< The port we're listening on
|
||||
|
||||
int listening_fd; ///< Listening FD
|
||||
|
||||
struct poller poller; ///< Poller
|
||||
struct poller_fd listening_event; ///< Listening event
|
||||
bool quitting; ///< Quit signal for the event loop
|
||||
};
|
||||
|
||||
static void
|
||||
test_connector_on_client (const struct pollfd *pfd, void *user_data)
|
||||
{
|
||||
(void) user_data;
|
||||
|
||||
int fd = accept (pfd->fd, NULL, NULL);
|
||||
if (fd == -1)
|
||||
{
|
||||
if (errno == EAGAIN
|
||||
|| errno == EINTR
|
||||
|| errno == ECONNABORTED)
|
||||
return;
|
||||
|
||||
exit_fatal ("%s: %s", "accept", strerror (errno));
|
||||
}
|
||||
|
||||
const char message[] = "Hello!\n";
|
||||
(void) write (fd, message, strlen (message));
|
||||
xclose (fd);
|
||||
}
|
||||
|
||||
static bool
|
||||
test_connector_try_bind
|
||||
(struct test_connector_fixture *self, const char *host, int port)
|
||||
{
|
||||
struct sockaddr_in sin;
|
||||
sin.sin_family = AF_INET;
|
||||
sin.sin_port = htons ((self->port = port));
|
||||
sin.sin_addr.s_addr = inet_addr ((self->host = host));
|
||||
|
||||
int fd = socket (AF_INET, SOCK_STREAM, 0);
|
||||
if (fd < 0)
|
||||
return true;
|
||||
|
||||
int yes = 1;
|
||||
(void) setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof yes);
|
||||
|
||||
if (bind (fd, (struct sockaddr *) &sin, sizeof sin)
|
||||
|| listen (fd, 10))
|
||||
{
|
||||
xclose (fd);
|
||||
return false;
|
||||
}
|
||||
|
||||
self->listening_fd = fd;
|
||||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
test_connector_fixture_init
|
||||
(const void *user_data, struct test_connector_fixture *self)
|
||||
{
|
||||
(void) user_data;
|
||||
|
||||
// Find a free port on localhost in the user range and bind to it
|
||||
for (int i = 0; i < 1024; i++)
|
||||
if (test_connector_try_bind (self, "127.0.0.1", 1024 + i))
|
||||
break;
|
||||
if (!self->listening_fd)
|
||||
exit_fatal ("cannot bind to localhost");
|
||||
|
||||
// Make it so that we immediately accept all connections
|
||||
poller_init (&self->poller);
|
||||
self->listening_event = poller_fd_make (&self->poller, self->listening_fd);
|
||||
self->listening_event.dispatcher = test_connector_on_client;
|
||||
self->listening_event.user_data = (poller_fd_fn) self;
|
||||
poller_fd_set (&self->listening_event, POLLIN);
|
||||
}
|
||||
|
||||
static void
|
||||
test_connector_fixture_free
|
||||
(const void *user_data, struct test_connector_fixture *self)
|
||||
{
|
||||
(void) user_data;
|
||||
|
||||
poller_free (&self->poller);
|
||||
xclose (self->listening_fd);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static void
|
||||
test_connector_on_connected (void *user_data, int socket, const char *hostname)
|
||||
{
|
||||
struct test_connector_fixture *self = user_data;
|
||||
hard_assert (!strcmp (hostname, self->host));
|
||||
xclose (socket);
|
||||
|
||||
self->quitting = true;
|
||||
}
|
||||
|
||||
static void
|
||||
test_connector_on_failure (void *user_data)
|
||||
{
|
||||
(void) user_data;
|
||||
exit_fatal ("failed to connect to the prepared port");
|
||||
}
|
||||
|
||||
static void
|
||||
test_connector_on_connecting (void *user_data, const char *address)
|
||||
{
|
||||
(void) user_data;
|
||||
print_debug ("connecting to %s", address);
|
||||
}
|
||||
|
||||
static void
|
||||
test_connector_on_error (void *user_data, const char *error)
|
||||
{
|
||||
(void) user_data;
|
||||
print_debug ("%s: %s", "connecting failed", error);
|
||||
}
|
||||
|
||||
static void
|
||||
test_connector (const void *user_data, struct test_connector_fixture *self)
|
||||
{
|
||||
(void) user_data;
|
||||
print_debug ("final target is %s:%d", self->host, self->port);
|
||||
|
||||
struct connector connector;
|
||||
connector_init (&connector, &self->poller);
|
||||
connector.on_connecting = test_connector_on_connecting;
|
||||
connector.on_error = test_connector_on_error;
|
||||
connector.on_connected = test_connector_on_connected;
|
||||
connector.on_failure = test_connector_on_failure;
|
||||
connector.user_data = self;
|
||||
|
||||
connector_add_target (&connector, ":D", "nonsense");
|
||||
|
||||
char *port = xstrdup_printf ("%d", self->port);
|
||||
connector_add_target (&connector, self->host, port);
|
||||
free (port);
|
||||
|
||||
while (!self->quitting)
|
||||
poller_run (&self->poller);
|
||||
|
||||
connector_free (&connector);
|
||||
}
|
||||
|
||||
// --- Configuration -----------------------------------------------------------
|
||||
|
||||
static void
|
||||
on_test_config_foo_change (struct config_item *item)
|
||||
{
|
||||
*(bool *) item->user_data = item->value.boolean;
|
||||
}
|
||||
|
||||
static bool
|
||||
test_config_validate_nonnegative
|
||||
(const struct config_item *item, struct error **e)
|
||||
{
|
||||
if (item->type == CONFIG_ITEM_NULL)
|
||||
return true;
|
||||
|
||||
hard_assert (item->type == CONFIG_ITEM_INTEGER);
|
||||
if (item->value.integer >= 0)
|
||||
return true;
|
||||
|
||||
error_set (e, "must be non-negative");
|
||||
return false;
|
||||
}
|
||||
|
||||
static struct config_schema g_config_test[] =
|
||||
{
|
||||
{ .name = "foo",
|
||||
.comment = "baz",
|
||||
.type = CONFIG_ITEM_BOOLEAN,
|
||||
.default_ = "off",
|
||||
.on_change = on_test_config_foo_change },
|
||||
{ .name = "bar",
|
||||
.type = CONFIG_ITEM_INTEGER,
|
||||
.validate = test_config_validate_nonnegative,
|
||||
.default_ = "1" },
|
||||
{ .name = "foobar",
|
||||
.type = CONFIG_ITEM_STRING,
|
||||
.default_ = "\"qux\\x01`\" \"\"`a`" },
|
||||
{}
|
||||
};
|
||||
|
||||
static void
|
||||
test_config_load (struct config_item *subtree, void *user_data)
|
||||
{
|
||||
config_schema_apply_to_object (g_config_test, subtree, user_data);
|
||||
}
|
||||
|
||||
static void
|
||||
test_config (void)
|
||||
{
|
||||
struct config config = config_make ();
|
||||
|
||||
bool b = true;
|
||||
config_register_module (&config, "top", test_config_load, &b);
|
||||
config_load (&config, config_item_object ());
|
||||
config_schema_call_changed (config.root);
|
||||
hard_assert (b == false);
|
||||
|
||||
struct config_item *invalid = config_item_integer (-1);
|
||||
hard_assert (!config_item_set_from (config_item_get (config.root,
|
||||
"top.bar", NULL), invalid, NULL));
|
||||
config_item_destroy (invalid);
|
||||
|
||||
hard_assert (!strcmp ("qux\001`a",
|
||||
config_item_get (config.root, "top.foobar", NULL)->value.string.str));
|
||||
|
||||
struct str s = str_make ();
|
||||
config_item_write (config.root, true, &s);
|
||||
struct config_item *parsed = config_item_parse (s.str, s.len, false, NULL);
|
||||
hard_assert (parsed);
|
||||
config_item_destroy (parsed);
|
||||
str_free (&s);
|
||||
|
||||
config_free (&config);
|
||||
}
|
||||
|
||||
// --- Main --------------------------------------------------------------------
|
||||
|
||||
int
|
||||
@@ -371,12 +699,19 @@ main (int argc, char *argv[])
|
||||
test_add_simple (&test, "/memory", NULL, test_memory);
|
||||
test_add_simple (&test, "/list", NULL, test_list);
|
||||
test_add_simple (&test, "/list-with-tail", NULL, test_list_with_tail);
|
||||
test_add_simple (&test, "/str-vector", NULL, test_str_vector);
|
||||
test_add_simple (&test, "/strv", NULL, test_strv);
|
||||
test_add_simple (&test, "/str", NULL, test_str);
|
||||
test_add_simple (&test, "/error", NULL, test_error);
|
||||
test_add_simple (&test, "/str-map", NULL, test_str_map);
|
||||
test_add_simple (&test, "/utf-8", NULL, test_utf8);
|
||||
test_add_simple (&test, "/base64", NULL, test_base64);
|
||||
test_add_simple (&test, "/async", NULL, test_async);
|
||||
test_add_simple (&test, "/config", NULL, test_config);
|
||||
|
||||
test_add (&test, "/connector", struct test_connector_fixture, NULL,
|
||||
test_connector_fixture_init,
|
||||
test_connector,
|
||||
test_connector_fixture_free);
|
||||
|
||||
// TODO: write tests for the rest of the library
|
||||
|
||||
|
||||
@@ -1,12 +1,10 @@
|
||||
/*
|
||||
* tests/proto.c
|
||||
*
|
||||
* Copyright (c) 2015, Přemysl Janouch <p.janouch@gmail.com>
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2015, Přemysl Eric Janouch <p@janouch.name>
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
* purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
@@ -22,12 +20,16 @@
|
||||
#define PROGRAM_VERSION "0"
|
||||
|
||||
#define LIBERTY_WANT_SSL
|
||||
// The MPD client is a full wrapper and needs the network
|
||||
#define LIBERTY_WANT_POLLER
|
||||
#define LIBERTY_WANT_ASYNC
|
||||
|
||||
#define LIBERTY_WANT_PROTO_IRC
|
||||
#define LIBERTY_WANT_PROTO_HTTP
|
||||
#define LIBERTY_WANT_PROTO_SCGI
|
||||
#define LIBERTY_WANT_PROTO_FASTCGI
|
||||
#define LIBERTY_WANT_PROTO_WS
|
||||
#define LIBERTY_WANT_PROTO_MPD
|
||||
|
||||
#include "../liberty.c"
|
||||
|
||||
@@ -40,8 +42,7 @@ test_irc (void)
|
||||
irc_parse_message (&msg, "@first=a\\:\\s\\r\\n\\\\;2nd "
|
||||
":srv hi there :good m8 :how are you?");
|
||||
|
||||
struct str_map_iter iter;
|
||||
str_map_iter_init (&iter, &msg.tags);
|
||||
struct str_map_iter iter = str_map_iter_make (&msg.tags);
|
||||
soft_assert (msg.tags.len == 2);
|
||||
|
||||
char *value;
|
||||
@@ -76,8 +77,7 @@ test_irc (void)
|
||||
static void
|
||||
test_http_parser (void)
|
||||
{
|
||||
struct str_map parameters;
|
||||
str_map_init (¶meters);
|
||||
struct str_map parameters = str_map_make (free);
|
||||
parameters.key_xfrm = tolower_ascii_strxfrm;
|
||||
|
||||
char *type = NULL;
|
||||
@@ -88,9 +88,11 @@ test_http_parser (void)
|
||||
soft_assert (!strcasecmp_ascii (subtype, "html"));
|
||||
soft_assert (parameters.len == 1);
|
||||
soft_assert (!strcmp (str_map_find (¶meters, "charset"), "utf-8"));
|
||||
free (type);
|
||||
free (subtype);
|
||||
str_map_free (¶meters);
|
||||
|
||||
struct http_protocol *protocols;
|
||||
struct http_protocol *protocols = NULL;
|
||||
soft_assert (http_parse_upgrade ("websocket, HTTP/2.0, , ", &protocols));
|
||||
|
||||
soft_assert (!strcmp (protocols->name, "websocket"));
|
||||
@@ -105,10 +107,20 @@ test_http_parser (void)
|
||||
http_protocol_destroy (iter);
|
||||
}
|
||||
|
||||
struct scgi_fixture
|
||||
{
|
||||
struct scgi_parser parser;
|
||||
bool seen_headers;
|
||||
bool seen_content;
|
||||
};
|
||||
|
||||
static bool
|
||||
test_scgi_parser_on_headers_read (void *user_data)
|
||||
{
|
||||
struct scgi_parser *parser = user_data;
|
||||
struct scgi_fixture *fixture = user_data;
|
||||
struct scgi_parser *parser = &fixture->parser;
|
||||
fixture->seen_headers = true;
|
||||
|
||||
soft_assert (parser->headers.len == 4);
|
||||
soft_assert (!strcmp (str_map_find (&parser->headers,
|
||||
"CONTENT_LENGTH"), "27"));
|
||||
@@ -124,7 +136,9 @@ test_scgi_parser_on_headers_read (void *user_data)
|
||||
static bool
|
||||
test_scgi_parser_on_content (void *user_data, const void *data, size_t len)
|
||||
{
|
||||
(void) user_data;
|
||||
struct scgi_fixture *fixture = user_data;
|
||||
fixture->seen_content = true;
|
||||
|
||||
soft_assert (!strncmp (data, "What is the answer to life?", len));
|
||||
return true;
|
||||
}
|
||||
@@ -132,11 +146,12 @@ test_scgi_parser_on_content (void *user_data, const void *data, size_t len)
|
||||
static void
|
||||
test_scgi_parser (void)
|
||||
{
|
||||
struct scgi_parser parser;
|
||||
scgi_parser_init (&parser);
|
||||
parser.on_headers_read = test_scgi_parser_on_headers_read;
|
||||
parser.on_content = test_scgi_parser_on_content;
|
||||
parser.user_data = &parser;
|
||||
struct scgi_fixture fixture = { scgi_parser_make(), false, false };
|
||||
struct scgi_parser *parser = &fixture.parser;
|
||||
|
||||
parser->on_headers_read = test_scgi_parser_on_headers_read;
|
||||
parser->on_content = test_scgi_parser_on_content;
|
||||
parser->user_data = &fixture;
|
||||
|
||||
// This is an example straight from the specification
|
||||
const char example[] =
|
||||
@@ -148,8 +163,9 @@ test_scgi_parser (void)
|
||||
","
|
||||
"What is the answer to life?";
|
||||
|
||||
soft_assert (scgi_parser_push (&parser, example, sizeof example, NULL));
|
||||
scgi_parser_free (&parser);
|
||||
soft_assert (scgi_parser_push (parser, example, sizeof example, NULL));
|
||||
soft_assert (fixture.seen_headers && fixture.seen_content);
|
||||
scgi_parser_free (parser);
|
||||
}
|
||||
|
||||
static bool
|
||||
@@ -178,8 +194,7 @@ test_websockets (void)
|
||||
soft_assert (!strcmp (accept, "s3pPLMBiTxaQ9kYGzzhZRbK+xOo="));
|
||||
free (accept);
|
||||
|
||||
struct ws_parser parser;
|
||||
ws_parser_init (&parser);
|
||||
struct ws_parser parser = ws_parser_make ();
|
||||
parser.on_frame_header = test_websockets_on_frame_header;
|
||||
parser.on_frame = test_websockets_on_frame;
|
||||
parser.user_data = &parser;
|
||||
@@ -201,7 +216,7 @@ main (int argc, char *argv[])
|
||||
test_add_simple (&test, "/http-parser", NULL, test_http_parser);
|
||||
test_add_simple (&test, "/scgi-parser", NULL, test_scgi_parser);
|
||||
test_add_simple (&test, "/websockets", NULL, test_websockets);
|
||||
// TODO: test FastCGI
|
||||
// TODO: test FastCGI and MPD
|
||||
|
||||
return test_run (&test);
|
||||
}
|
||||
|
||||
127
tests/pulse.c
Normal file
127
tests/pulse.c
Normal file
@@ -0,0 +1,127 @@
|
||||
/*
|
||||
* tests/pulse.c
|
||||
*
|
||||
* Copyright (c) 2021, Přemysl Eric Janouch <p@janouch.name>
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*
|
||||
*/
|
||||
|
||||
#define PROGRAM_NAME "test"
|
||||
#define PROGRAM_VERSION "0"
|
||||
|
||||
#define LIBERTY_WANT_POLLER
|
||||
|
||||
#include "../liberty.c"
|
||||
#include "../liberty-pulse.c"
|
||||
|
||||
// --- Tests -------------------------------------------------------------------
|
||||
|
||||
enum
|
||||
{
|
||||
EVENT_IO = 1 << 0,
|
||||
EVENT_TIME = 1 << 1,
|
||||
EVENT_DEFER = 1 << 2,
|
||||
EVENT_ALL = (1 << 3) - 1
|
||||
};
|
||||
|
||||
static intptr_t g_events = 0;
|
||||
static intptr_t g_destroys = 0;
|
||||
|
||||
static void
|
||||
io_event_cb (pa_mainloop_api *a,
|
||||
pa_io_event *e, int fd, pa_io_event_flags_t events, void *userdata)
|
||||
{
|
||||
(void) a; (void) e; (void) fd; (void) events;
|
||||
g_events |= (intptr_t) userdata;
|
||||
}
|
||||
|
||||
static void
|
||||
io_event_destroy_cb (pa_mainloop_api *a, pa_io_event *e, void *userdata)
|
||||
{
|
||||
(void) a; (void) e;
|
||||
g_destroys += (intptr_t) userdata;
|
||||
}
|
||||
|
||||
static void
|
||||
time_event_cb (pa_mainloop_api *a,
|
||||
pa_time_event *e, const struct timeval *tv, void *userdata)
|
||||
{
|
||||
(void) a; (void) e; (void) tv;
|
||||
g_events |= (intptr_t) userdata;
|
||||
}
|
||||
|
||||
static void
|
||||
time_event_destroy_cb (pa_mainloop_api *a, pa_time_event *e, void *userdata)
|
||||
{
|
||||
(void) a; (void) e;
|
||||
g_destroys += (intptr_t) userdata;
|
||||
}
|
||||
|
||||
static void
|
||||
defer_event_cb (pa_mainloop_api *a, pa_defer_event *e, void *userdata)
|
||||
{
|
||||
(void) a; (void) e;
|
||||
g_events |= (intptr_t) userdata;
|
||||
}
|
||||
|
||||
static void
|
||||
defer_event_destroy_cb (pa_mainloop_api *a, pa_defer_event *e, void *userdata)
|
||||
{
|
||||
(void) a; (void) e;
|
||||
g_destroys += (intptr_t) userdata;
|
||||
}
|
||||
|
||||
static void
|
||||
test_pulse (void)
|
||||
{
|
||||
struct poller poller;
|
||||
poller_init (&poller);
|
||||
|
||||
// Let's just get this over with, not aiming for high test coverage here
|
||||
pa_mainloop_api *api = poller_pa_new (&poller);
|
||||
|
||||
pa_io_event *ie = api->io_new (api, STDOUT_FILENO, PA_IO_EVENT_OUTPUT,
|
||||
io_event_cb, (void *) EVENT_IO);
|
||||
api->io_set_destroy (ie, io_event_destroy_cb);
|
||||
|
||||
const struct timeval tv = poller_pa_get_current_time ();
|
||||
pa_time_event *te = api->time_new (api, &tv,
|
||||
time_event_cb, (void *) EVENT_TIME);
|
||||
api->time_set_destroy (te, time_event_destroy_cb);
|
||||
api->time_restart (te, &tv);
|
||||
|
||||
pa_defer_event *de = api->defer_new (api,
|
||||
defer_event_cb, (void *) EVENT_DEFER);
|
||||
api->defer_set_destroy (de, defer_event_destroy_cb);
|
||||
api->defer_enable (api->defer_new (api,
|
||||
defer_event_cb, (void *) EVENT_DEFER), false);
|
||||
|
||||
alarm (1);
|
||||
while (g_events != EVENT_ALL)
|
||||
poller_run (&poller);
|
||||
|
||||
poller_pa_destroy (api);
|
||||
soft_assert (g_destroys == EVENT_ALL);
|
||||
poller_free (&poller);
|
||||
}
|
||||
|
||||
// --- Main --------------------------------------------------------------------
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
struct test test;
|
||||
test_init (&test, argc, argv);
|
||||
test_add_simple (&test, "/pulse", NULL, test_pulse);
|
||||
return test_run (&test);
|
||||
}
|
||||
237
tools/asciiman.awk
Normal file
237
tools/asciiman.awk
Normal file
@@ -0,0 +1,237 @@
|
||||
# asciiman.awk: stupid AsciiDoc to manual page converter
|
||||
#
|
||||
# Copyright (c) 2022, Přemysl Eric Janouch <p@janouch.name>
|
||||
# SPDX-License-Identifier: 0BSD
|
||||
#
|
||||
# This is not intended to produce great output, merely useful output.
|
||||
# As such, input documents should restrict themselves as follows:
|
||||
#
|
||||
# - Attributes cannot be passed on the command line.
|
||||
# - In-line formatting sequences must not overlap,
|
||||
# cannot be escaped, and cannot span lines.
|
||||
# - Heading underlines must match in byte length exactly.
|
||||
# - Only a small subset of syntax is supported overall.
|
||||
#
|
||||
# Also beware that the output has only been tested with GNU troff.
|
||||
|
||||
function fatal(message) {
|
||||
print ".\\\" " FILENAME ":" FNR ": fatal error: " message
|
||||
print FILENAME ":" FNR ": fatal error: " message > "/dev/stderr"
|
||||
exit 1
|
||||
}
|
||||
|
||||
function expand(s, attr) {
|
||||
# TODO: This should not expand unknown attribute names.
|
||||
while (match(s, /[{][^{}]*[}]/)) {
|
||||
attr = substr(s, RSTART + 1, RLENGTH - 2)
|
||||
s = substr(s, 1, RSTART - 1) Attrs[attr] substr(s, RSTART + RLENGTH)
|
||||
}
|
||||
return s
|
||||
}
|
||||
|
||||
function escape(s) {
|
||||
gsub(/\\/, "\\\\", s)
|
||||
gsub(/-/, "\\-", s)
|
||||
sub(/^[.']/, "\\\\\\&&", s)
|
||||
return s
|
||||
}
|
||||
|
||||
function readattribute(line, attrname, attrvalue) {
|
||||
if (match(line, /^:[^:]*: /)) {
|
||||
attrname = substr(line, RSTART + 1, RLENGTH - 3)
|
||||
attrvalue = substr(line, RSTART + RLENGTH)
|
||||
Attrs[attrname] = expand(attrvalue)
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
||||
NR == 1 {
|
||||
nameline = $0
|
||||
if (match(nameline, /[(][[:digit:]][)]$/)) {
|
||||
name = substr(nameline, 1, RSTART - 1)
|
||||
section = substr(nameline, RSTART + 1, RLENGTH - 2)
|
||||
} else {
|
||||
fatal("invalid header line")
|
||||
}
|
||||
|
||||
getline
|
||||
if (length(nameline) != length($0) || /[^=]/)
|
||||
fatal("invalid header underline")
|
||||
|
||||
getline
|
||||
while (readattribute($0))
|
||||
getline
|
||||
if ($0)
|
||||
fatal("expected an empty line after the header")
|
||||
|
||||
# Requesting tbl(1), even though we currently do not support tables.
|
||||
print "'\\\\"" t"
|
||||
print ".TH \"" toupper(name) "\" \"" section "\""
|
||||
|
||||
# Hyphenation is indeed rather annoying, in particular with long links.
|
||||
print ".nh"
|
||||
}
|
||||
|
||||
function inline(line) {
|
||||
if (!line) {
|
||||
print ".sp"
|
||||
return
|
||||
}
|
||||
|
||||
line = escape(expand(line))
|
||||
|
||||
# Strip empty URL descriptions, otherwise useful for demarking the end.
|
||||
while (match(line, /[^[:space:]]+\[\]/)) {
|
||||
line = substr(line, 1, RSTART + RLENGTH - 3) \
|
||||
substr(line, RSTART + RLENGTH)
|
||||
}
|
||||
|
||||
# Pass-through, otherwise useful for hacks, is a lie here.
|
||||
while (match(line, /[+][+][+][^+]+[+][+][+]/)) {
|
||||
line = substr(line, 1, RSTART - 1) \
|
||||
substr(line, RSTART + 3, RLENGTH - 6) \
|
||||
substr(line, RSTART + RLENGTH)
|
||||
}
|
||||
|
||||
# Italic and bold formatting doesn't respect any word boundaries.
|
||||
while (match(line, /__[^_]+__/)) {
|
||||
line = substr(line, 1, RSTART - 1) \
|
||||
"\\fI" substr(line, RSTART + 2, RLENGTH - 4) "\\fP" \
|
||||
substr(line, RSTART + RLENGTH)
|
||||
}
|
||||
while (match(line, /_[^_]+_/)) {
|
||||
line = substr(line, 1, RSTART - 1) \
|
||||
"\\fI" substr(line, RSTART + 1, RLENGTH - 2) "\\fP" \
|
||||
substr(line, RSTART + RLENGTH)
|
||||
}
|
||||
while (match(line, /[*][*][^*]+[*][*]/)) {
|
||||
line = substr(line, 1, RSTART - 1) \
|
||||
"\\fB" substr(line, RSTART + 2, RLENGTH - 4) "\\fP" \
|
||||
substr(line, RSTART + RLENGTH)
|
||||
}
|
||||
while (match(line, /[*][^*]+[*]/)) {
|
||||
line = substr(line, 1, RSTART - 1) \
|
||||
"\\fB" substr(line, RSTART + 1, RLENGTH - 2) "\\fP" \
|
||||
substr(line, RSTART + RLENGTH)
|
||||
}
|
||||
|
||||
# Enable double-spacing after the end of a sentence.
|
||||
gsub(/[.][[:space:]]+/, ".\n", line)
|
||||
gsub(/[!][[:space:]]+/, "!\n", line)
|
||||
gsub(/[?][[:space:]]+/, "?\n", line)
|
||||
|
||||
# Quote commands resulting from that, as well as from expand().
|
||||
gsub(/\n[.]/, "\n\\\\\\&.", line)
|
||||
gsub(/\n[']/, "\n\\\\\\&'", line)
|
||||
|
||||
sub(/[[:space:]]+[+]$/, "\n.br", line)
|
||||
print line
|
||||
}
|
||||
|
||||
# Returns 1 iff the left-over $0 should be processed further.
|
||||
function process(firstline) {
|
||||
if (readattribute(firstline))
|
||||
return 0
|
||||
if (getline <= 0) {
|
||||
inline(firstline)
|
||||
return 0
|
||||
}
|
||||
|
||||
if (length(firstline) == length($0) && /^-+$/) {
|
||||
print ".SH \"" escape(toupper(expand(firstline))) "\""
|
||||
return 0
|
||||
}
|
||||
if (length(firstline) == length($0) && /^~+$/) {
|
||||
print ".SS \"" escape(expand(firstline)) "\""
|
||||
return 0
|
||||
}
|
||||
if (firstline ~ /^(-{4,}|[.]{4,})$/) {
|
||||
print ".if n .RS 4"
|
||||
print ".nf"
|
||||
print ".fam C"
|
||||
do {
|
||||
print escape($0)
|
||||
} while (getline > 0 && $0 != firstline)
|
||||
print ".fam"
|
||||
print ".fi"
|
||||
print ".if n .RE"
|
||||
return 0
|
||||
}
|
||||
if (firstline ~ /^\/{4,}$/) {
|
||||
do {
|
||||
print ".\\\" " $0
|
||||
} while (getline > 0 && $0 != firstline)
|
||||
return 0
|
||||
}
|
||||
if (match(firstline, /^\/\//)) {
|
||||
print ".\\\" " firstline
|
||||
return 1
|
||||
}
|
||||
|
||||
# We generally assume these block end with a blank line.
|
||||
if (match(firstline, /^[[:space:]]*[*][[:space:]]+/)) {
|
||||
# Bullet magic copied over from AsciiDoc/Asciidoctor generators.
|
||||
print ".RS 4"
|
||||
print ".ie n \\{\\"
|
||||
print "\\h'-04'\\(bu\\h'+03'\\c"
|
||||
print ".\\}"
|
||||
print ".el \\{\\"
|
||||
print ".sp -1"
|
||||
print ".IP \\(bu 2.3"
|
||||
print ".\\}"
|
||||
|
||||
inline(substr(firstline, RSTART + RLENGTH))
|
||||
while ($0) {
|
||||
sub(/^[[:space:]]+/, "")
|
||||
sub(/^[+]$/, "")
|
||||
if (!process($0) && getline <= 0)
|
||||
fatal("unexpected EOF")
|
||||
if (match($0, /^[[:space:]]*[*][[:space:]]+/))
|
||||
break
|
||||
}
|
||||
print ".RE"
|
||||
print ".sp"
|
||||
return !!$0
|
||||
}
|
||||
if (match(firstline, /^[[:space:]]+/)) {
|
||||
print ".if n .RS 4"
|
||||
print ".nf"
|
||||
print ".fam C"
|
||||
do {
|
||||
print escape(substr(firstline, RLENGTH + 1))
|
||||
firstline = $0
|
||||
} while ($0 && getline > 0)
|
||||
print ".fam"
|
||||
print ".fi"
|
||||
print ".if n .RE"
|
||||
return 1
|
||||
}
|
||||
if (match(firstline, /::$/)) {
|
||||
inline(substr(firstline, 1, RSTART - 1))
|
||||
while (match($0, /::$/)) {
|
||||
print ".br"
|
||||
inline(substr($0, 1, RSTART - 1))
|
||||
if (getline <= 0)
|
||||
fatal("unexpected EOF")
|
||||
}
|
||||
|
||||
print ".RS 4"
|
||||
while ($0) {
|
||||
sub(/^[[:space:]]+/, "")
|
||||
sub(/^[+]$/, "")
|
||||
if (!process($0) && getline <= 0)
|
||||
fatal("unexpected EOF")
|
||||
if (match($0, /::$/))
|
||||
break
|
||||
}
|
||||
print ".RE"
|
||||
print ".sp"
|
||||
return !!$0
|
||||
}
|
||||
inline(firstline)
|
||||
return 1
|
||||
}
|
||||
|
||||
{
|
||||
while (process($0)) {}
|
||||
}
|
||||
Reference in New Issue
Block a user