OpenCPN Partial API docs
|
Standard, mostly strings utilities. More...
Functions | |
wxString | toUsrDateTimeFormat (const wxDateTime date_time, const DateTimeFormatOptions &options) |
bool | endswith (const std::string &s, const std::string &suffix) |
Return true if s ends with given suffix. | |
bool | startswith (const std::string &s, const std::string &prefix) |
Return true if s starts with given prefix. | |
std::vector< std::string > | split (const char *s, const std::string &delimiter) |
Return vector of items in s separated by delimiter. | |
std::vector< std::string > | split (const std::string &s, const std::string &delimiter) |
Return vector of items in s separated by delimiter. | |
bool | exists (const std::string &name) |
void | mkdir (const std::string path) |
std::string | ltrim (const std::string &s) |
Strip possibly leading space characters in s. | |
std::string | rtrim (const std::string &s) |
Strip possibly trailing space characters in s. | |
std::string | trim (std::string s) |
Strip possibly trailing and/or leading space characters in s. | |
std::string | join (std::vector< std::string > v, char c) |
Return a single string being the concatenation of all elements in v with character c in between. | |
std::string | tolower (const std::string &s) |
Return copy of s with all characters converted to lower case. | |
bool | replace (std::string &str, const std::string &from, const std::string &to) |
Perform in place substitution in str, replacing "from" with "to". | |
void | copy_file (const std::string &src_path, const std::string &dest_path) |
Copy file contents in path src_path to dest_path. | |
bool | N0183CheckSumOk (const std::string &sentence) |
Check if checksum in a NMEA0183 sentence is correct. | |
std::string | printable (const std::string &str) |
Return copy of str with non-printable chars replaced by hex like "<0D>". | |
std::string | get_basename (const char *path) |
bool | store_metadata (const char *path) |
Store metadata in metadata cache, return success/fail. | |
std::string | lookup_metadata (const char *name=0) |
Get metadata path for a given name defaulting to ocpn-plugins.xml) | |
bool | store_tarball (const char *path, const char *basename) |
Store a tarball in tarball cache, return success/fail. | |
std::string | lookup_tarball (const char *basename) |
Get path to tarball in cache for given filename. | |
unsigned | cache_file_count () |
Return number of files in cache. | |
unsigned long | cache_size () |
Return total size of files in cache in kbytes. | |
void | cache_clear () |
Remove all files in cache: | |
wxString | toUsrDateTimeFormat (const wxDateTime date_time, const ::DateTimeFormatOptions &options=::DateTimeFormatOptions()) |
Format a date/time to a localized string representation, conforming to the formatting options. | |
Standard, mostly strings utilities.
void ocpn::cache_clear | ( | ) |
Remove all files in cache:
Definition at line 163 of file plugin_cache.cpp.
unsigned ocpn::cache_file_count | ( | ) |
Return number of files in cache.
Definition at line 115 of file plugin_cache.cpp.
unsigned long ocpn::cache_size | ( | ) |
Return total size of files in cache in kbytes.
Definition at line 132 of file plugin_cache.cpp.
void ocpn::copy_file | ( | const std::string & | src_path, |
const std::string & | dest_path | ||
) |
Copy file contents in path src_path to dest_path.
Definition at line 143 of file ocpn_utils.cpp.
bool ocpn::endswith | ( | const std::string & | str, |
const std::string & | suffix | ||
) |
Return true if s ends with given suffix.
Definition at line 45 of file ocpn_utils.cpp.
bool ocpn::exists | ( | const std::string & | path | ) |
Definition at line 75 of file ocpn_utils.cpp.
std::string ocpn::get_basename | ( | const char * | path | ) |
Definition at line 68 of file plugin_cache.cpp.
std::string ocpn::join | ( | std::vector< std::string > | v, |
char | c | ||
) |
Return a single string being the concatenation of all elements in v with character c in between.
Definition at line 119 of file ocpn_utils.cpp.
std::string ocpn::lookup_metadata | ( | const char * | name = 0 | ) |
Get metadata path for a given name defaulting to ocpn-plugins.xml)
Definition at line 93 of file plugin_cache.cpp.
std::string ocpn::lookup_tarball | ( | const char * | basename | ) |
Get path to tarball in cache for given filename.
Definition at line 109 of file plugin_cache.cpp.
std::string ocpn::ltrim | ( | const std::string & | s | ) |
Strip possibly leading space characters in s.
Definition at line 94 of file ocpn_utils.cpp.
void ocpn::mkdir | ( | const std::string | path | ) |
Definition at line 84 of file ocpn_utils.cpp.
bool ocpn::N0183CheckSumOk | ( | const std::string & | sentence | ) |
Check if checksum in a NMEA0183 sentence is correct.
sentence | complete NMEA01832 message |
Definition at line 153 of file ocpn_utils.cpp.
std::string ocpn::printable | ( | const std::string & | str | ) |
Return copy of str with non-printable chars replaced by hex like "<0D>".
Definition at line 170 of file ocpn_utils.cpp.
bool ocpn::replace | ( | std::string & | str, |
const std::string & | from, | ||
const std::string & | to | ||
) |
Perform in place substitution in str, replacing "from" with "to".
Definition at line 136 of file ocpn_utils.cpp.
std::string ocpn::rtrim | ( | const std::string & | s | ) |
Strip possibly trailing space characters in s.
Definition at line 103 of file ocpn_utils.cpp.
std::vector< std::string > ocpn::split | ( | const char * | token_string, |
const std::string & | delimiter | ||
) |
Return vector of items in s separated by delimiter.
Definition at line 55 of file ocpn_utils.cpp.
std::vector< std::string > ocpn::split | ( | const std::string & | string, |
const std::string & | delimiter | ||
) |
Return vector of items in s separated by delimiter.
Definition at line 70 of file ocpn_utils.cpp.
bool ocpn::startswith | ( | const std::string & | str, |
const std::string & | prefix | ||
) |
Return true if s starts with given prefix.
Definition at line 50 of file ocpn_utils.cpp.
bool ocpn::store_metadata | ( | const char * | path | ) |
Store metadata in metadata cache, return success/fail.
Definition at line 84 of file plugin_cache.cpp.
bool ocpn::store_tarball | ( | const char * | path, |
const char * | basename | ||
) |
Store a tarball in tarball cache, return success/fail.
Definition at line 101 of file plugin_cache.cpp.
std::string ocpn::tolower | ( | const std::string & | input | ) |
Return copy of s with all characters converted to lower case.
Definition at line 130 of file ocpn_utils.cpp.
wxString ocpn::toUsrDateTimeFormat | ( | const wxDateTime | date_time, |
const ::DateTimeFormatOptions & | options = ::DateTimeFormatOptions() |
||
) |
Format a date/time to a localized string representation, conforming to the formatting options.
date_time | The date/time to format. |
options | The date/time format options. |
wxString ocpn::toUsrDateTimeFormat | ( | const wxDateTime | date_time, |
const DateTimeFormatOptions & | options | ||
) |
Definition at line 31 of file datetime.cpp.
std::string ocpn::trim | ( | std::string | s | ) |
Strip possibly trailing and/or leading space characters in s.
Definition at line 113 of file ocpn_utils.cpp.