src/ucx/utils.h

Thu, 03 May 2018 10:09:49 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 03 May 2018 10:09:49 +0200
changeset 286
85f55abea563
parent 285
7be3ae7ffb58
child 292
d9abf53b8397
permissions
-rw-r--r--

adds distance functions for integers as utils

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2017 Mike Becker, Olaf Wintermann All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions are met:
     8  *
     9  *   1. Redistributions of source code must retain the above copyright
    10  *      notice, this list of conditions and the following disclaimer.
    11  *
    12  *   2. Redistributions in binary form must reproduce the above copyright
    13  *      notice, this list of conditions and the following disclaimer in the
    14  *      documentation and/or other materials provided with the distribution.
    15  *
    16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26  * POSSIBILITY OF SUCH DAMAGE.
    27  */
    29 /**
    30  * @file utils.h
    31  * 
    32  * Compare, copy and printf functions.
    33  * 
    34  * @author Mike Becker
    35  * @author Olaf Wintermann
    36  */
    38 #ifndef UCX_UTILS_H
    39 #define UCX_UTILS_H
    41 #ifdef __cplusplus
    42 extern "C" {
    43 #endif
    45 #include "ucx.h"
    46 #include "string.h"
    47 #include "allocator.h"
    48 #include <inttypes.h>
    49 #include <string.h>
    50 #include <stdarg.h>
    52 /**
    53  * Default buffer size for ucx_stream_copy() and ucx_stream_ncopy().
    54  */
    55 #define UCX_STREAM_COPY_BUFSIZE 4096
    57 /**
    58  * Copies a string.
    59  * @param s the string to copy
    60  * @param data omitted
    61  * @return a pointer to a copy of s1 that can be passed to free(void*)
    62  */
    63 void *ucx_strcpy(const void *s, void *data);
    65 /**
    66  * Copies a memory area.
    67  * @param m a pointer to the memory area
    68  * @param n a pointer to the size_t containing the size of the memory area
    69  * @return a pointer to a copy of the specified memory area that can
    70  * be passed to free(void*)
    71  */
    72 void *ucx_memcpy(const void *m, void *n);
    75 /**
    76  * Reads data from a stream and writes it to another stream.
    77  * 
    78  * @param src the source stream
    79  * @param dest the destination stream
    80  * @param rfnc the read function
    81  * @param wfnc the write function
    82  * @param buf a pointer to the copy buffer or <code>NULL</code> if a buffer
    83  * shall be implicitly created on the heap
    84  * @param bufsize the size of the copy buffer - if <code>NULL</code> was
    85  * provided for <code>buf</code>, this is the size of the buffer that shall be
    86  * implicitly created
    87  * @param n the maximum number of bytes that shall be copied
    88  * @return the total number of bytes copied
    89   */
    90 size_t ucx_stream_bncopy(void *src, void *dest, read_func rfnc, write_func wfnc,
    91         char* buf, size_t bufsize, size_t n);
    93 /**
    94  * Shorthand for an unbounded ucx_stream_bncopy call using a default buffer.
    95  * 
    96  * @param src the source stream
    97  * @param dest the destination stream
    98  * @param rfnc the read function
    99  * @param wfnc the write function
   100  * @return total number of bytes copied
   101  * 
   102  * @see #UCX_STREAM_COPY_BUFSIZE
   103  */
   104 #define ucx_stream_copy(src,dest,rfnc,wfnc) ucx_stream_bncopy(\
   105         src, dest, (read_func)rfnc, (write_func)wfnc, \
   106         NULL, UCX_STREAM_COPY_BUFSIZE, (size_t)-1)
   108 /**
   109  * Shorthand for ucx_stream_bncopy using a default copy buffer.
   110  * 
   111  * @param src the source stream
   112  * @param dest the destination stream
   113  * @param rfnc the read function
   114  * @param wfnc the write function
   115  * @param n maximum number of bytes that shall be copied
   116  * @return total number of bytes copied
   117  */
   118 #define ucx_stream_ncopy(src,dest,rfnc,wfnc, n) ucx_stream_bncopy(\
   119         src, dest, (read_func)rfnc, (write_func)wfnc, \
   120         NULL, UCX_STREAM_COPY_BUFSIZE, n)
   122 /**
   123  * Shorthand for an unbounded ucx_stream_bncopy call using the specified buffer.
   124  * 
   125  * @param src the source stream
   126  * @param dest the destination stream
   127  * @param rfnc the read function
   128  * @param wfnc the write function
   129  * @param buf a pointer to the copy buffer or <code>NULL</code> if a buffer
   130  * shall be implicitly created on the heap
   131  * @param bufsize the size of the copy buffer - if <code>NULL</code> was
   132  * provided for <code>buf</code>, this is the size of the buffer that shall be
   133  * implicitly created
   134  * @return total number of bytes copied
   135  */
   136 #define ucx_stream_bcopy(src,dest,rfnc,wfnc, buf, bufsize) ucx_stream_bncopy(\
   137         src, dest, (read_func)rfnc, (write_func)wfnc, \
   138         buf, bufsize, (size_t)-1)
   140 /**
   141  * Wraps the strcmp function.
   142  * @param s1 string one
   143  * @param s2 string two
   144  * @param data omitted
   145  * @return the result of strcmp(s1, s2)
   146  */
   147 int ucx_strcmp(const void *s1, const void *s2, void *data);
   149 /**
   150  * Wraps the strncmp function.
   151  * @param s1 string one
   152  * @param s2 string two
   153  * @param n a pointer to the size_t containing the third strncmp parameter
   154  * @return the result of strncmp(s1, s2, *n)
   155  */
   156 int ucx_strncmp(const void *s1, const void *s2, void *n);
   158 /**
   159  * Compares two integers of type int.
   160  * @param i1 pointer to integer one
   161  * @param i2 pointer to integer two
   162  * @param data omitted
   163  * @return -1, if *i1 is less than *i2, 0 if both are equal,
   164  * 1 if *i1 is greater than *i2
   165  */
   166 int ucx_intcmp(const void *i1, const void *i2, void *data);
   168 /**
   169  * Compares two integers of type long int.
   170  * @param i1 pointer to long integer one
   171  * @param i2 pointer to long integer two
   172  * @param data omitted
   173  * @return -1, if *i1 is less than *i2, 0 if both are equal,
   174  * 1 if *i1 is greater than *i2
   175  */
   176 int ucx_longintcmp(const void *i1, const void *i2, void *data);
   179 /**
   180  * Distance function for integers of type int.
   181  * @param i1 pointer to integer one
   182  * @param i2 pointer to integer two
   183  * @param data omitted
   184  * @return i1 minus i2
   185  */
   186 intmax_t ucx_intdist(const void *i1, const void *i2, void *data);
   188 /**
   189  * Distance function for integers of type long int.
   190  * @param i1 pointer to long integer one
   191  * @param i2 pointer to long integer two
   192  * @param data omitted
   193  * @return i1 minus i2
   194  */
   195 intmax_t ucx_longintdist(const void *i1, const void *i2, void *data);
   197 /**
   198  * Compares two real numbers of type float.
   199  * @param f1 pointer to float one
   200  * @param f2 pointer to float two
   201  * @param data if provided: a pointer to precision (default: 1e-6f)
   202  * @return -1, if *f1 is less than *f2, 0 if both are equal,
   203  * 1 if *f1 is greater than *f2
   204  */
   206 int ucx_floatcmp(const void *f1, const void *f2, void *data);
   208 /**
   209  * Compares two real numbers of type double.
   210  * @param d1 pointer to double one
   211  * @param d2 pointer to double two
   212  * @param data if provided: a pointer to precision (default: 1e-14)
   213  * @return -1, if *d1 is less than *d2, 0 if both are equal,
   214  * 1 if *d1 is greater than *d2
   215  */
   216 int ucx_doublecmp(const void *d1, const void *d2, void *data);
   218 /**
   219  * Compares two pointers.
   220  * @param ptr1 pointer one
   221  * @param ptr2 pointer two
   222  * @param data omitted
   223  * @return -1 if ptr1 is less than ptr2, 0 if both are equal,
   224  * 1 if ptr1 is greater than ptr2
   225  */
   226 int ucx_ptrcmp(const void *ptr1, const void *ptr2, void *data);
   228 /**
   229  * Compares two memory areas.
   230  * @param ptr1 pointer one
   231  * @param ptr2 pointer two
   232  * @param n a pointer to the size_t containing the third parameter for memcmp
   233  * @return the result of memcmp(ptr1, ptr2, *n)
   234  */
   235 int ucx_memcmp(const void *ptr1, const void *ptr2, void *n);
   237 /**
   238  * A <code>printf()</code> like function which writes the output to a stream by
   239  * using a write_func().
   240  * @param stream the stream the data is written to
   241  * @param wfc the write function
   242  * @param fmt format string
   243  * @param ... additional arguments
   244  * @return the total number of bytes written
   245  */
   246 int ucx_fprintf(void *stream, write_func wfc, const char *fmt, ...);
   248 /**
   249  * <code>va_list</code> version of ucx_fprintf().
   250  * @param stream the stream the data is written to
   251  * @param wfc the write function
   252  * @param fmt format string
   253  * @param ap argument list
   254  * @return the total number of bytes written
   255  * @see ucx_fprintf()
   256  */
   257 int ucx_vfprintf(void *stream, write_func wfc, const char *fmt, va_list ap);
   259 /**
   260  * A <code>printf()</code> like function which allocates space for a sstr_t
   261  * the result is written to.
   262  * 
   263  * <b>Attention</b>: The sstr_t data is allocated with the allocators
   264  * ucx_allocator_malloc() function. So it is implementation dependent, if
   265  * the returned sstr_t.ptr pointer must be passed to the allocators
   266  * ucx_allocator_free() function manually.
   267  * 
   268  * <b>Note</b>: The sstr_t.ptr of the return value will <i>always</i> be
   269  * <code>NULL</code>-terminated.
   270  * 
   271  * @param allocator the UcxAllocator used for allocating the result sstr_t
   272  * @param fmt format string
   273  * @param ... additional arguments
   274  * @return a sstr_t containing the formatted string
   275  */
   276 sstr_t ucx_asprintf(UcxAllocator *allocator, const char *fmt, ...);
   278 /**
   279  * <code>va_list</code> version of ucx_asprintf().
   280  * 
   281  * @param allocator the UcxAllocator used for allocating the result sstr_t
   282  * @param fmt format string
   283  * @param ap argument list
   284  * @return a sstr_t containing the formatted string
   285  * @see ucx_asprintf()
   286  */
   287 sstr_t ucx_vasprintf(UcxAllocator *allocator, const char *fmt, va_list ap);
   289 /** Shortcut for ucx_asprintf() with default allocator. */
   290 #define ucx_sprintf(...) \
   291     ucx_asprintf(ucx_default_allocator(), __VA_ARGS__)
   293 /**
   294  * A <code>printf()</code> like function which writes the output to a
   295  * UcxBuffer.
   296  * 
   297  * @param buffer the buffer the data is written to
   298  * @param ... format string and additional arguments
   299  * @return the total number of bytes written
   300  * @see ucx_fprintf()
   301  */
   302 #define ucx_bprintf(buffer, ...) ucx_fprintf((UcxBuffer*)buffer, \
   303         (write_func)ucx_buffer_write, __VA_ARGS__)
   305 #ifdef __cplusplus
   306 }
   307 #endif
   309 #endif /* UCX_UTILS_H */

mercurial