![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
#include "uint256.h"
#include <stdarg.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <map>
#include <list>
#include <utility>
#include <vector>
#include <string>
#include <boost/version.hpp>
#include <boost/thread.hpp>
#include <boost/filesystem.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/date_time/gregorian/gregorian_types.hpp>
#include <boost/date_time/posix_time/posix_time_types.hpp>
#include "netbase.h"
Go to the source code of this file.
Classes | |
class | CMedianFilter< T > |
Median filter over a stream of values. More... | |
Macros | |
#define | loop for (;;) |
#define | BEGIN(a) ((char*)&(a)) |
#define | END(a) ((char*)&((&(a))[1])) |
#define | UBEGIN(a) ((unsigned char*)&(a)) |
#define | UEND(a) ((unsigned char*)&((&(a))[1])) |
#define | ARRAYLEN(array) (sizeof(array)/sizeof((array)[0])) |
#define | PRI64d "lld" |
#define | PRI64u "llu" |
#define | PRI64x "llx" |
#define | PRIszx "zx" |
#define | PRIszu "zu" |
#define | PRIszd "zd" |
#define | PRIpdx "tx" |
#define | PRIpdu "tu" |
#define | PRIpdd "td" |
#define | PAIRTYPE(t1, t2) std::pair<t1, t2> |
#define | MAX_PATH 1024 |
#define | ATTR_WARN_PRINTF(X, Y) |
#define | strprintf(format,...) real_strprintf(format, 0, __VA_ARGS__) |
#define | printf OutputDebugStringF |
#define | THREAD_PRIORITY_LOWEST PRIO_MAX |
#define | THREAD_PRIORITY_BELOW_NORMAL 2 |
#define | THREAD_PRIORITY_NORMAL 0 |
#define | THREAD_PRIORITY_ABOVE_NORMAL 0 |
Typedefs | |
typedef long long | int64 |
typedef unsigned long long | uint64 |
Functions | |
template<size_t nBytes, typename T > | |
T * | alignup (T *p) |
void | MilliSleep (int64 n) |
void | RandAddSeed () |
void | RandAddSeedPerfmon () |
int | ATTR_WARN_PRINTF (1, 2) OutputDebugStringF(const char *pszFormat |
int std::string | ATTR_WARN_PRINTF (1, 3) real_strprintf(const char *format |
Overload strprintf for char*, so that GCC format type warnings can be given. More... | |
int std::string int std::string | real_strprintf (const std::string &format, int dummy,...) |
Overload strprintf for std::string, to be able to use it with _ (translation). More... | |
std::string | vstrprintf (const char *format, va_list ap) |
void | LogException (std::exception *pex, const char *pszThread) |
void | PrintException (std::exception *pex, const char *pszThread) |
void | PrintExceptionContinue (std::exception *pex, const char *pszThread) |
void | ParseString (const std::string &str, char c, std::vector< std::string > &v) |
std::string | FormatMoney (int64 n, bool fPlus=false) |
bool | ParseMoney (const std::string &str, int64 &nRet) |
bool | ParseMoney (const char *pszIn, int64 &nRet) |
std::string | SanitizeString (const std::string &str) |
std::vector< unsigned char > | ParseHex (const char *psz) |
std::vector< unsigned char > | ParseHex (const std::string &str) |
bool | IsHex (const std::string &str) |
std::vector< unsigned char > | DecodeBase64 (const char *p, bool *pfInvalid=NULL) |
std::string | DecodeBase64 (const std::string &str) |
std::string | EncodeBase64 (const unsigned char *pch, size_t len) |
std::string | EncodeBase64 (const std::string &str) |
std::vector< unsigned char > | DecodeBase32 (const char *p, bool *pfInvalid=NULL) |
std::string | DecodeBase32 (const std::string &str) |
std::string | EncodeBase32 (const unsigned char *pch, size_t len) |
std::string | EncodeBase32 (const std::string &str) |
void | ParseParameters (int argc, const char *const argv[]) |
bool | WildcardMatch (const char *psz, const char *mask) |
bool | WildcardMatch (const std::string &str, const std::string &mask) |
void | FileCommit (FILE *fileout) |
int | GetFilesize (FILE *file) |
bool | TruncateFile (FILE *file, unsigned int length) |
int | RaiseFileDescriptorLimit (int nMinFD) |
void | AllocateFileRange (FILE *file, unsigned int offset, unsigned int length) |
bool | RenameOver (boost::filesystem::path src, boost::filesystem::path dest) |
boost::filesystem::path | GetDefaultDataDir () |
const boost::filesystem::path & | GetDataDir (bool fNetSpecific=true) |
boost::filesystem::path | GetConfigFile () |
boost::filesystem::path | GetPidFile () |
void | CreatePidFile (const boost::filesystem::path &path, pid_t pid) |
void | ReadConfigFile (std::map< std::string, std::string > &mapSettingsRet, std::map< std::string, std::vector< std::string > > &mapMultiSettingsRet) |
boost::filesystem::path | GetTempPath () |
void | ShrinkDebugFile () |
int | GetRandInt (int nMax) |
uint64 | GetRand (uint64 nMax) |
uint256 | GetRandHash () |
int64 | GetTime () |
void | SetMockTime (int64 nMockTimeIn) |
int64 | GetAdjustedTime () |
int64 | GetTimeOffset () |
std::string | FormatFullVersion () |
std::string | FormatSubVersion (const std::string &name, int nClientVersion, const std::vector< std::string > &comments) |
void | AddTimeData (const CNetAddr &ip, int64 nTime) |
void | runCommand (std::string strCommand) |
std::string | i64tostr (int64 n) |
std::string | itostr (int n) |
int64 | atoi64 (const char *psz) |
int64 | atoi64 (const std::string &str) |
int | atoi (const std::string &str) |
int | roundint (double d) |
int64 | roundint64 (double d) |
int64 | abs64 (int64 n) |
template<typename T > | |
std::string | HexStr (const T itbegin, const T itend, bool fSpaces=false) |
template<typename T > | |
std::string | HexStr (const T &vch, bool fSpaces=false) |
template<typename T > | |
void | PrintHex (const T pbegin, const T pend, const char *pszFormat="%s", bool fSpaces=true) |
void | PrintHex (const std::vector< unsigned char > &vch, const char *pszFormat="%s", bool fSpaces=true) |
int64 | GetPerformanceCounter () |
int64 | GetTimeMillis () |
int64 | GetTimeMicros () |
std::string | DateTimeStrFormat (const char *pszFormat, int64 nTime) |
template<typename T > | |
void | skipspaces (T &it) |
bool | IsSwitchChar (char c) |
std::string | GetArg (const std::string &strArg, const std::string &strDefault) |
Return string argument or default value. More... | |
int64 | GetArg (const std::string &strArg, int64 nDefault) |
Return integer argument or default value. More... | |
bool | GetBoolArg (const std::string &strArg, bool fDefault=false) |
Return boolean argument or default value. More... | |
bool | SoftSetArg (const std::string &strArg, const std::string &strValue) |
Set an argument if it doesn't already have a value. More... | |
bool | SoftSetBoolArg (const std::string &strArg, bool fValue) |
Set a boolean argument if it doesn't already have a value. More... | |
void | seed_insecure_rand (bool fDeterministic=false) |
Seed insecure_rand using the random pool. More... | |
template<typename T > | |
bool | TimingResistantEqual (const T &a, const T &b) |
Timing-attack-resistant comparison. More... | |
bool | NewThread (void(*pfn)(void *), void *parg) |
void | SetThreadPriority (int nPriority) |
void | ExitThread (size_t nExitCode) |
void | RenameThread (const char *name) |
uint32_t | ByteReverse (uint32_t value) |
template<typename Callable > | |
void | LoopForever (const char *name, Callable func, int64 msecs) |
template<typename Callable > | |
void | TraceThread (const char *name, Callable func) |
Variables | |
std::map< std::string, std::string > | mapArgs |
std::map< std::string, std::vector< std::string > > | mapMultiArgs |
bool | fDebug |
bool | fDebugNet |
bool | fPrintToConsole |
bool | fPrintToDebugger |
bool | fDaemon |
bool | fServer |
bool | fCommandLine |
std::string | strMiscWarning |
bool | fTestNet |
bool | fBloomFilters |
bool | fNoListen |
bool | fLogTimestamps |
volatile bool | fReopenDebugLog |
int std::string int | dummy |
uint32_t | insecure_rand_Rz |
MWC RNG of George Marsaglia This is intended to be fast. More... | |
uint32_t | insecure_rand_Rw |
#define printf OutputDebugStringF |
#define strprintf | ( | format, | |
... | |||
) | real_strprintf(format, 0, __VA_ARGS__) |
void AllocateFileRange | ( | FILE * | file, |
unsigned int | offset, | ||
unsigned int | length | ||
) |
bool ATTR_WARN_PRINTF | ( | 1 | , |
2 | |||
) | const |
int std::string ATTR_WARN_PRINTF | ( | 1 | , |
3 | |||
) | const |
Overload strprintf for char*, so that GCC format type warnings can be given.
void CreatePidFile | ( | const boost::filesystem::path & | path, |
pid_t | pid | ||
) |
|
inline |
std::vector<unsigned char> DecodeBase32 | ( | const char * | p, |
bool * | pfInvalid = NULL |
||
) |
std::string DecodeBase32 | ( | const std::string & | str | ) |
std::vector<unsigned char> DecodeBase64 | ( | const char * | p, |
bool * | pfInvalid = NULL |
||
) |
std::string DecodeBase64 | ( | const std::string & | str | ) |
std::string EncodeBase32 | ( | const unsigned char * | pch, |
size_t | len | ||
) |
std::string EncodeBase32 | ( | const std::string & | str | ) |
std::string EncodeBase64 | ( | const unsigned char * | pch, |
size_t | len | ||
) |
std::string EncodeBase64 | ( | const std::string & | str | ) |
std::string FormatSubVersion | ( | const std::string & | name, |
int | nClientVersion, | ||
const std::vector< std::string > & | comments | ||
) |
std::string GetArg | ( | const std::string & | strArg, |
const std::string & | strDefault | ||
) |
bool GetBoolArg | ( | const std::string & | strArg, |
bool | fDefault = false |
||
) |
const boost::filesystem::path& GetDataDir | ( | bool | fNetSpecific = true | ) |
std::string HexStr | ( | const T | itbegin, |
const T | itend, | ||
bool | fSpaces = false |
||
) |
|
inline |
bool IsHex | ( | const std::string & | str | ) |
void LogException | ( | std::exception * | pex, |
const char * | pszThread | ||
) |
void LoopForever | ( | const char * | name, |
Callable | func, | ||
int64 | msecs | ||
) |
std::vector<unsigned char> ParseHex | ( | const std::string & | str | ) |
bool ParseMoney | ( | const std::string & | str, |
int64 & | nRet | ||
) |
void ParseParameters | ( | int | argc, |
const char *const | argv[] | ||
) |
void ParseString | ( | const std::string & | str, |
char | c, | ||
std::vector< std::string > & | v | ||
) |
void PrintException | ( | std::exception * | pex, |
const char * | pszThread | ||
) |
void PrintExceptionContinue | ( | std::exception * | pex, |
const char * | pszThread | ||
) |
void PrintHex | ( | const T | pbegin, |
const T | pend, | ||
const char * | pszFormat = "%s" , |
||
bool | fSpaces = true |
||
) |
|
inline |
void ReadConfigFile | ( | std::map< std::string, std::string > & | mapSettingsRet, |
std::map< std::string, std::vector< std::string > > & | mapMultiSettingsRet | ||
) |
int std::string int std::string real_strprintf | ( | const std::string & | format, |
int | dummy, | ||
... | |||
) |
bool RenameOver | ( | boost::filesystem::path | src, |
boost::filesystem::path | dest | ||
) |
std::string SanitizeString | ( | const std::string & | str | ) |
void seed_insecure_rand | ( | bool | fDeterministic = false | ) |
bool SoftSetArg | ( | const std::string & | strArg, |
const std::string & | strValue | ||
) |
bool SoftSetBoolArg | ( | const std::string & | strArg, |
bool | fValue | ||
) |
bool TimingResistantEqual | ( | const T & | a, |
const T & | b | ||
) |
void TraceThread | ( | const char * | name, |
Callable | func | ||
) |
bool WildcardMatch | ( | const std::string & | str, |
const std::string & | mask | ||
) |
uint32_t insecure_rand_Rz |
std::map<std::string, std::vector<std::string> > mapMultiArgs |