/** * @copyright * ==================================================================== * Copyright (c) 2000-2004 CollabNet. All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://subversion.tigris.org/license-1.html. * If newer versions of this license are posted there, you may use a * newer version instead, at your option. * * This software consists of voluntary contributions made by many * individuals. For exact contribution history, see the revision * history and logs, available at http://subversion.tigris.org/. * ==================================================================== * @endcopyright * * @file svn_sorts.h * @brief all sorts of sorts. */ #ifndef SVN_SORTS_H #define SVN_SORTS_H #include #include /* for apr_array_header_t */ #include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** This structure is used to hold a key/value from a hash table. * @note Private. For use by Subversion's own code only. See issue #1644. */ typedef struct svn_sort__item_t { /** pointer to the key */ const void *key; /** size of the key */ apr_ssize_t klen; /** pointer to the value */ void *value; } svn_sort__item_t; /** Compare two @c svn_sort__item_t's, returning an integer greater than, * equal to, or less than 0, according to whether the key of @a a is * greater than, equal to, or less than the key of @a b as determined * by comparing them with svn_path_compare_paths(). * * The key strings must be null-terminated, even though klen does not * include the terminator. * * This is useful for converting a hash into a sorted * @c apr_array_header_t. For example, to convert hash @a hsh to a sorted * array, do this: * *
   apr_array_header_t *hdr;
 *   hdr = svn_sort__hash (hsh, @c svn_sort_compare_items_as_paths, pool);
*/ int svn_sort_compare_items_as_paths(const svn_sort__item_t *a, const svn_sort__item_t *b); /** Compare two @c svn_sort__item_t's, returning an integer greater than, * equal to, or less than 0, according as @a a is greater than, equal to, * or less than @a b according to a lexical key comparison. The keys are * not required to be zero-terminated. */ int svn_sort_compare_items_lexically(const svn_sort__item_t *a, const svn_sort__item_t *b); /** Compare two @c svn_revnum_t's, returning an integer greater than, equal * to, or less than 0, according as @a b is greater than, equal to, or less * than @a a. Note that this sorts newest revision to oldest (IOW, descending * order). * * This function is compatible for use with qsort(). * * This is useful for converting an array of revisions into a sorted * @c apr_array_header_t. You are responsible for detecting, preventing or * removing duplicates. */ int svn_sort_compare_revisions(const void *a, const void *b); /** * Compare two @c const char * paths, returning an integer greater * than, equal to, or less than 0, using the same comparison rules as * are used by svn_path_compare_paths(). * * This function is compatible for use with qsort(). * * @since New in 1.1. */ int svn_sort_compare_paths(const void *a, const void *b); /** Sort @a ht according to its keys, return an @c apr_array_header_t * containing @c svn_sort__item_t structures holding those keys and values * (i.e. for each @c svn_sort__item_t @a item in the returned array, * @a item->key and @a item->size are the hash key, and @a item->data points to * the hash value). * * Storage is shared with the original hash, not copied. * * @a comparison_func should take two @c svn_sort__item_t's and return an * integer greater than, equal to, or less than 0, according as the first item * is greater than, equal to, or less than the second. * * @note Private. For use by Subversion's own code only. See issue #1644. * * @note This function and the @c svn_sort__item_t should go over to APR. */ apr_array_header_t * svn_sort__hash(apr_hash_t *ht, int (*comparison_func)(const svn_sort__item_t *, const svn_sort__item_t *), apr_pool_t *pool); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_SORTS_H */