mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 17:31:20 +02:00
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1674 e54a6e83-5905-42d5-8d5c-058d10e6a962
53 lines
2.3 KiB
C++
53 lines
2.3 KiB
C++
//=============================================================================
|
|
// YHTTPD
|
|
// Helper
|
|
//=============================================================================
|
|
|
|
#ifndef __yhttpd_helper_h__
|
|
#define __yhttpd_helper_h__
|
|
// c
|
|
#include <ctime>
|
|
#include <sys/timeb.h>
|
|
// c++
|
|
#include <string>
|
|
#include <vector>
|
|
#include "ytypes_globals.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
int minmax(int value,int min, int max);
|
|
void correctTime(struct tm *zt);
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// String Converter
|
|
//-----------------------------------------------------------------------------
|
|
std::string itoa(unsigned int conv);
|
|
std::string itoh(unsigned int conv);
|
|
std::string decodeString(std::string encodedString);
|
|
std::string encodeString(std::string decodedString);
|
|
std::string string_tolower(std::string str);
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// String Helpers
|
|
//-----------------------------------------------------------------------------
|
|
std::string trim(std::string const& source, char const* delims = " \t\r\n");
|
|
void replace(std::string &str, const std::string &find_what, const std::string &replace_with);
|
|
std::string string_printf(const char *fmt, ...);
|
|
bool ySplitString(std::string str, std::string delimiter, std::string& left, std::string& right);
|
|
bool ySplitStringExact(std::string str, std::string delimiter, std::string& left, std::string& right);
|
|
bool ySplitStringLast(std::string str, std::string delimiter, std::string& left, std::string& right);
|
|
CStringArray ySplitStringVector(std::string str, std::string delimiter);
|
|
bool nocase_compare (char c1, char c2);
|
|
std::string timeString(time_t time);
|
|
bool write_to_file(std::string filename, std::string content);
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// JSON Helpers
|
|
//-----------------------------------------------------------------------------
|
|
std::string json_out_quote_convert(std::string _str);
|
|
std::string json_out_pair(std::string _key, std::string _value);
|
|
std::string json_out_success(std::string _result);
|
|
std::string json_out_error(std::string _error);
|
|
std::string json_convert_string(std::string s);
|
|
|
|
#endif /* __yhttpd_helper_h__ */
|