ucommon
7.0.0
About: GNU uCommon C++ is a portable and optimized class framework for writing C++ applications that need to use threads and support concurrent synchronization, and that use sockets, XML parsing, object serialization, thread-optimized string and data structure classes, etc..
![]() ![]() |
#include <ucommon-config.h>
#include <ucommon/export.h>
#include <ucommon/cpr.h>
#include <stdexcept>
#include <ucommon/string.h>
#include <ucommon/socket.h>
#include <errno.h>
#include <stdarg.h>
#include <ctype.h>
#include <stdlib.h>
#include <limits.h>
Go to the source code of this file.
Functions | |
void | cpr_runtime_error (const char *str) |
Function to handle runtime errors. More... | |
int | stricmp (const char *s1, const char *s2) |
int | strnicmp (const char *s1, const char *s2, size_t size) |
uint16_t | lsb_getshort (uint8_t *b) |
uint32_t | lsb_getlong (uint8_t *b) |
uint16_t | msb_getshort (uint8_t *b) |
uint32_t | msb_getlong (uint8_t *b) |
void | lsb_setshort (uint8_t *b, uint16_t v) |
void | msb_setshort (uint8_t *b, uint16_t v) |
void | lsb_setlong (uint8_t *b, uint32_t v) |
void | msb_setlong (uint8_t *b, uint32_t v) |
void * | cpr_newp (void **handle, size_t size) |
void | cpr_freep (void **handle) |
void | cpr_memswap (void *s1, void *s2, size_t size) |
Portable swap code. More... | |
void * | cpr_memalloc (size_t size) |
Portable memory allocation helper function. More... | |
void * | cpr_memassign (size_t size, caddr_t addr, size_t max) |
Portable memory placement helper function. More... | |
void * cpr_memalloc | ( | size_t | size | ) |
void * cpr_memassign | ( | size_t | size, |
caddr_t | address, | ||
size_t | known | ||
) |
Portable memory placement helper function.
This is used to process "placement" new operators where a new object is constructed over a pre-allocated area of memory. This handles invalid values through runtime error.
size | of object being constructed. |
address | where the object is being placed. |
known | size of the location we are constructing the object in. |
void cpr_memswap | ( | void * | mem1, |
void * | mem2, | ||
size_t | size | ||
) |
Portable swap code.
mem1 | to swap. |
mem2 | to swap. |
size | of swap area. |
Definition at line 193 of file cpr.cpp.
Referenced by ucommon::swap().
void * cpr_newp | ( | void ** | handle, |
size_t | size | ||
) |
void cpr_runtime_error | ( | const char * | text | ) |
Function to handle runtime errors.
When using the standard C library, runtime errors are handled by a simple abort. When using the stdc++ library with stdexcept, then std::runtime_error will be thrown.
text | of runtime error. |
Definition at line 83 of file cpr.cpp.
Referenced by ucommon::shell::log(), and ucommon::shell::security().
uint32_t lsb_getlong | ( | uint8_t * | b | ) |
void lsb_setlong | ( | uint8_t * | b, |
uint32_t | v | ||
) |
Definition at line 157 of file cpr.cpp.
Referenced by encodefile().
int stricmp | ( | const char * | s1, |
const char * | s2 | ||
) |
Definition at line 95 of file cpr.cpp.
References stricmp().
Referenced by ucommon::String::eq_case(), ost::MapTable::getObject(), ost::DSO::getObject(), ost::Assoc::getPointer(), ost::Slog::open(), ost::IPV4Address::setAddress(), and stricmp().
int strnicmp | ( | const char * | s1, |
const char * | s2, | ||
size_t | size | ||
) |
Definition at line 104 of file cpr.cpp.
References strnicmp().
Referenced by ucommon::String::eq_case(), ucommon::String::ifind(), ucommon::fsys::is_device(), ost::XMLParser::parseTag(), and strnicmp().