diff options
Diffstat (limited to 'libs/util')
36 files changed, 2554 insertions, 0 deletions
diff --git a/libs/util/.dep.inc b/libs/util/.dep.inc new file mode 100644 index 0000000..4560e55 --- /dev/null +++ b/libs/util/.dep.inc @@ -0,0 +1,5 @@ +# This code depends on make tool being used +DEPFILES=$(wildcard $(addsuffix .d, ${OBJECTFILES})) +ifneq (${DEPFILES},) +include ${DEPFILES} +endif diff --git a/libs/util/Makefile b/libs/util/Makefile new file mode 100644 index 0000000..ec9de69 --- /dev/null +++ b/libs/util/Makefile @@ -0,0 +1,128 @@ +# +# There exist several targets which are by default empty and which can be +# used for execution of your targets. These targets are usually executed +# before and after some main targets. They are: +# +# .build-pre: called before 'build' target +# .build-post: called after 'build' target +# .clean-pre: called before 'clean' target +# .clean-post: called after 'clean' target +# .clobber-pre: called before 'clobber' target +# .clobber-post: called after 'clobber' target +# .all-pre: called before 'all' target +# .all-post: called after 'all' target +# .help-pre: called before 'help' target +# .help-post: called after 'help' target +# +# Targets beginning with '.' are not intended to be called on their own. +# +# Main targets can be executed directly, and they are: +# +# build build a specific configuration +# clean remove built files from a configuration +# clobber remove all built files +# all build all configurations +# help print help mesage +# +# Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and +# .help-impl are implemented in nbproject/makefile-impl.mk. +# +# Available make variables: +# +# CND_BASEDIR base directory for relative paths +# CND_DISTDIR default top distribution directory (build artifacts) +# CND_BUILDDIR default top build directory (object files, ...) +# CONF name of current configuration +# CND_PLATFORM_${CONF} platform name (current configuration) +# CND_ARTIFACT_DIR_${CONF} directory of build artifact (current configuration) +# CND_ARTIFACT_NAME_${CONF} name of build artifact (current configuration) +# CND_ARTIFACT_PATH_${CONF} path to build artifact (current configuration) +# CND_PACKAGE_DIR_${CONF} directory of package (current configuration) +# CND_PACKAGE_NAME_${CONF} name of package (current configuration) +# CND_PACKAGE_PATH_${CONF} path to package (current configuration) +# +# NOCDDL + + +# Environment +MKDIR=mkdir +CP=cp +CCADMIN=CCadmin + + +# build +build: .build-post + +.build-pre: +# Add your pre 'build' code here... + +.build-post: .build-impl +# Add your post 'build' code here... + + +# clean +clean: .clean-post + +.clean-pre: +# Add your pre 'clean' code here... + +.clean-post: .clean-impl +# Add your post 'clean' code here... + + +# clobber +clobber: .clobber-post + +.clobber-pre: +# Add your pre 'clobber' code here... + +.clobber-post: .clobber-impl +# Add your post 'clobber' code here... + + +# all +all: .all-post + +.all-pre: +# Add your pre 'all' code here... + +.all-post: .all-impl +# Add your post 'all' code here... + + +# build tests +build-tests: .build-tests-post + +.build-tests-pre: +# Add your pre 'build-tests' code here... + +.build-tests-post: .build-tests-impl +# Add your post 'build-tests' code here... + + +# run tests +test: .test-post + +.test-pre: +# Add your pre 'test' code here... + +.test-post: .test-impl +# Add your post 'test' code here... + + +# help +help: .help-post + +.help-pre: +# Add your pre 'help' code here... + +.help-post: .help-impl +# Add your post 'help' code here... + + + +# include project implementation makefile +include nbproject/Makefile-impl.mk + +# include project make variables +include nbproject/Makefile-variables.mk diff --git a/libs/util/include/AbstractListAssembler.h b/libs/util/include/AbstractListAssembler.h new file mode 100644 index 0000000..1e547e4 --- /dev/null +++ b/libs/util/include/AbstractListAssembler.h @@ -0,0 +1,49 @@ +/** + * ======================== legal notice ====================== + * + * File: AbstractListAssembler.h + * Created: 6. Juli 2012, 09:38 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef ABSTRACTLISTASSEMBLER_H +#define ABSTRACTLISTASSEMBLER_H + +#include <sys/types.h> +#include <map> + +class cStringBuilder; +class cManagedVector; +class cAbstractListAssembler { +public: + cAbstractListAssembler(); + virtual ~cAbstractListAssembler(); + + bool AssembleList(cStringBuilder &sb, cManagedVector &ElemVector, std::map<int, size_t> &Categories, size_t start = 0, uint delta = 40); + + virtual const char *MediaType(void) const = 0; + +protected: + virtual bool OpenList(cStringBuilder &sb, std::map<int, size_t> &Categories, size_t total, size_t start = 0, uint delta = 40) = 0; + virtual bool AddElement(cStringBuilder &sb, void *, bool odd) = 0; + virtual bool CloseList(cStringBuilder &sb, size_t total, size_t start = 0, uint delta = 40) = 0; +}; + +#endif /* ABSTRACTLISTASSEMBLER_H */ + diff --git a/libs/util/include/Codec.h b/libs/util/include/Codec.h new file mode 100644 index 0000000..80352d7 --- /dev/null +++ b/libs/util/include/Codec.h @@ -0,0 +1,92 @@ +/** + * ======================== legal notice ====================== + * + * File: Codec.h + * Created: 21. Mai 2012, 14:00 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef CODEC_H +#define CODEC_H + +#include <stddef.h> + +class cCodec { +///< base class for simple (character based) encoding/decoding +public: + cCodec(const char *Table, char KeyChar = '#'); + virtual ~cCodec(); + char KeyChar() const { return keyChar; } + const char *TranslateTable() const { return translateTable; } + virtual size_t DecodeSequence(unsigned char *d, unsigned char *s); + +protected: + char *translateTable; + char keyChar; + }; + +class cEncoder : public cCodec { +public: + cEncoder(char SpecialChar = '#', const char *TrTable = "0123456789ABCDEF"); + virtual ~cEncoder(); + char *Encode(const char *Source, size_t SourceLength = 0); ///< encode Source, + ///< optionally limited by SourceLength (default is to encode a 0-terminated cstring) + }; + +class cURLEncoder : public cEncoder { +public: + cURLEncoder(); + virtual ~cURLEncoder(); + }; + +class cDecoder : public cCodec { +public: + cDecoder(char KeyChar = '#', const char *TrTable = "0123456789ABCDEF"); + virtual ~cDecoder(); + char *Decode(const char *Source, size_t SourceLength = 0); ///< decode Source, + ///< optionally limited by SourceLength (default is to decode a 0-terminated cstring) + virtual size_t DecodeSequence(unsigned char *d, unsigned char *s); + }; + +class cURLDecoder : public cDecoder { +public: + cURLDecoder(); + virtual ~cURLDecoder(); + }; + +class cHexEncoder : public cEncoder { +public: + cHexEncoder(); + virtual ~cHexEncoder(); + char *Encode(const unsigned char* Source, size_t SourceLength = 0); + }; + +class cHexDecoder : public cDecoder { +public: + cHexDecoder(); + virtual ~cHexDecoder(); + char *Decode(const char *Source, size_t SourceLength = 0); + }; + +extern cHexEncoder * getHexEncoder(void); +extern cHexDecoder * getHexDecoder(void); +extern void codecCleanUp(void); + +#endif /* CODEC_H */ + diff --git a/libs/util/include/JSonWriter.h b/libs/util/include/JSonWriter.h new file mode 100644 index 0000000..732daec --- /dev/null +++ b/libs/util/include/JSonWriter.h @@ -0,0 +1,64 @@ +/** + * ======================== legal notice ====================== + * + * File: JSonWriter.h + * Created: 6. Juli 2012, 12:47 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef JSONWRITER_H +#define JSONWRITER_H + +#include <stack> +#include <StringBuilder.h> + +class cJSonWriter { +public: + cJSonWriter(cStringBuilder &StringBuilder); + virtual ~cJSonWriter(); + + cJSonWriter &Object(void); + cJSonWriter &EndObject(void); + cJSonWriter &Array(void); + cJSonWriter &EndArray(void); + cJSonWriter &Key(const char *Name); + cJSonWriter &Value(const char *Text); + cJSonWriter &Value(int v); + cJSonWriter &Value(long v); + cJSonWriter &Value(size_t v); + cJSonWriter &Value(bool v); + cJSonWriter &Value(double v); + +private: + typedef enum { + JS_Unknown, + JS_Object, + JS_Array, + JS_Key + } JSonState; + cJSonWriter::JSonState State(void); + void PushState(JSonState State); + cJSonWriter::JSonState PopState(void); + std::stack<JSonState> state; + JSonState lastState; + cStringBuilder &sb; +}; + +#endif /* JSONWRITER_H */ + diff --git a/libs/util/include/MD5Calculator.h b/libs/util/include/MD5Calculator.h new file mode 100644 index 0000000..400aba1 --- /dev/null +++ b/libs/util/include/MD5Calculator.h @@ -0,0 +1,45 @@ +/** + * ======================== legal notice ====================== + * + * File: MD5Calculator.h + * Created: 3. Juli 2012, 13:15 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef MD5CALCULATOR_H +#define MD5CALCULATOR_H + +#include <openssl/md5.h> + +class cMD5Calculator { +public: + cMD5Calculator(); + virtual ~cMD5Calculator(); + + void AddContent(const char *Buf, size_t bufSize = 0); + + char *Hash(void); + void Reset(void); + +private: + MD5_CTX context; + }; + +#endif /* MD5CALCULATOR_H */ + diff --git a/libs/util/include/ManagedMap.h b/libs/util/include/ManagedMap.h new file mode 100644 index 0000000..c71de85 --- /dev/null +++ b/libs/util/include/ManagedMap.h @@ -0,0 +1,55 @@ +/** + * ======================== legal notice ====================== + * + * File: ManagedMap.h + * Created: 7. Juli 2012, 08:28 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef MANAGEDMAP_H +#define MANAGEDMAP_H + +#include <string> +#include <tr1/unordered_map> + +class cManagedMap { +public: + typedef std::tr1::unordered_map<std::string, void *>::const_iterator const_iterator; + + cManagedMap(void (*cbFreeElem)(void *)); + virtual ~cManagedMap(); + + void clear(void); + void put(const char *key, void *value); + void *get(const char *key); + const void *get(const char *key) const; + size_t size(void) { return internalMap.size(); } + + const_iterator begin() const { return internalMap.begin(); } + const_iterator end() const { return internalMap.end(); } + +private: + std::tr1::unordered_map<std::string, void *> internalMap; + void (*freeCallback)(void *); + typedef std::tr1::unordered_map<std::string, void *>::iterator iterator; +}; + + +#endif /* MANAGEDMAP_H */ + diff --git a/libs/util/include/ManagedVector.h b/libs/util/include/ManagedVector.h new file mode 100644 index 0000000..7fa7af2 --- /dev/null +++ b/libs/util/include/ManagedVector.h @@ -0,0 +1,49 @@ +/** + * ======================== legal notice ====================== + * + * File: ManagedVector.h + * Created: 6. Juli 2012, 19:07 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef MANAGEDVECTOR_H +#define MANAGEDVECTOR_H + +#include <vector> +#include <stdlib.h> + +class cManagedVector { +public: + cManagedVector(void (*cbFreeElem)(void *)); + virtual ~cManagedVector(); + + void clear(void); + void push_back(void *p) { internalVector.push_back(p); } + void *operator[](size_t n) { return internalVector[n]; } + const void *operator[](size_t n) const { return internalVector[n]; } + size_t size(void) const { return internalVector.size(); } + void sort(bool (*fnSort)(void *a, void *b)); + +private: + std::vector<void *> internalVector; + void (*freeCallback)(void *); + }; + +#endif /* MANAGEDVECTOR_H */ + diff --git a/libs/util/include/NamedValue.h b/libs/util/include/NamedValue.h new file mode 100644 index 0000000..329061d --- /dev/null +++ b/libs/util/include/NamedValue.h @@ -0,0 +1,51 @@ +/** + * ======================== legal notice ====================== + * + * File: NamedValue.h + * Created: 3. Juli 2012, 17:43 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef NAMEDVALUE_H +#define NAMEDVALUE_H + +#include <stddef.h> +#include <string.h> +#include <stdlib.h> +#include <vector> + +class cNamedValue { +public: + cNamedValue(char *Name, char *Value = NULL, bool takePointers = false); + cNamedValue(const char *Name, const char *Value = NULL); + cNamedValue(const cNamedValue &other); + virtual ~cNamedValue(); + cNamedValue &operator =(const cNamedValue &other); + + const char *Name() const { return name; } + const char *Value() const { return value; } + void SetValue(const char *Value) { free(value); value = strdup(Value); } + +private: + char *name; + char *value; + }; + +#endif /* NAMEDVALUE_H */ + diff --git a/libs/util/include/StringBuilder.h b/libs/util/include/StringBuilder.h new file mode 100644 index 0000000..aea9975 --- /dev/null +++ b/libs/util/include/StringBuilder.h @@ -0,0 +1,60 @@ +/** + * ======================== legal notice ====================== + * + * File: StringBuilder.h + * Created: 6. Juli 2012, 10:54 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef STRINGBUILDER_H +#define STRINGBUILDER_H + +#include <ManagedVector.h> +#include <time.h> + +class cStringBuilder { +public: + cStringBuilder(const char *First); + cStringBuilder(int chunkSize = 127); + virtual ~cStringBuilder(); + + cStringBuilder &Append(const char *Text); + cStringBuilder &Append(bool v, const char *TrueValue = "X", const char *FalseValue="-"); + cStringBuilder &Append(double v); + cStringBuilder &Append(int v); + cStringBuilder &Append(long v); + cStringBuilder &Append(size_t s); + + void Clear(void); + size_t Size(void); + size_t Size(void) const; + void Rewind(void) { readOffset = 0; } + size_t Copy(char *Buf, size_t BufSize); + +private: + void init(void); + void Write(const char *p); + int chunkSize; + size_t readOffset; ///< read offest is the offset over all chunks (thus goes from 0 to size) + int writeOffset; ///< write offset is the offset inside the last chunk (thus goes from 0 to chunkSize) + cManagedVector pool; + }; + +#endif /* STRINGBUILDER_H */ + diff --git a/libs/util/include/util.h b/libs/util/include/util.h new file mode 100644 index 0000000..2b355cc --- /dev/null +++ b/libs/util/include/util.h @@ -0,0 +1,38 @@ +/** + * ======================== legal notice ====================== + * + * File: util.h + * Created: 3. Juli 2012, 13:00 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#ifndef UTIL_H +#define UTIL_H + +#include <stdlib.h> +#define FREE(m) { void *_tmp_ = m; m = NULL; free(_tmp_); } +#define TO_STRING(s) #s +#define EVER ;; + +extern const char * skipWhitespace(const char *Buffer); +extern const char *getWord(char *buf, int bufSize, const char *src); +extern const char *restOfLine(char *buf, int bufSize, const char *src); + +#endif /* UTIL_H */ + diff --git a/libs/util/nbproject/Makefile-Debug.mk b/libs/util/nbproject/Makefile-Debug.mk new file mode 100644 index 0000000..f9f3a3c --- /dev/null +++ b/libs/util/nbproject/Makefile-Debug.mk @@ -0,0 +1,133 @@ +# +# Generated Makefile - do not edit! +# +# Edit the Makefile in the project folder instead (../Makefile). Each target +# has a -pre and a -post target defined where you can add customized code. +# +# This makefile implements configuration specific macros and targets. + + +# Environment +MKDIR=mkdir +CP=cp +GREP=grep +NM=nm +CCADMIN=CCadmin +RANLIB=ranlib +CC=gcc +CCC=g++ +CXX=g++ +FC=gfortran +AS=as + +# Macros +CND_PLATFORM=GNU-Linux-x86 +CND_CONF=Debug +CND_DISTDIR=dist +CND_BUILDDIR=build + +# Include project Makefile +include Makefile + +# Object Directory +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM} + +# Object Files +OBJECTFILES= \ + ${OBJECTDIR}/src/JSonWriter.o \ + ${OBJECTDIR}/src/StringBuilder.o \ + ${OBJECTDIR}/src/MD5Calculator.o \ + ${OBJECTDIR}/src/AbstractListAssembler.o \ + ${OBJECTDIR}/src/ManagedMap.o \ + ${OBJECTDIR}/src/Codec.o \ + ${OBJECTDIR}/src/ManagedVector.o \ + ${OBJECTDIR}/src/NamedValue.o \ + ${OBJECTDIR}/src/util.o + + +# C Compiler Flags +CFLAGS= + +# CC Compiler Flags +CCFLAGS=-std=gnu++0x -fomit-frame-pointer -fPIC -pthread -Wall -Wno-parentheses -Wno-switch -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wwrite-strings -Wtype-limits -Wundef -fno-math-errno -fno-signed-zeros -fno-tree-vectorize -Werror=implicit-function-declaration -ansi +CXXFLAGS=-std=gnu++0x -fomit-frame-pointer -fPIC -pthread -Wall -Wno-parentheses -Wno-switch -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wwrite-strings -Wtype-limits -Wundef -fno-math-errno -fno-signed-zeros -fno-tree-vectorize -Werror=implicit-function-declaration -ansi + +# Fortran Compiler Flags +FFLAGS= + +# Assembler Flags +ASFLAGS= + +# Link Libraries and Options +LDLIBSOPTIONS= + +# Build Targets +.build-conf: ${BUILD_SUBPROJECTS} + "${MAKE}" -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a: ${OBJECTFILES} + ${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM} + ${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + ${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a ${OBJECTFILES} + $(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + +${OBJECTDIR}/src/JSonWriter.o: nbproject/Makefile-${CND_CONF}.mk src/JSonWriter.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/JSonWriter.o src/JSonWriter.cc + +${OBJECTDIR}/src/StringBuilder.o: nbproject/Makefile-${CND_CONF}.mk src/StringBuilder.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/StringBuilder.o src/StringBuilder.cc + +${OBJECTDIR}/src/MD5Calculator.o: nbproject/Makefile-${CND_CONF}.mk src/MD5Calculator.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/MD5Calculator.o src/MD5Calculator.cc + +${OBJECTDIR}/src/AbstractListAssembler.o: nbproject/Makefile-${CND_CONF}.mk src/AbstractListAssembler.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/AbstractListAssembler.o src/AbstractListAssembler.cc + +${OBJECTDIR}/src/ManagedMap.o: nbproject/Makefile-${CND_CONF}.mk src/ManagedMap.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/ManagedMap.o src/ManagedMap.cc + +${OBJECTDIR}/src/Codec.o: nbproject/Makefile-${CND_CONF}.mk src/Codec.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/Codec.o src/Codec.cc + +${OBJECTDIR}/src/ManagedVector.o: nbproject/Makefile-${CND_CONF}.mk src/ManagedVector.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/ManagedVector.o src/ManagedVector.cc + +${OBJECTDIR}/src/NamedValue.o: nbproject/Makefile-${CND_CONF}.mk src/NamedValue.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/NamedValue.o src/NamedValue.cc + +${OBJECTDIR}/src/util.o: nbproject/Makefile-${CND_CONF}.mk src/util.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -g -Wall -D_GNU_SOURCE=1 -D_REENTRANT -Iinclude -I../vdr/include -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/util.o src/util.cc + +# Subprojects +.build-subprojects: + +# Clean Targets +.clean-conf: ${CLEAN_SUBPROJECTS} + ${RM} -r ${CND_BUILDDIR}/${CND_CONF} + ${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + +# Subprojects +.clean-subprojects: + +# Enable dependency checking +.dep.inc: .depcheck-impl + +include .dep.inc diff --git a/libs/util/nbproject/Makefile-Release.mk b/libs/util/nbproject/Makefile-Release.mk new file mode 100644 index 0000000..29f37c3 --- /dev/null +++ b/libs/util/nbproject/Makefile-Release.mk @@ -0,0 +1,133 @@ +# +# Generated Makefile - do not edit! +# +# Edit the Makefile in the project folder instead (../Makefile). Each target +# has a -pre and a -post target defined where you can add customized code. +# +# This makefile implements configuration specific macros and targets. + + +# Environment +MKDIR=mkdir +CP=cp +GREP=grep +NM=nm +CCADMIN=CCadmin +RANLIB=ranlib +CC=gcc +CCC=g++ +CXX=g++ +FC=gfortran +AS=as + +# Macros +CND_PLATFORM=GNU-Linux-x86 +CND_CONF=Release +CND_DISTDIR=dist +CND_BUILDDIR=build + +# Include project Makefile +include Makefile + +# Object Directory +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM} + +# Object Files +OBJECTFILES= \ + ${OBJECTDIR}/src/JSonWriter.o \ + ${OBJECTDIR}/src/StringBuilder.o \ + ${OBJECTDIR}/src/MD5Calculator.o \ + ${OBJECTDIR}/src/AbstractListAssembler.o \ + ${OBJECTDIR}/src/ManagedMap.o \ + ${OBJECTDIR}/src/Codec.o \ + ${OBJECTDIR}/src/ManagedVector.o \ + ${OBJECTDIR}/src/NamedValue.o \ + ${OBJECTDIR}/src/util.o + + +# C Compiler Flags +CFLAGS= + +# CC Compiler Flags +CCFLAGS= +CXXFLAGS= + +# Fortran Compiler Flags +FFLAGS= + +# Assembler Flags +ASFLAGS= + +# Link Libraries and Options +LDLIBSOPTIONS= + +# Build Targets +.build-conf: ${BUILD_SUBPROJECTS} + "${MAKE}" -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a: ${OBJECTFILES} + ${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM} + ${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + ${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a ${OBJECTFILES} + $(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + +${OBJECTDIR}/src/JSonWriter.o: nbproject/Makefile-${CND_CONF}.mk src/JSonWriter.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/JSonWriter.o src/JSonWriter.cc + +${OBJECTDIR}/src/StringBuilder.o: nbproject/Makefile-${CND_CONF}.mk src/StringBuilder.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/StringBuilder.o src/StringBuilder.cc + +${OBJECTDIR}/src/MD5Calculator.o: nbproject/Makefile-${CND_CONF}.mk src/MD5Calculator.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/MD5Calculator.o src/MD5Calculator.cc + +${OBJECTDIR}/src/AbstractListAssembler.o: nbproject/Makefile-${CND_CONF}.mk src/AbstractListAssembler.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/AbstractListAssembler.o src/AbstractListAssembler.cc + +${OBJECTDIR}/src/ManagedMap.o: nbproject/Makefile-${CND_CONF}.mk src/ManagedMap.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/ManagedMap.o src/ManagedMap.cc + +${OBJECTDIR}/src/Codec.o: nbproject/Makefile-${CND_CONF}.mk src/Codec.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/Codec.o src/Codec.cc + +${OBJECTDIR}/src/ManagedVector.o: nbproject/Makefile-${CND_CONF}.mk src/ManagedVector.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/ManagedVector.o src/ManagedVector.cc + +${OBJECTDIR}/src/NamedValue.o: nbproject/Makefile-${CND_CONF}.mk src/NamedValue.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/NamedValue.o src/NamedValue.cc + +${OBJECTDIR}/src/util.o: nbproject/Makefile-${CND_CONF}.mk src/util.cc + ${MKDIR} -p ${OBJECTDIR}/src + ${RM} $@.d + $(COMPILE.cc) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/src/util.o src/util.cc + +# Subprojects +.build-subprojects: + +# Clean Targets +.clean-conf: ${CLEAN_SUBPROJECTS} + ${RM} -r ${CND_BUILDDIR}/${CND_CONF} + ${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a + +# Subprojects +.clean-subprojects: + +# Enable dependency checking +.dep.inc: .depcheck-impl + +include .dep.inc diff --git a/libs/util/nbproject/Makefile-impl.mk b/libs/util/nbproject/Makefile-impl.mk new file mode 100644 index 0000000..20dba1a --- /dev/null +++ b/libs/util/nbproject/Makefile-impl.mk @@ -0,0 +1,133 @@ +# +# Generated Makefile - do not edit! +# +# Edit the Makefile in the project folder instead (../Makefile). Each target +# has a pre- and a post- target defined where you can add customization code. +# +# This makefile implements macros and targets common to all configurations. +# +# NOCDDL + + +# Building and Cleaning subprojects are done by default, but can be controlled with the SUB +# macro. If SUB=no, subprojects will not be built or cleaned. The following macro +# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf +# and .clean-reqprojects-conf unless SUB has the value 'no' +SUB_no=NO +SUBPROJECTS=${SUB_${SUB}} +BUILD_SUBPROJECTS_=.build-subprojects +BUILD_SUBPROJECTS_NO= +BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}} +CLEAN_SUBPROJECTS_=.clean-subprojects +CLEAN_SUBPROJECTS_NO= +CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}} + + +# Project Name +PROJECTNAME=util + +# Active Configuration +DEFAULTCONF=Debug +CONF=${DEFAULTCONF} + +# All Configurations +ALLCONFS=Debug Release + + +# build +.build-impl: .build-pre .validate-impl .depcheck-impl + @#echo "=> Running $@... Configuration=$(CONF)" + "${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf + + +# clean +.clean-impl: .clean-pre .validate-impl .depcheck-impl + @#echo "=> Running $@... Configuration=$(CONF)" + "${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf + + +# clobber +.clobber-impl: .clobber-pre .depcheck-impl + @#echo "=> Running $@..." + for CONF in ${ALLCONFS}; \ + do \ + "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf; \ + done + +# all +.all-impl: .all-pre .depcheck-impl + @#echo "=> Running $@..." + for CONF in ${ALLCONFS}; \ + do \ + "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf; \ + done + +# build tests +.build-tests-impl: .build-impl .build-tests-pre + @#echo "=> Running $@... Configuration=$(CONF)" + "${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-tests-conf + +# run tests +.test-impl: .build-tests-impl .test-pre + @#echo "=> Running $@... Configuration=$(CONF)" + "${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .test-conf + +# dependency checking support +.depcheck-impl: + @echo "# This code depends on make tool being used" >.dep.inc + @if [ -n "${MAKE_VERSION}" ]; then \ + echo "DEPFILES=\$$(wildcard \$$(addsuffix .d, \$${OBJECTFILES}))" >>.dep.inc; \ + echo "ifneq (\$${DEPFILES},)" >>.dep.inc; \ + echo "include \$${DEPFILES}" >>.dep.inc; \ + echo "endif" >>.dep.inc; \ + else \ + echo ".KEEP_STATE:" >>.dep.inc; \ + echo ".KEEP_STATE_FILE:.make.state.\$${CONF}" >>.dep.inc; \ + fi + +# configuration validation +.validate-impl: + @if [ ! -f nbproject/Makefile-${CONF}.mk ]; \ + then \ + echo ""; \ + echo "Error: can not find the makefile for configuration '${CONF}' in project ${PROJECTNAME}"; \ + echo "See 'make help' for details."; \ + echo "Current directory: " `pwd`; \ + echo ""; \ + fi + @if [ ! -f nbproject/Makefile-${CONF}.mk ]; \ + then \ + exit 1; \ + fi + + +# help +.help-impl: .help-pre + @echo "This makefile supports the following configurations:" + @echo " ${ALLCONFS}" + @echo "" + @echo "and the following targets:" + @echo " build (default target)" + @echo " clean" + @echo " clobber" + @echo " all" + @echo " help" + @echo "" + @echo "Makefile Usage:" + @echo " make [CONF=<CONFIGURATION>] [SUB=no] build" + @echo " make [CONF=<CONFIGURATION>] [SUB=no] clean" + @echo " make [SUB=no] clobber" + @echo " make [SUB=no] all" + @echo " make help" + @echo "" + @echo "Target 'build' will build a specific configuration and, unless 'SUB=no'," + @echo " also build subprojects." + @echo "Target 'clean' will clean a specific configuration and, unless 'SUB=no'," + @echo " also clean subprojects." + @echo "Target 'clobber' will remove all built files from all configurations and," + @echo " unless 'SUB=no', also from subprojects." + @echo "Target 'all' will will build all configurations and, unless 'SUB=no'," + @echo " also build subprojects." + @echo "Target 'help' prints this message." + @echo "" + diff --git a/libs/util/nbproject/Makefile-variables.mk b/libs/util/nbproject/Makefile-variables.mk new file mode 100644 index 0000000..97c386e --- /dev/null +++ b/libs/util/nbproject/Makefile-variables.mk @@ -0,0 +1,35 @@ +# +# Generated - do not edit! +# +# NOCDDL +# +CND_BASEDIR=`pwd` +CND_BUILDDIR=build +CND_DISTDIR=dist +# Debug configuration +CND_PLATFORM_Debug=GNU-Linux-x86 +CND_ARTIFACT_DIR_Debug=dist/Debug/GNU-Linux-x86 +CND_ARTIFACT_NAME_Debug=libutil.a +CND_ARTIFACT_PATH_Debug=dist/Debug/GNU-Linux-x86/libutil.a +CND_PACKAGE_DIR_Debug=dist/Debug/GNU-Linux-x86/package +CND_PACKAGE_NAME_Debug=util.tar +CND_PACKAGE_PATH_Debug=dist/Debug/GNU-Linux-x86/package/util.tar +# Release configuration +CND_PLATFORM_Release=GNU-Linux-x86 +CND_ARTIFACT_DIR_Release=dist/Release/GNU-Linux-x86 +CND_ARTIFACT_NAME_Release=libutil.a +CND_ARTIFACT_PATH_Release=dist/Release/GNU-Linux-x86/libutil.a +CND_PACKAGE_DIR_Release=dist/Release/GNU-Linux-x86/package +CND_PACKAGE_NAME_Release=util.tar +CND_PACKAGE_PATH_Release=dist/Release/GNU-Linux-x86/package/util.tar +# +# include compiler specific variables +# +# dmake command +ROOT:sh = test -f nbproject/private/Makefile-variables.mk || \ + (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk) +# +# gmake command +.PHONY: $(shell test -f nbproject/private/Makefile-variables.mk || (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk)) +# +include nbproject/private/Makefile-variables.mk diff --git a/libs/util/nbproject/Package-Debug.bash b/libs/util/nbproject/Package-Debug.bash new file mode 100644 index 0000000..a8b449f --- /dev/null +++ b/libs/util/nbproject/Package-Debug.bash @@ -0,0 +1,75 @@ +#!/bin/bash -x + +# +# Generated - do not edit! +# + +# Macros +TOP=`pwd` +CND_PLATFORM=GNU-Linux-x86 +CND_CONF=Debug +CND_DISTDIR=dist +CND_BUILDDIR=build +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging +TMPDIRNAME=tmp-packaging +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a +OUTPUT_BASENAME=libutil.a +PACKAGE_TOP_DIR=util/ + +# Functions +function checkReturnCode +{ + rc=$? + if [ $rc != 0 ] + then + exit $rc + fi +} +function makeDirectory +# $1 directory path +# $2 permission (optional) +{ + mkdir -p "$1" + checkReturnCode + if [ "$2" != "" ] + then + chmod $2 "$1" + checkReturnCode + fi +} +function copyFileToTmpDir +# $1 from-file path +# $2 to-file path +# $3 permission +{ + cp "$1" "$2" + checkReturnCode + if [ "$3" != "" ] + then + chmod $3 "$2" + checkReturnCode + fi +} + +# Setup +cd "${TOP}" +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package +rm -rf ${NBTMPDIR} +mkdir -p ${NBTMPDIR} + +# Copy files and create directories and links +cd "${TOP}" +makeDirectory "${NBTMPDIR}/util/lib" +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644 + + +# Generate tar file +cd "${TOP}" +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/util.tar +cd ${NBTMPDIR} +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/util.tar * +checkReturnCode + +# Cleanup +cd "${TOP}" +rm -rf ${NBTMPDIR} diff --git a/libs/util/nbproject/Package-Release.bash b/libs/util/nbproject/Package-Release.bash new file mode 100644 index 0000000..a08bb00 --- /dev/null +++ b/libs/util/nbproject/Package-Release.bash @@ -0,0 +1,75 @@ +#!/bin/bash -x + +# +# Generated - do not edit! +# + +# Macros +TOP=`pwd` +CND_PLATFORM=GNU-Linux-x86 +CND_CONF=Release +CND_DISTDIR=dist +CND_BUILDDIR=build +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging +TMPDIRNAME=tmp-packaging +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libutil.a +OUTPUT_BASENAME=libutil.a +PACKAGE_TOP_DIR=util/ + +# Functions +function checkReturnCode +{ + rc=$? + if [ $rc != 0 ] + then + exit $rc + fi +} +function makeDirectory +# $1 directory path +# $2 permission (optional) +{ + mkdir -p "$1" + checkReturnCode + if [ "$2" != "" ] + then + chmod $2 "$1" + checkReturnCode + fi +} +function copyFileToTmpDir +# $1 from-file path +# $2 to-file path +# $3 permission +{ + cp "$1" "$2" + checkReturnCode + if [ "$3" != "" ] + then + chmod $3 "$2" + checkReturnCode + fi +} + +# Setup +cd "${TOP}" +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package +rm -rf ${NBTMPDIR} +mkdir -p ${NBTMPDIR} + +# Copy files and create directories and links +cd "${TOP}" +makeDirectory "${NBTMPDIR}/util/lib" +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644 + + +# Generate tar file +cd "${TOP}" +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/util.tar +cd ${NBTMPDIR} +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/util.tar * +checkReturnCode + +# Cleanup +cd "${TOP}" +rm -rf ${NBTMPDIR} diff --git a/libs/util/nbproject/configurations.xml b/libs/util/nbproject/configurations.xml new file mode 100644 index 0000000..3ff7534 --- /dev/null +++ b/libs/util/nbproject/configurations.xml @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> +<configurationDescriptor version="80"> + <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT"> + <logicalFolder name="HeaderFiles" + displayName="Header Files" + projectFiles="true"> + <itemPath>include/AbstractListAssembler.h</itemPath> + <itemPath>include/Codec.h</itemPath> + <itemPath>include/JSonWriter.h</itemPath> + <itemPath>include/MD5Calculator.h</itemPath> + <itemPath>include/ManagedMap.h</itemPath> + <itemPath>include/ManagedVector.h</itemPath> + <itemPath>include/NamedValue.h</itemPath> + <itemPath>include/StringBuilder.h</itemPath> + <itemPath>include/util.h</itemPath> + </logicalFolder> + <logicalFolder name="ResourceFiles" + displayName="Resource Files" + projectFiles="true"> + </logicalFolder> + <logicalFolder name="SourceFiles" + displayName="Source Files" + projectFiles="true"> + <itemPath>src/AbstractListAssembler.cc</itemPath> + <itemPath>src/Codec.cc</itemPath> + <itemPath>src/JSonWriter.cc</itemPath> + <itemPath>src/MD5Calculator.cc</itemPath> + <itemPath>src/ManagedMap.cc</itemPath> + <itemPath>src/ManagedVector.cc</itemPath> + <itemPath>src/NamedValue.cc</itemPath> + <itemPath>src/StringBuilder.cc</itemPath> + <itemPath>src/util.cc</itemPath> + </logicalFolder> + <logicalFolder name="TestFiles" + displayName="Test Files" + projectFiles="false" + kind="TEST_LOGICAL_FOLDER"> + </logicalFolder> + <logicalFolder name="ExternalFiles" + displayName="Important Files" + projectFiles="false" + kind="IMPORTANT_FILES_FOLDER"> + <itemPath>Makefile</itemPath> + </logicalFolder> + </logicalFolder> + <projectmakefile>Makefile</projectmakefile> + <confs> + <conf name="Debug" type="3"> + <toolsSet> + <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode> + <compilerSet>default</compilerSet> + </toolsSet> + <compileType> + <ccTool> + <incDir> + <pElem>include</pElem> + <pElem>../vdr/include</pElem> + </incDir> + <commandLine>-std=gnu++0x -fomit-frame-pointer -fPIC -pthread -Wall -Wno-parentheses -Wno-switch -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wwrite-strings -Wtype-limits -Wundef -fno-math-errno -fno-signed-zeros -fno-tree-vectorize -Werror=implicit-function-declaration -ansi</commandLine> + <preprocessorList> + <Elem>_GNU_SOURCE=1</Elem> + <Elem>_REENTRANT</Elem> + </preprocessorList> + <warningLevel>2</warningLevel> + </ccTool> + <archiverTool> + </archiverTool> + </compileType> + </conf> + <conf name="Release" type="3"> + <toolsSet> + <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode> + <compilerSet>default</compilerSet> + </toolsSet> + <compileType> + <cTool> + <developmentMode>5</developmentMode> + </cTool> + <ccTool> + <developmentMode>5</developmentMode> + </ccTool> + <fortranCompilerTool> + <developmentMode>5</developmentMode> + </fortranCompilerTool> + <asmTool> + <developmentMode>5</developmentMode> + </asmTool> + <archiverTool> + </archiverTool> + </compileType> + </conf> + </confs> +</configurationDescriptor> diff --git a/libs/util/nbproject/private/Makefile-variables.mk b/libs/util/nbproject/private/Makefile-variables.mk new file mode 100644 index 0000000..a64183e --- /dev/null +++ b/libs/util/nbproject/private/Makefile-variables.mk @@ -0,0 +1,7 @@ +# +# Generated - do not edit! +# +# NOCDDL +# +# Debug configuration +# Release configuration diff --git a/libs/util/nbproject/private/configurations.xml b/libs/util/nbproject/private/configurations.xml new file mode 100644 index 0000000..fa15dc7 --- /dev/null +++ b/libs/util/nbproject/private/configurations.xml @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="UTF-8"?> +<configurationDescriptor version="80"> + <projectmakefile>Makefile</projectmakefile> + <confs> + <conf name="Debug" type="3"> + <toolsSet> + <developmentServer>localhost</developmentServer> + <platform>2</platform> + </toolsSet> + <dbx_gdbdebugger version="1"> + <gdb_pathmaps> + </gdb_pathmaps> + <gdb_interceptlist> + <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/> + </gdb_interceptlist> + <gdb_options> + <DebugOptions> + </DebugOptions> + </gdb_options> + <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/> + </dbx_gdbdebugger> + <nativedebugger version="1"> + <engine>gdb</engine> + </nativedebugger> + <runprofile version="9"> + <runcommandpicklist> + <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem> + </runcommandpicklist> + <runcommand>"${OUTPUT_PATH}"</runcommand> + <rundir></rundir> + <buildfirst>true</buildfirst> + <terminal-type>0</terminal-type> + <remove-instrumentation>0</remove-instrumentation> + <environment> + </environment> + </runprofile> + </conf> + <conf name="Release" type="3"> + <toolsSet> + <developmentServer>localhost</developmentServer> + <platform>2</platform> + </toolsSet> + <dbx_gdbdebugger version="1"> + <gdb_pathmaps> + </gdb_pathmaps> + <gdb_interceptlist> + <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/> + </gdb_interceptlist> + <gdb_options> + <DebugOptions> + </DebugOptions> + </gdb_options> + <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/> + </dbx_gdbdebugger> + <nativedebugger version="1"> + <engine>gdb</engine> + </nativedebugger> + <runprofile version="9"> + <runcommandpicklist> + <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem> + </runcommandpicklist> + <runcommand>"${OUTPUT_PATH}"</runcommand> + <rundir></rundir> + <buildfirst>true</buildfirst> + <terminal-type>0</terminal-type> + <remove-instrumentation>0</remove-instrumentation> + <environment> + </environment> + </runprofile> + </conf> + </confs> +</configurationDescriptor> diff --git a/libs/util/nbproject/private/private.xml b/libs/util/nbproject/private/private.xml new file mode 100644 index 0000000..5ee2703 --- /dev/null +++ b/libs/util/nbproject/private/private.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project-private xmlns="http://www.netbeans.org/ns/project-private/1"> + <data xmlns="http://www.netbeans.org/ns/make-project-private/1"> + <activeConfTypeElem>3</activeConfTypeElem> + <activeConfIndexElem>0</activeConfIndexElem> + </data> + <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/> +</project-private> diff --git a/libs/util/nbproject/project.xml b/libs/util/nbproject/project.xml new file mode 100644 index 0000000..a4df583 --- /dev/null +++ b/libs/util/nbproject/project.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://www.netbeans.org/ns/project/1"> + <type>org.netbeans.modules.cnd.makeproject</type> + <configuration> + <data xmlns="http://www.netbeans.org/ns/make-project/1"> + <name>util</name> + <c-extensions/> + <cpp-extensions>cc</cpp-extensions> + <header-extensions>h</header-extensions> + <sourceEncoding>UTF-8</sourceEncoding> + <make-dep-projects/> + <sourceRootList/> + <confList> + <confElem> + <name>Debug</name> + <type>3</type> + </confElem> + <confElem> + <name>Release</name> + <type>3</type> + </confElem> + </confList> + </data> + </configuration> +</project> diff --git a/libs/util/src/AbstractListAssembler.cc b/libs/util/src/AbstractListAssembler.cc new file mode 100644 index 0000000..e83f965 --- /dev/null +++ b/libs/util/src/AbstractListAssembler.cc @@ -0,0 +1,57 @@ +/** + * ======================== legal notice ====================== + * + * File: AbstractListAssembler.cc + * Created: 6. Juli 2012, 09:38 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <AbstractListAssembler.h> +#include <ManagedVector.h> +#include <StringBuilder.h> +#include <Logging.h> + +cAbstractListAssembler::cAbstractListAssembler() +{ +} + +cAbstractListAssembler::~cAbstractListAssembler() +{ +} + +bool cAbstractListAssembler::AssembleList(cStringBuilder& sb, cManagedVector &ElemVector, std::map<int, size_t> &Categories, size_t start, uint delta) +{ + isyslog("::AssembleList() with start=%lu, delta=%i", start, delta); + int n = 0; + size_t end = start + delta; + + if (end >= ElemVector.size()) { + end = ElemVector.size(); + if (delta >= ElemVector.size()) start = 0; + else start = ElemVector.size() - delta; + } + OpenList(sb, Categories, ElemVector.size(), start, delta); + isyslog("now really assemble list with start=%lu, delta=%i", start, delta); + for (size_t i=start; i < end; ++i) { + AddElement(sb, ElemVector[i], ++n % 2); + } + CloseList(sb, ElemVector.size(), start, delta); + + return true; +}
\ No newline at end of file diff --git a/libs/util/src/Codec.cc b/libs/util/src/Codec.cc new file mode 100644 index 0000000..bf6acf3 --- /dev/null +++ b/libs/util/src/Codec.cc @@ -0,0 +1,248 @@ +/** + * ======================== legal notice ====================== + * + * File: Codec.cc + * Created: 21. Mai 2012, 14:00 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include "Codec.h" +#include "util.h" +#include <string.h> +#include <stdlib.h> +#include <ctype.h> +#include <openssl/md5.h> + +// --- Codec ------------------------------------------------------------------ +static cHexEncoder * hexEncoder = NULL; +static cHexDecoder * hexDecoder = NULL; + +cCodec::cCodec(const char *Table, char SpecialChar) + : translateTable(strdup(Table)) + , keyChar(SpecialChar) +{ +} + +cCodec::~cCodec() +{ + FREE(translateTable); +} + +size_t cCodec::DecodeSequence(unsigned char *d, unsigned char *s) +{ + *d = *s; + + return 1; +} + +// --- Encoder ---------------------------------------------------------------- + +cEncoder::cEncoder(char SpecialChar, const char *TrTable) + : cCodec(TrTable, SpecialChar) +{ +} + +cEncoder::~cEncoder() +{ +} + +char *cEncoder::Encode(const char *Source, size_t SourceLength) +{ + if (!Source) return NULL; + if (!SourceLength) SourceLength = strlen(Source); + + const unsigned char *s = (const unsigned char *)Source; + const unsigned char *last = (const unsigned char *)(Source + SourceLength); + char *rv = (char *)malloc(SourceLength * 3 + 1); + char *d = rv; + unsigned char c; + + for (; s < last; ++s) { + c = *s; + if (c < 0x80 && (isalnum(c) || c == '-' || c == '_' || c == '.' || c == '~')) + *d++ = c; + else if (c == ' ') + *d++ = '+'; + else { + *d++ = KeyChar(); + *d++ = TranslateTable()[c >> 4]; + *d++ = TranslateTable()[c & 0x0F]; + } + } + *d = 0; + + return rv; +} + +// --- URLEncoder ------------------------------------------------------------- + +cURLEncoder::cURLEncoder() + : cEncoder('%') +{ +} + +cURLEncoder::~cURLEncoder() +{ +} + +// --- Decoder ---------------------------------------------------------------- + +cDecoder::cDecoder(char SpecialChar, const char *TrTable) + : cCodec(TrTable, SpecialChar) +{ +} + +cDecoder::~cDecoder() +{ +} + +char *cDecoder::Decode(const char *Source, size_t SourceLength) +{ + if (!Source) return NULL; + if (!SourceLength) SourceLength = strlen(Source); + + const unsigned char *s = (const unsigned char *)Source; + const unsigned char *last = (const unsigned char *)(Source + SourceLength); + char *rv = (char *)malloc(SourceLength + 1); + unsigned char *d = (unsigned char *) rv; + size_t seqLen; + + for (; s < last; ++s) { + if (*s == KeyChar()) { + seqLen = DecodeSequence(d++, (unsigned char *) ++s); + s += seqLen; + } + else if (*s == '+') { + *d++ = ' '; + } + else { + *d++ = *s; + } + } + *d = 0; + + return rv; +} + +size_t cDecoder::DecodeSequence(unsigned char *d, unsigned char *s) +{ + // just transform hex sequence back to character + unsigned char c = s[0] >= 'A' ? ((s[0] & 0xDF) - 'A') + 10 : (s[0] - '0'); + + c *= 16; + c += s[1] >= 'A' ? ((s[1] & 0xDF) - 'A') + 10 : (s[1] - '0'); + *d = c; + + return 1; +} + +// --- URLDecoder ------------------------------------------------------------- + +cURLDecoder::cURLDecoder() + : cDecoder('%') +{ +} + +cURLDecoder::~cURLDecoder() +{ +} + +// --- HexEncoder ------------------------------------------------------------- + +cHexEncoder::cHexEncoder() + : cEncoder('#', "0123456789abcdef") +{ +} + +cHexEncoder::~cHexEncoder() +{ +} + +char* cHexEncoder::Encode(const unsigned char* Source, size_t SourceLength) +{ + if (!SourceLength) SourceLength = strlen((const char *)Source); + const unsigned char *s = (const unsigned char *)Source; + char *rv = (char *)malloc(SourceLength * 3 + 1); + char *d = rv; + unsigned char c; + + for (int i=0; i < 16; ++i, ++s) { + c = *s; + *d++ = TranslateTable()[c >> 4]; + *d++ = TranslateTable()[c & 0x0F]; + } + *d = 0; + + return rv; +} + +cHexEncoder * getHexEncoder(void) { + if (!hexEncoder) hexEncoder = new cHexEncoder(); + return hexEncoder; +} + +// --- HexDecoder ------------------------------------------------------------- + +cHexDecoder::cHexDecoder() +{ +} + +cHexDecoder::~cHexDecoder() +{ +} + +char* cHexDecoder::Decode(const char* Source, size_t SourceLength) +{ + if (!Source) return NULL; + if (!SourceLength) SourceLength = strlen(Source); + + const unsigned char *s = (const unsigned char *)Source; + const unsigned char *last = (const unsigned char *)(Source + SourceLength); + char *rv = (char *)malloc(SourceLength + 1); + unsigned char *d = (unsigned char *) rv; + unsigned char c0, c1; + + for (; s < last; s += 2) { + c0 = toupper(s[0]); + c1 = c0 >= 'A' ? ((c0 & 0xDF) - 'A') + 10 : (c0 - '0'); + c1 *= 16; + c0 = toupper(s[1]); + c1 = c0 >= 'A' ? ((c0 & 0xDF) - 'A') + 10 : (c0 - '0'); + *d++ = c1; + } + *d = 0; + + return rv; +} + +cHexDecoder * getHexDecoder(void) { + if (!hexDecoder) hexDecoder = new cHexDecoder(); + return hexDecoder; +} + +void codecCleanUp(void) { + if (hexEncoder) { + delete hexEncoder; + hexEncoder = NULL; + } + if (hexDecoder) { + delete hexDecoder; + hexDecoder = NULL; + } +} diff --git a/libs/util/src/JSonWriter.cc b/libs/util/src/JSonWriter.cc new file mode 100644 index 0000000..cde994c --- /dev/null +++ b/libs/util/src/JSonWriter.cc @@ -0,0 +1,178 @@ +/** + * ======================== legal notice ====================== + * + * File: JSonWriter.cc + * Created: 6. Juli 2012, 12:47 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <JSonWriter.h> +#include <StringBuilder.h> +#include <Logging.h> +#include <stdio.h> + +cJSonWriter::cJSonWriter(cStringBuilder &StringBuilder) + : lastState(JS_Unknown) + , sb(StringBuilder) +{ +} + +cJSonWriter::~cJSonWriter() +{ +} + +cJSonWriter::JSonState cJSonWriter::State() +{ + if (state.empty()) return JS_Unknown; + return state.top(); +} + +void cJSonWriter::PushState(JSonState State) +{ + state.push(State); +} + +cJSonWriter::JSonState cJSonWriter::PopState(void) +{ + lastState = State(); + state.pop(); + + return lastState; +} + +cJSonWriter &cJSonWriter::Object(void) { + if (lastState == JS_Object) sb.Append(","); + sb.Append("{"); + PushState(JS_Object); + lastState = JS_Unknown; + return *this; +} + +cJSonWriter &cJSonWriter::EndObject(void) { + if (State() != JS_Object) { + esyslog("JSonWriter::EndObject(): invalid status %d - should be %d", State(), JS_Object); + } + else { + PopState(); + sb.Append("}"); + } + return *this; +} + +cJSonWriter &cJSonWriter::Array(void) { + if (State() != JS_Key) { + esyslog("JSonWriter::Array(): invalid status %d - should be %d", State(), JS_Key); + } + else { + sb.Append("["); + PushState(JS_Array); + lastState = JS_Unknown; + } + return *this; +} + +cJSonWriter &cJSonWriter::EndArray(void) { + if (State() != JS_Array) { + esyslog("JSonWriter::EndArray(): invalid status %d - should be %d", State(), JS_Array); + } + else { + sb.Append("]"); + PopState(); + if (State() == JS_Key) PopState(); // array is a value, so pop the key + } + return *this; +} + +cJSonWriter &cJSonWriter::Key(const char *Name) { + if (State() != JS_Object) { + esyslog("JSonWriter::Key(): invalid status %d - should be %d", State(), JS_Object); + } + else { + if (lastState == JS_Key) sb.Append(", "); + sb.Append("\"").Append(Name).Append("\": "); + PushState(JS_Key); + } + return *this; +} + +cJSonWriter &cJSonWriter::Value(const char *Text) { + if (State() != JS_Key) { + esyslog("JSonWriter::Value(): invalid status %d - should be %d", State(), JS_Key); + } + else { + PopState(); + sb.Append("\"").Append(Text).Append("\""); + } + return *this; +} + +cJSonWriter &cJSonWriter::Value(int v) { + if (State() != JS_Key) { + esyslog("JSonWriter::Value(): invalid status %d - should be %d", State(), JS_Key); + } + else { + PopState(); + sb.Append(v); + } + return *this; +} + +cJSonWriter &cJSonWriter::Value(long v) { + if (State() != JS_Key) { + esyslog("JSonWriter::Value(): invalid status %d - should be %d", State(), JS_Key); + } + else { + PopState(); + sb.Append(v); + } + return *this; +} + +cJSonWriter &cJSonWriter::Value(size_t v) { + if (State() != JS_Key) { + esyslog("JSonWriter::Value(): invalid status %d - should be %d", State(), JS_Key); + } + else { + PopState(); + sb.Append(v); + } + return *this; +} + +cJSonWriter &cJSonWriter::Value(double v) { + if (State() != JS_Key) { + esyslog("JSonWriter::Value(): invalid status %d - should be %d", State(), JS_Key); + } + else { + PopState(); + sb.Append(v); + } + return *this; +} + +cJSonWriter &cJSonWriter::Value(bool v) { + if (State() != JS_Key) { + esyslog("JSonWriter::Value(): invalid status %d - should be %d", State(), JS_Key); + } + else { + PopState(); + sb.Append(v, "true", "false"); + } + return *this; +} diff --git a/libs/util/src/MD5Calculator.cc b/libs/util/src/MD5Calculator.cc new file mode 100644 index 0000000..7f2aea4 --- /dev/null +++ b/libs/util/src/MD5Calculator.cc @@ -0,0 +1,57 @@ +/** + * ======================== legal notice ====================== + * + * File: MD5Calculator.cc + * Created: 3. Juli 2012, 13:15 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <MD5Calculator.h> +#include <Codec.h> +#include <string.h> + +cMD5Calculator::cMD5Calculator() +{ + MD5_Init(&context); +} + +cMD5Calculator::~cMD5Calculator() +{ +} + +void cMD5Calculator::AddContent(const char* Buf, size_t bufSize) +{ + if (!bufSize) bufSize = strlen(Buf); + MD5_Update(&context, Buf, bufSize); +} + +char * cMD5Calculator::Hash(void) +{ + unsigned char md[20]; + + MD5_Final(md, &context); + + return getHexEncoder()->Encode(md, 16); +} + +void cMD5Calculator::Reset() +{ + memset(&context, 0, sizeof(context)); + MD5_Init(&context); +}
\ No newline at end of file diff --git a/libs/util/src/ManagedMap.cc b/libs/util/src/ManagedMap.cc new file mode 100644 index 0000000..e0dd528 --- /dev/null +++ b/libs/util/src/ManagedMap.cc @@ -0,0 +1,73 @@ +/** + * ======================== legal notice ====================== + * + * File: ManagedMap.cc + * Created: 7. Juli 2012, 08:48 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <ManagedMap.h> +#include <Logging.h> +#include <stdlib.h> + +cManagedMap::cManagedMap(void (*cbFreeElem)(void *)) + : freeCallback(cbFreeElem) +{ +} + +cManagedMap::~cManagedMap() +{ + clear(); +} + +void cManagedMap::clear() +{ + iterator it = internalMap.begin(); + + while (it != internalMap.end()) { + if (freeCallback) { + isyslog("gonna free %s", it->first.c_str()); + freeCallback(it->second); + } + ++it; + } + internalMap.clear(); +} + +void *cManagedMap::get(const char* key) +{ + const_iterator it = internalMap.find(key); + + if (it == internalMap.end()) return NULL; + return it->second; +} + +const void *cManagedMap::get(const char* key) const +{ + const_iterator it = internalMap.find(key); + + if (it == internalMap.end()) return NULL; + return it->second; +} + +void cManagedMap::put(const char* key, void* value) +{ + isyslog("cManagedMap::put[%s] => 0x%0X", key, value); + internalMap[key] = value; +}
\ No newline at end of file diff --git a/libs/util/src/ManagedVector.cc b/libs/util/src/ManagedVector.cc new file mode 100644 index 0000000..7a67bfb --- /dev/null +++ b/libs/util/src/ManagedVector.cc @@ -0,0 +1,51 @@ +/** + * ======================== legal notice ====================== + * + * File: ManagedVector.cc + * Created: 7. Juli 2012, 08:30 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <ManagedVector.h> +#include <vector> +#include <algorithm> + +cManagedVector::cManagedVector(void (*cbFreeElem)(void *)) + : freeCallback(cbFreeElem) +{ +} + +cManagedVector::~cManagedVector() +{ + clear(); +} + +void cManagedVector::clear() +{ + for (size_t i=0; i < internalVector.size(); ++i) { + freeCallback(internalVector[i]); + } + internalVector.clear(); +} + +void cManagedVector::sort(bool (*fnSort)(void *a, void *b)) +{ + if (fnSort) std::sort(internalVector.begin(), internalVector.end(), fnSort); + else std::sort(internalVector.begin(), internalVector.end()); +}
\ No newline at end of file diff --git a/libs/util/src/NamedValue.cc b/libs/util/src/NamedValue.cc new file mode 100644 index 0000000..f807cb6 --- /dev/null +++ b/libs/util/src/NamedValue.cc @@ -0,0 +1,67 @@ +/** + * ======================== legal notice ====================== + * + * File: NamedValue.cc + * Created: 3. Juli 2012, 17:43 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <NamedValue.h> +#include <util.h> +#include <stdlib.h> +#include <stdio.h> + + +cNamedValue::cNamedValue(char *Name, char *Value, bool takePointers) + : name(takePointers ? Name : strdup(Name)) + , value(takePointers ? Value : Value ? strdup(Value) : NULL) +{ +} + +cNamedValue::cNamedValue(const char *Name, const char *Value) + : name(strdup(Name)) + , value(Value ? strdup(Value) : NULL) +{ +} + +cNamedValue::cNamedValue(const cNamedValue &other) + : name(strdup(other.name)) + , value(other.value ? strdup(other.value) : NULL) +{ + printf(">>> OUPS - just cloned a named value with name<%s> and value<%s>\n", name, value); +} + +cNamedValue::~cNamedValue() +{ + FREE(name); + FREE(value); +} + +cNamedValue &cNamedValue::operator=(const cNamedValue &other) +{ + printf(">>> OUPS - I'm inside of operator = !!!\n"); + if (&other == this) return *this; + FREE(name); + FREE(value); + name = strdup(other.Name()); + if (other.value) value = strdup(other.Value()); + else value = NULL; + + return *this; +}
\ No newline at end of file diff --git a/libs/util/src/StringBuilder.cc b/libs/util/src/StringBuilder.cc new file mode 100644 index 0000000..8e90151 --- /dev/null +++ b/libs/util/src/StringBuilder.cc @@ -0,0 +1,178 @@ +/** + * ======================== legal notice ====================== + * + * File: StringBuilder.cc + * Created: 6. Juli 2012, 10:54 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <StringBuilder.h> +#include <Logging.h> +#include <string.h> +#include <stdio.h> +#include <stdlib.h> + +static void freeStringCallback(void *elem) +{ + free(elem); +} + +cStringBuilder::cStringBuilder(const char *First) + : chunkSize(127) + , readOffset(0) + , writeOffset(0) + , pool(freeStringCallback) +{ + init(); + if (First) Append(First); +} + +cStringBuilder::cStringBuilder(int ChunkSize) + : chunkSize(ChunkSize) + , readOffset(0) + , writeOffset(0) + , pool(freeStringCallback) +{ + init(); +} + +cStringBuilder::~cStringBuilder() +{ +} + +void cStringBuilder::init(void) +{ + char *first = (char *) malloc(chunkSize); + + pool.push_back(first); +} + +void cStringBuilder::Write(const char *Text) +{ + if (!Text) { + esyslog("ERROR: text to add is a NULL-ponter!"); + return; + } + uint chunkFree = chunkSize - writeOffset; + char *curChunk = (char *) pool[pool.size() - 1]; + const char *p = Text; + + while (strlen(p) >= chunkFree) { + strncpy(curChunk + writeOffset, p, chunkFree); + p += chunkFree; + + curChunk = (char *) malloc(chunkSize); + pool.push_back(curChunk); + writeOffset = 0; + chunkFree = chunkSize; + } + if (strlen(p)) { + strcpy(curChunk + writeOffset, p); + writeOffset += strlen(p); + } +} + +size_t cStringBuilder::Size() +{ + return (pool.size() - 1) * chunkSize + writeOffset; +} + +size_t cStringBuilder::Size() const +{ + return (pool.size() - 1) * chunkSize + writeOffset; +} + +size_t cStringBuilder::Copy(char* Buf, size_t BufSize) +{ + uint chunkNo = readOffset / chunkSize; + uint chunkOff = readOffset % chunkSize; + uint bytes2Write = chunkSize; + char *curChunk = (char *) pool[chunkNo]; + size_t bytesWritten = 0; + + if (chunkNo == (pool.size() - 1)) bytes2Write = writeOffset; + while ((BufSize - bytesWritten) > (bytes2Write - chunkOff)) { + strncpy(Buf + bytesWritten, curChunk + chunkOff, bytes2Write - chunkOff); + bytesWritten += bytes2Write - chunkOff; + + chunkOff = 0; + if (++chunkNo < (pool.size() - 1)) bytes2Write = chunkSize; + else bytes2Write = writeOffset; + if (chunkNo == pool.size()) break; + curChunk = (char *) pool[chunkNo]; + } + readOffset += bytesWritten; + + return bytesWritten; +} + +cStringBuilder &cStringBuilder::Append(const char* Text) +{ + if (!Text) Write("(null)"); + Write(Text); + + return *this; +} + +cStringBuilder &cStringBuilder::Append(bool v, const char *TrueValue, const char *FalseValue) +{ + if (v) Write(TrueValue); + else Write(FalseValue); + + return *this; +} + +cStringBuilder &cStringBuilder::Append(double v) +{ + char *elem = NULL; + + asprintf(&elem, "%lg", v); + if (elem) { + Write(elem); + free(elem); + } + return *this; +} + +cStringBuilder &cStringBuilder::Append(int v) +{ + char buf[12]; + + if (snprintf(buf, sizeof(buf), "%d", v)) Write(buf); + + return *this; +} + +cStringBuilder &cStringBuilder::Append(long v) +{ + char buf[24]; + + if (snprintf(buf, sizeof(buf), "%ld", v)) Write(buf); + + return *this; +} + +cStringBuilder &cStringBuilder::Append(size_t v) +{ + char buf[24]; + + if (snprintf(buf, sizeof(buf), "%lu", v)) Write(buf); + + return *this; +} diff --git a/libs/util/src/util.cc b/libs/util/src/util.cc new file mode 100644 index 0000000..8caac91 --- /dev/null +++ b/libs/util/src/util.cc @@ -0,0 +1,61 @@ +/** + * ======================== legal notice ====================== + * + * File: util.cc + * Created: 4. Juli 2012, 05:56 + * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> + * Project: libutil - base classes used by other libraries + * + * CMP - compound media player + * + * is a client/server mediaplayer intended to play any media from any workstation + * without the need to export or mount shares. cmps is an easy to use backend + * with a (ready to use) HTML-interface. Additionally the backend supports + * authentication via HTTP-digest authorization. + * cmpc is a client with vdr-like osd-menues. + * + * Copyright (c) 2012 Reinhard Mantey, some rights reserved! + * published under Creative Commons by-sa + * For details see http://creativecommons.org/licenses/by-sa/3.0/ + * + * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp + * + * -------------------------------------------------------------- + */ +#include <util.h> +#include <string.h> +#include <ctype.h> + +const char * skipWhitespace(const char *Buffer) +{ + while (*Buffer && isspace(*Buffer)) ++Buffer; + + return Buffer; +} + +const char *getWord(char *buf, int bufSize, const char *src) +{ + const char *s = src; + char *d = buf; + + if (!strncmp(src, "\n\n", 2) || !strncmp(src, "\r\n\r\n", 4)) + return src; + + while (*s && isspace(*s)) ++s; + while (*s && ((d - buf) < bufSize) && !isspace(*s)) *d++ = *s++; + *d = 0; + + return *s ? s : NULL; +} + +const char *restOfLine(char *buf, int bufSize, const char *src) +{ + const char *s = src; + char *d = buf; + + while (*s && isspace(*s)) ++s; + while (*s && ((d - buf) < bufSize) && *s != '\n' && *s != '\r') *d++ = *s++; + *d = 0; + + return *s ? s : NULL; +} diff --git a/libs/util/summary.txt b/libs/util/summary.txt new file mode 100644 index 0000000..38b8ade --- /dev/null +++ b/libs/util/summary.txt @@ -0,0 +1 @@ +libutil - base classes used by other libraries diff --git a/libs/util/util.cbp b/libs/util/util.cbp new file mode 100644 index 0000000..d582dc0 --- /dev/null +++ b/libs/util/util.cbp @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_project_file> + <FileVersion major="1" minor="6" /> + <Project> + <Option title="CMP.libs.util" /> + <Option pch_mode="2" /> + <Option compiler="gcc" /> + <Build> + <Target title="Debug"> + <Option output="libutil" prefix_auto="1" extension_auto="1" /> + <Option working_dir="" /> + <Option object_output="obj/Debug/" /> + <Option type="2" /> + <Option compiler="gcc" /> + <Option createDefFile="1" /> + <Compiler> + <Add option="-Wall" /> + <Add option="-g" /> + </Compiler> + </Target> + <Target title="Release"> + <Option output="libutil" prefix_auto="1" extension_auto="1" /> + <Option working_dir="" /> + <Option object_output="obj/Release/" /> + <Option type="2" /> + <Option compiler="gcc" /> + <Option createDefFile="1" /> + <Compiler> + <Add option="-Wall" /> + <Add option="-O2" /> + </Compiler> + <Linker> + <Add option="-s" /> + </Linker> + </Target> + </Build> + <Compiler> + <Add option="-std=gnu++0x -fomit-frame-pointer -fPIC -pthread -Wall -Wno-parentheses -Wno-switch -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wwrite-strings -Wtype-limits -Wundef -fno-math-errno -fno-signed-zeros -fno-tree-vectorize -Werror=implicit-function-declaration -ansi" /> + <Add option="-D_REENTRANT" /> + <Add option="-D_GNU_SOURCE=1" /> + <Add directory="../vdr/include" /> + <Add directory="include" /> + </Compiler> + <Unit filename="include/AbstractListAssembler.h" /> + <Unit filename="include/Codec.h" /> + <Unit filename="include/JSonWriter.h" /> + <Unit filename="include/MD5Calculator.h" /> + <Unit filename="include/ManagedMap.h" /> + <Unit filename="include/ManagedVector.h" /> + <Unit filename="include/NamedValue.h" /> + <Unit filename="include/StringBuilder.h" /> + <Unit filename="include/util.h" /> + <Unit filename="src/AbstractListAssembler.cc" /> + <Unit filename="src/Codec.cc" /> + <Unit filename="src/JSonWriter.cc" /> + <Unit filename="src/MD5Calculator.cc" /> + <Unit filename="src/ManagedMap.cc" /> + <Unit filename="src/ManagedVector.cc" /> + <Unit filename="src/NamedValue.cc" /> + <Unit filename="src/StringBuilder.cc" /> + <Unit filename="src/util.cc" /> + <Extensions> + <code_completion /> + <envvars /> + <lib_finder disable_auto="1" /> + <debugger /> + </Extensions> + </Project> +</CodeBlocks_project_file> diff --git a/libs/util/util.depend b/libs/util/util.depend new file mode 100644 index 0000000..c4ac310 --- /dev/null +++ b/libs/util/util.depend @@ -0,0 +1 @@ +# depslib dependency file v1.0 diff --git a/libs/util/util.layout b/libs/util/util.layout new file mode 100644 index 0000000..d3bb1e5 --- /dev/null +++ b/libs/util/util.layout @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_layout_file> + <ActiveTarget name="Debug" /> + <File name="include/JSonWriter.h" open="1" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="773" topLine="0" /> + </Cursor> + </File> + <File name="src/StringBuilder.cc" open="1" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="3065" topLine="38" /> + </Cursor> + </File> + <File name="src/AbstractListAssembler.cc" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="include/StringBuilder.h" open="1" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="560" topLine="0" /> + </Cursor> + </File> + <File name="include/ManagedMap.h" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="src/ManagedMap.cc" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="src/JSonWriter.cc" open="1" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="294" topLine="0" /> + </Cursor> + </File> + <File name="include/ManagedVector.h" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> +</CodeBlocks_layout_file> diff --git a/libs/util/util.layout.save b/libs/util/util.layout.save new file mode 100644 index 0000000..94e3e2d --- /dev/null +++ b/libs/util/util.layout.save @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_layout_file> + <ActiveTarget name="Debug" /> + <File name="include/ManagedMap.h" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="src/StringBuilder.cc" open="1" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="include/ManagedVector.h" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="include/StringBuilder.h" open="1" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="src/JSonWriter.cc" open="1" top="1" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="include/JSonWriter.h" open="1" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="src/ManagedMap.cc" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> + <File name="src/AbstractListAssembler.cc" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="0" topLine="0" /> + </Cursor> + </File> +</CodeBlocks_layout_file> |