ALPM API adjustments for sanity and consistency
commitb488f229d2ec4f2e4b9e746d68422460ca664715
authorDan McGee <dan@archlinux.org>
Thu, 2 Feb 2012 05:45:52 +0000 (1 23:45 -0600)
committerDan McGee <dan@archlinux.org>
Mon, 6 Feb 2012 11:49:52 +0000 (6 05:49 -0600)
tree31604f41d7c3780d3b76ac4bb87c10e676a16c54
parentf12effc6ff4605ea81b3b765ff1655107aad29d8
ALPM API adjustments for sanity and consistency

This makes several small adjustments to our exposed method names, and in
one case, parameters. The justification here is to make methods less odd
in their naming convention. If a method takes an alpm_db_t argument, the
method should be named 'alpm_db_*', but perhaps more importantly, if it
doesn't take a database as the first parameter, it should not.

Summary of changes:

    alpm_db_register_sync   -> alpm_register_syncdb
    alpm_db_unregister_all  -> alpm_unregister_all_syncdbs
    alpm_option_get_localdb -> aplpm_get_localdb
    alpm_option_get_syncdbs -> aplpm_get_syncdbs
    alpm_db_readgroup       -> alpm_db_get_group
    alpm_db_set_pkgreason   -> alpm_pkg_set_reason

All methods keep the same argument list except for alpm_pkg_set_reason;
there we drop the 'handle' argument as it can be retrieved from the
passed in package object.

Signed-off-by: Dan McGee <dan@archlinux.org>
16 files changed:
lib/libalpm/alpm.c
lib/libalpm/alpm.h
lib/libalpm/be_local.c
lib/libalpm/db.c
lib/libalpm/handle.c
lib/libalpm/sync.c
src/pacman/conf.c
src/pacman/database.c
src/pacman/deptest.c
src/pacman/query.c
src/pacman/remove.c
src/pacman/sync.c
src/pacman/util.c
src/util/cleanupdelta.c
src/util/pactree.c
src/util/testdb.c