head 1.6; access; symbols last-version-in-peti-style:1.5 callback-semantic-rewrite:1.2.0.2; locks; strict; comment @ * @; 1.6 date 2001.08.08.19.15.27; author rse; state dead; branches; next 1.5; 1.5 date 2001.08.08.09.19.34; author simons; state Exp; branches; next 1.4; 1.4 date 2001.08.02.11.52.12; author simons; state Exp; branches; next 1.3; 1.3 date 2001.08.01.15.25.50; author simons; state Exp; branches; next 1.2; 1.2 date 2001.07.20.09.22.26; author simons; state Exp; branches 1.2.2.1; next 1.1; 1.1 date 2001.07.19.15.13.40; author simons; state Exp; branches; next ; 1.2.2.1 date 2001.08.01.12.02.40; author simons; state Exp; branches; next ; desc @@ 1.6 log @First cut of the ruthless style adjustments to OSSP XDS: o adjust source tree to follow OSSP source tree style by heavily combining sources into smaller sets (needs more work when still missing parts are added later) o automatic re-indentation of sources with GNU indent (still needs manual review and adjustments; will follow) These two heavy steps were mostly done automatically with the help of two helper scripts written in Perl. So expect more manual adjustments to follow... @ text @/* 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" int main() { xds_t* xds; char* buffer; size_t buffer_size; char msg[] = "Hello World"; char* new_msg; /* Encode the string as octet stream. Then erase the buffer and decode the string back, verifying that it hasn't changed. */ xds = xds_init(XDS_ENCODE); if (xds == NULL) { printf("Failed to initialize XDS context.\n"); return 1; } if (xds_register(xds, "string", &xdr_encode_string, NULL) != XDS_OK) { printf("Failed to register my encoding engines.\n"); return 1; } if (xds_encode(xds, "string", msg) != XDS_OK) { printf("xds_encode() failed.\n"); return 1; } if (xds_getbuffer(xds, XDS_GIFT, (void**)&buffer, &buffer_size) != XDS_OK) { printf("xds_getbuffer() failed.\n"); return 1; } xds_destroy(xds); if (buffer_size % 4 != 0) { printf("The encoded strings' buffer size is not a multiple of 4.\n"); return 1; } xds = xds_init(XDS_DECODE); if (xds == NULL) { printf("Failed to initialize XDS context.\n"); return 1; } if (xds_register(xds, "string", &xdr_decode_string, NULL) != XDS_OK) { printf("Failed to register my decoding engines.\n"); return 1; } if (xds_setbuffer(xds, XDS_GIFT, buffer, buffer_size) != XDS_OK) { printf("xds_setbuffer() failed.\n"); return 1; } if (xds_decode(xds, "string", &new_msg) != XDS_OK) { printf("xds_decode() failed.\n"); return 1; } if (strlen(new_msg) != sizeof(msg)-1) { printf("The size of the decoded message is wrong.\n"); return 1; } if (memcmp(msg, new_msg, sizeof(msg)-1) != 0) { printf("The decoded string is not correct.\n"); return 1; } xds_destroy(xds); free(new_msg); /* Everything went fine. */ return 0; } @ 1.5 log @Use sizeof() rather than strlen() to determine the length of fixed strings in the program. @ text @@ 1.4 log @xdr_decode_string() will no longer return the length of the decoded string. Use strlen() to determine that length or use xdr_(en|de)code_octetstream() to begin with. @ text @d93 1 a93 1 if (strlen(new_msg) != strlen(msg)) d98 1 a98 1 if (memcmp(msg, new_msg, strlen(new_msg)) != 0) @ 1.3 log @Merged the whole contents of branch "callback-semantic-rewrite" into the main branch. The changes there include: - A change of the callback semantics; callbacks do now return XDS_ERR_(UNDER|OVER)FLOW in case the buffer size doesn't fit. Rather than passing the differing byte size through the return code, it is stored in the location used_buffer_size points to -- a new parameter provided to all callbacks. In order to implement this, the framework, all callbacks and most of the test suits had to be adapted. - internal.h now provides the macro xds_check_parameter(), which can be used to verify the contents of function parameters with assert() and if in one line. If assert()s are deactivated, the routine will still return XDS_ERR_INVALID_ARG. Because of this change, internal.h now includes the system header assert.h. This means that this include coulde be removed from almost all modules. - internal.h now provides the macros xds_init_(en|de)coding_engine(). These can be used to comfortably verify a callback's parameters and to verify the buffer size. All engines have been rewritten to use these. @ text @a39 1 size_t new_msg_size; d50 1 a50 1 if (xds_register(xds, "os", &xdr_encode_string, NULL) != XDS_OK) d55 1 a55 1 if (xds_encode(xds, "os", msg) != XDS_OK) d78 1 a78 1 if (xds_register(xds, "os", &xdr_decode_string, NULL) != XDS_OK) d88 1 a88 1 if (xds_decode(xds, "os", &new_msg, &new_msg_size) != XDS_OK) d93 1 a93 1 if (new_msg_size != strlen(msg)) d95 1 a95 1 printf("The size of the decoded message is wrong: %d.\n", new_msg_size); d98 1 a98 1 if (memcmp(msg, new_msg, new_msg_size) != 0) @ 1.2 log @People who know how to spell clearly have an advantage. @ text @d99 1 a99 1 if (strncmp(msg, new_msg, new_msg_size) != 0) @ 1.2.2.1 log @Use memcmp() instead of strcmp() because we can't rely on trailing zero bytes. @ text @d99 1 a99 1 if (memcmp(msg, new_msg, new_msg_size) != 0) @ 1.1 log @Implemented XDR encoding and decoding of strings. @ text @d42 1 a42 1 /* Encode the string as octed stream. Then erase the buffer and d69 1 a69 1 printf("The encoded octed stream's buffer size is not a multiple of 4.\n"); d101 1 a101 1 printf("The decoded octed stream is not correct.\n"); @