]>
mj.ucw.cz Git - libucw.git/log
Pavel Charvat [Fri, 7 Feb 2014 08:54:31 +0000 (09:54 +0100)]
LibUCW: debian/mk can postprocess debian/control with a custom script.
Pavel Charvat [Thu, 6 Feb 2014 11:17:34 +0000 (12:17 +0100)]
Opt: Fixed a bug in positional arguments.
Martin Mares [Thu, 6 Feb 2014 09:52:26 +0000 (10:52 +0100)]
Opt: Avoid fixed constants, use OPT_POSITIONAL_TAIL
Pavel Charvat [Tue, 4 Feb 2014 12:32:49 +0000 (13:32 +0100)]
Packages: Removed the "-dev" suffix from UCW_ABI_SUFFIX.
Pavel Charvat [Tue, 4 Feb 2014 12:31:34 +0000 (13:31 +0100)]
Merge branch 'master' of ssh://jabberwock.ucw.cz/projects/libucw/GIT/libucw
Martin Mares [Tue, 4 Feb 2014 12:55:23 +0000 (13:55 +0100)]
Logging: Stream filters are permitted to modify log messages
Pavel Charvat [Tue, 4 Feb 2014 12:29:25 +0000 (13:29 +0100)]
Packages: The version number appended to names of libraries is detected from ucw/default.cfg instead of the tag.
Jan 'Moskyt' Matejka [Thu, 30 Jan 2014 23:50:54 +0000 (00:50 +0100)]
Doc: Moskyto has a homepage
Tomas Valla [Thu, 30 Jan 2014 22:28:54 +0000 (23:28 +0100)]
webpage: Updated for v6.0, author list and feature list.
Martin Mares [Tue, 28 Jan 2014 23:52:40 +0000 (00:52 +0100)]
Debian: Let git describe use unsigned tags, too
Martin Mares [Tue, 28 Jan 2014 23:52:12 +0000 (00:52 +0100)]
API: Include tbf.h and trie.h
Martin Mares [Tue, 28 Jan 2014 23:40:15 +0000 (00:40 +0100)]
Doc: Fixed function references
Martin Mares [Tue, 28 Jan 2014 23:11:37 +0000 (00:11 +0100)]
Release: Use "make install-libucw-docs" to generate documentation
Martin Mares [Tue, 28 Jan 2014 22:14:52 +0000 (23:14 +0100)]
Maint: Automatic uploads of documentation
Martin Mares [Tue, 28 Jan 2014 22:13:49 +0000 (23:13 +0100)]
Doc: Release dates
Martin Mares [Tue, 28 Jan 2014 21:56:32 +0000 (22:56 +0100)]
ABI: Updated symbol renames
Martin Mares [Tue, 28 Jan 2014 21:55:07 +0000 (22:55 +0100)]
Maint: Moved ABI tools to maint/
Martin Mares [Tue, 28 Jan 2014 21:48:47 +0000 (22:48 +0100)]
Doc: Updated the list of contributors
Martin Mares [Tue, 28 Jan 2014 21:39:20 +0000 (22:39 +0100)]
Doc: Documented growing arrays, generic allocators and related things
Martin Mares [Tue, 28 Jan 2014 20:50:04 +0000 (21:50 +0100)]
Introduced generic allocators
The concept of generic allocators, previously used locally in gary's,
turned out to be very promising and applicable to other data structures
in the future.
So I decided to decouple allocators from gary.[ch] and introduce them
to the society of libucw primitives.
<ucw/alloc.h> now provides allocators for malloc and zeroed malloc,
each mempool can also serve as an allocator (the current implementation
has an instance of struct ucw_allocator in each struct mempool, but
it is always accessed through an inline function, so it can be changed
if the overhead is deemed too heavy).
Growing arrays have been redefined in terms of generic allocators.
The realloc module has been merged to alloc.c to keep our malloc
wrappers together.
Martin Mares [Tue, 28 Jan 2014 20:18:48 +0000 (21:18 +0100)]
Conf: Dynamic arrays re-implemented as gary's
To the outside world, almost nothing changes as DARY_LEN is emulated.
However, static initializers are no longer possible, so DARY_ALLOC
is gone.
The current implementation is not elegant. It will be improved soon.
Martin Mares [Tue, 28 Jan 2014 17:28:57 +0000 (18:28 +0100)]
Opt: OPT_MULTIPLE with clists replaced by OPT_CL_MULTIPLE with gary's
Martin Mares [Tue, 28 Jan 2014 17:28:20 +0000 (18:28 +0100)]
Gary: Type-agnostic push
Martin Mares [Tue, 28 Jan 2014 17:00:25 +0000 (18:00 +0100)]
Opt: Document CT_USER with optional values
Martin Mares [Tue, 28 Jan 2014 16:45:31 +0000 (17:45 +0100)]
Opt: User-defined types are specified as CT_USER, not OPT_CL_USER
Martin Mares [Tue, 28 Jan 2014 16:31:28 +0000 (17:31 +0100)]
Gary: Added growing arrays over mempools
Martin Mares [Tue, 28 Jan 2014 16:03:53 +0000 (17:03 +0100)]
Threads: Renamed default_ucwlib_context to ucwlib_default_context
Martin Mares [Tue, 28 Jan 2014 16:03:12 +0000 (17:03 +0100)]
Gary: Symbol renames
Martin Mares [Tue, 28 Jan 2014 16:02:42 +0000 (17:02 +0100)]
API: Introduced exceptions for common mistakes of the symbol mapper
Martin Mares [Tue, 28 Jan 2014 15:51:26 +0000 (16:51 +0100)]
Gary: Gary now works over a general allocator
Zeroed gary's are no longer a special case.
Maybe the same system of allocators could be useful in other
parts of the library, too. Let me know if you have an idea.
Martin Mares [Tue, 28 Jan 2014 15:30:41 +0000 (16:30 +0100)]
Doc: Indentation
Martin Mares [Tue, 28 Jan 2014 15:27:54 +0000 (16:27 +0100)]
Gary: GARY_PUSH and GARY_POP have lost the 2nd argument
Having to tell "yessir, just one element" on each call was just too
inconvenient.
Martin Mares [Tue, 28 Jan 2014 15:13:01 +0000 (16:13 +0100)]
Gary: Remove unused gary_free()
Martin Mares [Mon, 27 Jan 2014 23:51:11 +0000 (00:51 +0100)]
Prepared for release of Libucw 6.0
Martin Mares [Mon, 27 Jan 2014 23:41:02 +0000 (00:41 +0100)]
Opt: Added missing reference
Martin Mares [Mon, 27 Jan 2014 23:39:44 +0000 (00:39 +0100)]
Opt: Forgot to describe help columns
Martin Mares [Mon, 27 Jan 2014 23:24:57 +0000 (00:24 +0100)]
Merge branch 'dev-opt'
Martin Mares [Mon, 27 Jan 2014 23:24:27 +0000 (00:24 +0100)]
Opt: Documented opt and its interaction with conf
Martin Mares [Mon, 27 Jan 2014 20:32:22 +0000 (21:32 +0100)]
Doc: Newer versions of AsciiDoc require [footer-text]
Martin Mares [Mon, 27 Jan 2014 20:03:50 +0000 (21:03 +0100)]
Opt: State of opt-conf moved to opt_context
It gives a better feeling to get rid of magical static variables
in functions :)
Martin Mares [Mon, 27 Jan 2014 19:59:02 +0000 (20:59 +0100)]
Opt: OPT_HELP_OPTION does not need passing pointer to current definitions
I have introduced a new flag OPT_INTERNAL / OPT_HOOK_INTERNAL, which
can be used by internal handlers and hooks to get the pointer to the
current opt_context.
Martin Mares [Mon, 27 Jan 2014 19:45:28 +0000 (20:45 +0100)]
Let <ucw/lib.h> include <stdbool.h> automatically
Martin Mares [Mon, 27 Jan 2014 19:29:04 +0000 (20:29 +0100)]
Opt: TODO cleared
Martin Mares [Mon, 27 Jan 2014 19:28:16 +0000 (20:28 +0100)]
Opt: opt_failure() is public, opt_usage() not so
Martin Mares [Mon, 27 Jan 2014 19:23:18 +0000 (20:23 +0100)]
Opt: Generalization of hooks
Hooks can specify a subset of events they wish to receive.
Helps to get rid of lots of special-casing.
In particular, the end of parsing is also an event, so that we
can load configuration if it has not been loaded yet. (This was
a bug in the original implementation, which never turned up,
because opt-test has mandatory arguments.)
Martin Mares [Mon, 27 Jan 2014 19:05:15 +0000 (20:05 +0100)]
Opt: Cleaned up opt-conf
First of all, the names of configuration options are no longer
fixed. Each of these options has its own handler and as long as
OPT_CONF_HOOK is used, the caller is free to define configuration
options with the names and help texts of his choice.
The same applies to --help.
To achieve these goals, the OPT_BEFORE_CONFIG flag has been
introduced.
Martin Mares [Mon, 27 Jan 2014 18:38:25 +0000 (19:38 +0100)]
Opt: Make OPT_LAST_ARG actually work and document interface of opt_parse()
Martin Mares [Mon, 27 Jan 2014 18:23:30 +0000 (19:23 +0100)]
Opt: Split to three separate modules
One handles parsing, one displaying of help, and one interfaces
with conf.
Martin Mares [Mon, 27 Jan 2014 17:42:01 +0000 (18:42 +0100)]
Opt: Rewritten formatting of help
Previous implementation of opt_help() had several drawbacks:
First, it formatted each section separately, so the columns
did not aligh. Second, it did produced incorrect output for
options which possess only the short form.
I hope that the new implementation is cleaner and easier to extend.
Martin Mares [Mon, 27 Jan 2014 16:18:02 +0000 (17:18 +0100)]
Opt: exit() does not return, no need to call va_end() afterwards
Martin Mares [Mon, 27 Jan 2014 16:13:46 +0000 (17:13 +0100)]
Opt: Simpified and corrected processing of OPT_SINGLE
OPT_SINGLE is now checked in opt_parse_value(). Previously, short,
long, and positional options had their own checks.
OPT_CL_SWITCH did not allow changing the value of the switch once
it is set, although documentation in opt.h claimed quite the opposite.
Changes are currently allowed unless OPT_SINGLE is set.
Test cases have been updated accordingly.
Martin Mares [Mon, 27 Jan 2014 16:03:19 +0000 (17:03 +0100)]
Opt: Fix bug introduced by my cleanups
Martin Mares [Mon, 27 Jan 2014 15:59:13 +0000 (16:59 +0100)]
Opt: Improved reporting of errors
Introduced opt_name() and THIS_OPT, which can be used in error
messages whenever you have a pointer to struct opt_precomputed ready.
Martin Mares [Mon, 27 Jan 2014 15:43:52 +0000 (16:43 +0100)]
Opt: Streamlined opt_parse_value()
Martin Mares [Mon, 27 Jan 2014 15:14:56 +0000 (16:14 +0100)]
Opt: Streamlined parsing of long options
Also, in error messages, we call them options, not arguments.
Martin Mares [Mon, 27 Jan 2014 14:57:32 +0000 (15:57 +0100)]
Opt: Accept arguments for short options even in bundles
Traditional getopt() seems to support this, so we should, too.
Martin Mares [Mon, 27 Jan 2014 14:55:20 +0000 (15:55 +0100)]
Opt: Updated test case
Printing non-ASCII characters for positional arguments is a little
bit crazy, I will hopefully clean it up later.
Martin Mares [Mon, 27 Jan 2014 14:51:47 +0000 (15:51 +0100)]
Opt: Streamlined opt_shortopt()
Also, we reject non-ASCII short options, which enabled us to lower
OPT_POSITIONAL_TAIL to 128 and thus save memory.
Martin Mares [Mon, 27 Jan 2014 14:37:07 +0000 (15:37 +0100)]
Opt: Start of positional arguments is not hard-wired
Martin Mares [Mon, 27 Jan 2014 14:31:03 +0000 (15:31 +0100)]
Opt: Checking of required arguments simplified
Martin Mares [Mon, 27 Jan 2014 14:23:01 +0000 (15:23 +0100)]
Opt: Cosmetics
Martin Mares [Mon, 27 Jan 2014 14:18:47 +0000 (15:18 +0100)]
Opt: Streamlined setting of default options
OPT_ADD_DEFAULT_FLAGS has been replaced by a function,
OPT_ITEM_FLAGS is gone.
Martin Mares [Mon, 27 Jan 2014 14:09:18 +0000 (15:09 +0100)]
Opt: Updated symbol renames
Martin Mares [Mon, 27 Jan 2014 14:04:07 +0000 (15:04 +0100)]
Opt: Simplified preprocessing of options
Replaced OPT_TRAVERSE_SECTIONS by proper recursion.
oc->opts now contains struct opt_precomputed's directly instead
of pointers to them, so that we need not allocate each struct
separately (and leak memory).
Counting of each OPT_CL_BOOL option twice has been removed, I hope
it is not necessary any longer as the "no-" prefix does not need
its own entry.
Martin Mares [Mon, 27 Jan 2014 13:42:58 +0000 (14:42 +0100)]
Opt: Fixed a test case
Pavel Charvat [Wed, 15 Jan 2014 16:08:12 +0000 (17:08 +0100)]
Build: Make sure that we link against the locally compiled dynamic libraries.
Pavel Charvat [Wed, 15 Jan 2014 12:33:15 +0000 (13:33 +0100)]
Merge branch 'master' into dev-opt
Pavel Charvat [Wed, 15 Jan 2014 12:32:05 +0000 (13:32 +0100)]
Packages: Install subset of UCW utilities to /usr/sbin instead of /usr/bin.
Martin Mares [Wed, 15 Jan 2014 11:49:26 +0000 (12:49 +0100)]
Trie: Improved Tom's warning about hell
Pavel Charvat [Tue, 14 Jan 2014 21:15:21 +0000 (22:15 +0100)]
Opt: Merged fixes from Gigamail.
Pavel Charvat [Tue, 14 Jan 2014 19:51:05 +0000 (20:51 +0100)]
Merge branch 'master' into dev-opt
Conflicts:
ucw/ff-varint.c
ucw/varint.c
Pavel Charvat [Tue, 14 Jan 2014 19:48:31 +0000 (20:48 +0100)]
Docs: Checked for problems with common var-len-arrays and alloca() (written by Tom).
Pavel Charvat [Tue, 14 Jan 2014 17:33:41 +0000 (18:33 +0100)]
LibUCW: Fixed a bug in fb-atomic.
Pavel Charvat [Tue, 14 Jan 2014 16:08:32 +0000 (17:08 +0100)]
LibUCW: Added missing includes in <ucw/io.h>
Pavel Charvat [Tue, 14 Jan 2014 16:06:42 +0000 (17:06 +0100)]
Packages: Fixed installation of obsolete ucw-daemon-helper.
Pavel Charvat [Tue, 14 Jan 2014 12:19:58 +0000 (13:19 +0100)]
PCRE regex: Fixed a harmless compilation warning.
Tomas Valla [Tue, 14 Jan 2014 11:33:05 +0000 (12:33 +0100)]
varints: Fixed format strings.
Martin Mares [Tue, 14 Jan 2014 11:13:37 +0000 (12:13 +0100)]
Opt: ABI cleanup
Martin Mares [Tue, 14 Jan 2014 11:11:58 +0000 (12:11 +0100)]
Merge branch 'master' into dev-opt
Conflicts:
ucw/Makefile
Pavel Charvat [Tue, 14 Jan 2014 08:00:05 +0000 (09:00 +0100)]
LibUCW: Fixed a stupid typo in the UCW_DIE_BY_ABORT switch.
Pavel Charvat [Tue, 14 Jan 2014 07:58:15 +0000 (08:58 +0100)]
LibUCW: Implemented UCW_DIE_BY_ABORT environment switch.
Pavel Charvat [Tue, 14 Jan 2014 07:48:14 +0000 (08:48 +0100)]
Packages: install-ucw-sorter-api make target moved into install-libucw-api.
Pavel Charvat [Tue, 7 Jan 2014 15:47:06 +0000 (16:47 +0100)]
Packages: Do not forget to install sorter's API.
Pavel Charvat [Tue, 7 Jan 2014 15:19:51 +0000 (16:19 +0100)]
Packages: Removed customization of SONAME_SUFFIX to simplify Makefiles.
Pavel Charvat [Tue, 7 Jan 2014 15:14:01 +0000 (16:14 +0100)]
Packages: Fixes in custom versioning.
Pavel Charvat [Tue, 7 Jan 2014 15:00:36 +0000 (16:00 +0100)]
Packages: Created debian/tag-release script to easily tag new versions.
Pavel Charvat [Tue, 7 Jan 2014 14:52:15 +0000 (15:52 +0100)]
Packages: Unit tests must be run sequentially (make -j1 tests).
Pavel Charvat [Tue, 7 Jan 2014 13:46:08 +0000 (14:46 +0100)]
Packages: Fixed a typo in Makefile causing unnecessary dependencies.
Pavel Charvat [Tue, 7 Jan 2014 13:41:09 +0000 (14:41 +0100)]
Packages: Added missing dependencies.
Pavel Charvat [Tue, 7 Jan 2014 13:35:04 +0000 (14:35 +0100)]
Packages: Fixed static linking.
Pavel Charvat [Tue, 7 Jan 2014 13:30:53 +0000 (14:30 +0100)]
Packages: pkg-config dependencies moved to Requires.private.
Pavel Charvat [Tue, 7 Jan 2014 13:00:26 +0000 (14:00 +0100)]
Packages: Dependencies on external dynamic libraries are now in pkg-config's Libs.private.
Pavel Charvat [Tue, 7 Jan 2014 12:02:26 +0000 (13:02 +0100)]
Packages: We need to include SONAME symbolic links to shared libraries in packages.
Pavel Charvat [Tue, 7 Jan 2014 09:15:13 +0000 (10:15 +0100)]
Packages: Do not install picstatic version of libs.
But they are still not removed completely from Makefiles and pkgconfig.
Pavel Charvat [Tue, 7 Jan 2014 09:11:17 +0000 (10:11 +0100)]
Merge branch 'dev-api' into dev-package
Conflicts:
default.cfg
Martin Mares [Fri, 3 Jan 2014 15:53:01 +0000 (16:53 +0100)]
Debug: check-configs tries static linking, too
Martin Mares [Fri, 3 Jan 2014 15:52:42 +0000 (16:52 +0100)]
ABI: Fix string.h
Martin Mares [Fri, 3 Jan 2014 15:36:39 +0000 (16:36 +0100)]
ABI: Symbol renames for libimages
Martin Mares [Fri, 3 Jan 2014 15:36:30 +0000 (16:36 +0100)]
Images: Added missing include
Martin Mares [Fri, 3 Jan 2014 15:36:05 +0000 (16:36 +0100)]
Images: Clean up old-style function declarations