Index: ossp-pkg/xds/regression-tests/xds-encode.c RCS File: /v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xds-encode.c,v co -q -kk -p'1.5.2.2' '/v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xds-encode.c,v' | diff -u - /dev/null -L'ossp-pkg/xds/regression-tests/xds-encode.c' 2>/dev/null --- ossp-pkg/xds/regression-tests/xds-encode.c +++ /dev/null 2025-04-05 07:51:30.000000000 +0200 @@ -1,119 +0,0 @@ -/* - XDS - OSSP Extensible Data Serialization Library - Copyright (c) 2001 The OSSP Project (http://www.ossp.org/) - Copyright (c) 2001 Cable & Wireless Deutschland (http://www.cw.com/de/) - - This file is part of OSSP XDS, an extensible data serialization - library which can be found at http://www.ossp.com/pkg/xds/. - - Permission to use, copy, modify, and 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. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. -*/ - -#include -#include -#include "../internal.h" - -static int dummy_engine(xds_t* xds, void* engine_context, - void* buffer, size_t buffer_size, size_t* used_buffer_size, - va_list* args) - { - if (xds == NULL) - { - printf("XDS context isn't passed through to registered engine.\n"); - exit(1); - } - if (engine_context != (void*)42) - { - printf("Engine context isn't passed through to registered engine.\n"); - exit(1); - } - if (buffer == NULL) - { - printf("Buffer passed to engine is NULL.\n"); - exit(1); - } - if (buffer_size == 0) - { - printf("buffer_size passed to engine is zero!\n"); - exit(1); - } - if (used_buffer_size == NULL) - { - printf("used_buffer_size pointer passed to engine is NULL!\n"); - exit(1); - } - if (args == NULL) - { - printf("args pointer passed to engine is NULL!\n"); - exit(1); - } - if (buffer_size < 6) - return XDS_ERR_OVERFLOW; - else - *used_buffer_size = 6; - - memmove(buffer, "Hallo ", 6); - return XDS_OK; - } - -int main() - { - xds_t* xds; - - /* Create XDS context. */ - - xds = xds_init(XDS_ENCODE); - if (xds == NULL) - { - printf("Failed to initialize XDS context.\n"); - return 1; - } - - /* Register the dummy callback under multiple names. */ - - if (xds_register(xds, "int", &dummy_engine, (void*)42) != XDS_OK || - xds_register(xds, "float", &dummy_engine, (void*)42) != XDS_OK || - xds_register(xds, "double", &dummy_engine, (void*)42) != XDS_OK || - xds_register(xds, "text", &dummy_engine, (void*)42) != XDS_OK) - { - printf("Failed to register my encoding engines.\n"); - return 1; - } - - /* Let's go and encode something. */ - - if (xds_encode(xds, "int:text double double float") != XDS_OK) - { - printf("xds_encode() failed!\n"); - return 1; - } - if (memcmp(xds->buffer, "Hallo Hallo Hallo Hallo Hallo ", 30) != 0) - { - printf("xds_encode() did not yield the expected result.\n"); - return 1; - } - - /* Clean up. */ - - xds_destroy(xds); - - /* Everything went fine. */ - - return 0; - }