Classes | |
class | Builder |
Base class for the builder functor hierarchy. More... | |
class | RecordBuilder |
Template class for easy creation of specific protocol packet builder objects. More... | |
class | RecordFetch |
Generic record fetch class, to help with using records without builder classes. More... | |
class | Controller |
The main interface class. More... | |
class | Data |
class | Diff |
class | DataQueue |
This class provides a thread aware fifo queue for Data objects, providing memory management for all Data object pointers it contains. More... | |
class | Error |
The base class for any future derived exceptions. More... | |
class | BadPassword |
A bad or unknown password when talking to the device. More... | |
class | BadData |
Thrown by record classes if their data is invalid and cannot be uploaded to the Blackberry. More... | |
class | BadSize |
Unexpected packet size, or not enough data. More... | |
class | ErrnoError |
System error that provides an errno error code. More... | |
class | BadPackedFormat |
Thrown by record classes that don't recognize a given packed format code. More... | |
class | IConverter |
class | ContactLdif |
Class for generating LDIF output based on a Barry::Contact record object. More... | |
class | LogLock |
RAII locking class used to protect the logStream passed into Barry::Init() (common.h). More... | |
class | Modem |
class | Packet |
class | ZeroPacket |
Provides an API for building and analyzing socket-0 protocol packets. More... | |
class | DBPacket |
Provides an API for building and analyzing raw DB protocol packets. More... | |
class | Parser |
Base class for the parser hierarchy. More... | |
class | NullParser |
If in debug mode, this class can be used as a null parser. More... | |
class | RecordParser |
Template class for easy creation of specific parser objects. More... | |
class | PppFilter |
struct | ProbeResult |
class | Probe |
class | Calendar |
struct | ContactGroupLink |
class | Contact |
Represents a single record in the Address Book Blackberry database. More... | |
class | Folder |
class | Memo |
class | Message |
class | MessageBase |
class | PINMessage |
class | SavedMessage |
class | ServiceBookData |
class | ServiceBookConfig |
class | ServiceBook |
class | Task |
class | Timezone |
struct | FieldLink |
struct | CommandTableCommand |
class | CommandTable |
struct | RecordStateTableState |
class | RecordStateTable |
struct | DatabaseItem |
class | DatabaseDatabase |
struct | UnknownData |
struct | UnknownField |
struct | EmailAddress |
struct | PostalAddress |
struct | Date |
class | SocketRoutingQueue |
class | DataHandle |
std::auto_ptr like class that handles pointers to Data, but instead of freeing them completely, the Data objects are turned to the SocketRoutingQueue from whence they came. More... | |
class | scoped_lock |
struct | SHA_CTX |
class | SocketZero |
class | Socket |
Encapsulates a "logical socket" in the Blackberry USB protocol. More... | |
struct | TimeZone |
Functions | |
void | Init (bool data_dump_mode, std::ostream *logStream) |
Barry library initializer. | |
const TimeZone * | GetTimeZoneTable () |
Returns a pointer to an array of TimeZone structs. | |
const TimeZone * | GetTimeZone (unsigned short Code) |
Searches the internal timezone code table for the given Code and returns a pointer to a TimeZone struct found. | |
unsigned short | GetTimeZoneCode (signed short HourOffset, signed short MinOffset) |
Searches the internal timezone table for the first matching Code. | |
time_t | DayToDate (unsigned short Day) |
This routine takes the day of the year and returns a time_t adjusted from the first of the year. | |
time_t | Message2Time (uint16_t r_date, uint16_t r_time) |
Localize the funky math used to convert a Blackberry message timestamp into a time_t. | |
const char * | Version (int &major, int &minor) |
Fills major and minor with integer version numbers, and returns a string containing human readable version information in English. |
This is the only namespace applications should be concerned with, for now.
BXEXPORT time_t Barry::DayToDate | ( | unsigned short | Day | ) |
This routine takes the day of the year and returns a time_t adjusted from the first of the year.
FIXME This function assumes the year hasn't changed, but I don't have enough information to determine where the year is in this header info
Definition at line 186 of file time.cc.
Referenced by Message2Time().
BXEXPORT const TimeZone * Barry::GetTimeZone | ( | unsigned short | Code | ) |
Searches the internal timezone code table for the given Code and returns a pointer to a TimeZone struct found.
If the code is not found, a pointer to a valid TimeZone struct is is still returned, but the struct's Code contains TIME_ZONE_CODE_ERR, and the name is "Unknown time zone." The unknown timezone is the same offset as GMT.
BXEXPORT unsigned short Barry::GetTimeZoneCode | ( | signed short | HourOffset, | |
signed short | MinOffset | |||
) |
BXEXPORT const TimeZone * Barry::GetTimeZoneTable | ( | ) |
BXEXPORT void Barry::Init | ( | bool | data_dump_mode, | |
std::ostream * | logStream | |||
) |
Barry library initializer.
See also the LogLock class.
Call this before anything else. This takes care of initializing the lower level libusb.
[in] | data_dump_mode | If set to true, the protocol conversation will be sent to stdout via the C++ std::cout stream. |
[in] | LogStream | Pointer to std::ostream object to use for debug output and logging. Defaults to std::cout. |
BXEXPORT time_t Barry::Message2Time | ( | uint16_t | r_date, | |
uint16_t | r_time | |||
) |
Localize the funky math used to convert a Blackberry message timestamp into a time_t.
Both r_date and r_time are expected to be fed in from the Protocol::MessageRecord struct in raw form, without endian conversion. This function handles that.
Definition at line 217 of file time.cc.
References DayToDate().
BXEXPORT const char * Barry::Version | ( | int & | major, | |
int & | minor | |||
) |
Fills major and minor with integer version numbers, and returns a string containing human readable version information in English.
Definition at line 39 of file version.cc.