How to use wxAIM:
(Instructions for the impatient)
wxAIM comes with an example driver application. I highly recommend that you take a look at that example to see how wxAIM works. If you have wxWidgets setup (and I know that's not easy...) then this project will compile "right out of the box." The driver is a simple 2-textbox window (sort of like a console), that accepts the following commands:
Event Table - every graphical wxWidgets application has an event queue. This queue holds information about what is happening. For instance, when the user clicks a (hypothetical) button, there's an event that is inserted into the event queue, telling the application "Hey, the user clicked that. Do something..." (And yes, programs talk exactly like that :-). Some events are handled automatically by the application (such as "redraw" events to repaint a window) and some must be intercepted explicitly. So, when you want to intercept a certain event, you must define an "event handler" in the "event table." This basically amounts to the following code (which can be seen in app.cpp):
BEGIN_EVENT_TABLE(CommandFrame, wxFrame)
EVT_CLOSE(CommandFrame::OnClose)
EVT_TEXT_ENTER(TXT_COMMAND, CommandFrame::OnCommand)
EVT_AIM_GENERAL(CommandFrame::OnAIMEvent)
EVT_AIM_PROFILE(CommandFrame::OnProfile)
EVT_AIM_AVAILABILITY(CommandFrame::OnAvailability)
EVT_AIM_INSTANT_MESSAGE(CommandFrame::OnInstantMessage)
EVT_AIM_TYPING_NOTIFICATION(CommandFrame::OnTypingNotification)
END_EVENT_TABLE()
The events of interest here are anything that contains EVT_AIM at the beginning. They're all pretty self explanatory. See the corresponding event handler functions in app.cpp to see how each event handler is implemented, and how relevant information is obtained.
EVT_AIM_GENERAL requires a little more explanation. This event is raised when a general AIM event occurs. A general AIM event is anything listed in the AIM_Event enumeration (found in definitions.h, way down at the bottom of the file.) A general event contains a "type" variable, which identifies why the general event has been raised.
Here are the possible types for a general event:
enum AIM_Event
{
CONNECT, // A connection has been established.
DISCONNECT, // A connection was disconnected.
CONNECTION_LOST, // A connection was lost (not gracefully.) (I know this is redundant to DISCONNECT. It may be removed in the future...)
REDIRECT, // A "redirection" has been initiated to another server. Don't worry about this one for now, as it hasn't been fully implemented.
AUTHENTICATION_FAILED, // Your AIM_Wrapper::Connect call failed, because the AIM server refused the user name and password.
AUTHENTICATION_SUCCEEDED, // You're authentication succeeded. You will be logged into the BOS server momentarily.
SSI_BUDDYLIST_OBTAINED, // Your buddylist has been obtained. It can be recalled using AIM_Wrapper::Get_Buddylist
SSI_BUDDYLIST_UP_TO_DATE, // Ignore this one for now.
RATE_LIMIT_WARNING // You're sending too much information. (Probably sending too many messages too fast.) Stop sending messages for a while.
CLIENT_ONLINE // You may perform all normal AIM functions after this event is raised.
};
Setting the event handler - to make the event table work, you'll need to tell wxAIM where to send the events. This is done via AIM_Wrapper::Set_Event_Handler. The argument to the function can be any wxEvtHandler class, or any class derived from wxEvtHandler.
Specialized events - all the events that are passed to the application by wxAIM are derived from the wxEvent class. Here is a description of each derived type:
Handler function format: void [Your event handler class here]::OnAIMEvent(AIM_General_Event& Event)
AIM_General_Event has a single member variable called Type. This member variable informs the user of what kind of general event just occurred.
(Note, all mentioned member variables are in addition to the member variables that are inherited from wxEvent.)
Handler function format: void [Your event handler class here]::OnProfile(Profile& Info)
This event class has three member variables. The first is a User_Info structure, specifying general information about the user that was just queried. The second is a std::string called Away_Message, which contains the away message of the given user. If this member variable is empty then the user either has no away message or an away message with no text. The last member variable is a std::string containing the user's profile information.
Handler function format: void [Your event handler class here]::OnAvailability(Availability_Notification& Notify)
This event class has two member variables. The first is a User_Info structure, specifying general information about the user that you are receiving the availability notification about. The second is a boolean called Online, which specifies whether the user is currently online or offline.
Handler function format: void [Your event handler class here]::OnInstantMessage(Instant_Message& Msg)
This event class has four member variables. The first is a std::string called Sender, specifying who sent you the message. The second is a std::string called Message that contains the message that you've just been sent. The third is a WORD (or unsigned short) called Sender_Warning_Level. This variable is pretty much useless, as it only reports the sender's warning level. This might be depreciated in future releases, seeing as how AIM seems to be depreciating the warning system as a whole. (Go ahead and try warning someone on regular IM. Betcha it doesn't work.) The last member variable is a boolean called Error_Flag. This boolean is true when there was a problem parsing the IM. Currently, wxAIM can only parse ASCII messages, though other AIM clients could potentially send Unicode, or other types of messages. If that is the case, then wxAIM will not be able to properly parse the IM.
Handler function format: void [Your event handler class here]::OnTypingNotification(Typing_Notification& Event)
This event class has three member variables. The first is a std::string called User_Name, specifying who sent you the typing notification. The second is an enumerated type called Status. This specifies whether the user is typing text, has entered text, or has finished typing. The last member variable is called Channel. Ignore it for now.
Here are the possible values of Status:
enum Typing_Notification_Status
{
TYPING_FINISHED = 0x0000,
TEXT_TYPED = 0x0001,
TYPING_IN_PROGRESS = 0x0002
};
The User_Info block - the user info block is often sent in the OSCAR protocol. It contains general information about a user. Here is the class definition (found in containers.h):
class User_Info
{
public:
User_Info();
void Clear(); // Initialized all values to 0, or empty.
std::string Name;
WORD Warning_Level;
WORD User_Class;
DWORD Account_Creation_Time;
DWORD Sign_On_Time;
WORD Idle_Time;
DWORD Member_Since;
DWORD Session_Duration; // Indicating how long the user has been signed on to AIM.
WORD Present;
};
There is no guarantee that every field of this user info class will be filled when a user info block is parsed. Therefore, WORD Present is a bit mask that indicates which fields of the class have been filled.
To check whether a given field was present when the block was parsed, perform a bitwise AND with WORD Present and a given "field bit." For example:
(Assume Info_Block is a properly parsed User_Info_Block)
if(Info_Block.Present & USER_INFO_IDLE_TIME_PRESENT)
; // Do something useful with the user's idle time here...
else
; // The user info block does not contain a valid idle time field...
A list of bit masks for the User_Info_Block field are as follows:
(these are defined in containers.h)
USER_INFO_USER_CLASS_PRESENT
USER_INFO_ACCOUNT_CREATION_TIME_PRESENT
USER_INFO_SIGN_ON_TIME_PRESENT
USER_INFO_IDLE_TIME_PRESENT
USER_INFO_MEMBER_SINCE_PRESENT
USER_INFO_SESSION_DURATION_PRESENT
Here is a more detailed account of the user info block for the OSCAR protocol. (Background information about OSCAR is required to understand it though...)
Normal operation - to reiterate: after you're connected to a BOS server, send any command you wish using the following functions:
Terminology -
BOS - Basic OSCAR Service. This is the "main server" that you connect to when using AIM.
OSCAR - Open System for Communication in Realtime.
Relevent links -
Comments - please contact the wxAIM project (via the SourceForge forums) if you have any questions, comments, or bug reports. I'll be happy to answer questions about the use of wxAIM or the OSCAR protocol in general.