131 lines
2.4 KiB
C++
131 lines
2.4 KiB
C++
/*
|
|
* Copyright 2009, Andrea Anzani. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Andrea Anzani, andrea.anzani@gmail.com
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <image.h>
|
|
|
|
#include <Directory.h>
|
|
#include <Entry.h>
|
|
#include <Handler.h>
|
|
|
|
#include "Account.h"
|
|
#include "ProtocolManager.h"
|
|
#include "CayaProtocol.h"
|
|
#include "CayaUtils.h"
|
|
#include "MainWindow.h"
|
|
#include "Server.h"
|
|
#include "TheApp.h"
|
|
|
|
static ProtocolManager* fInstance = NULL;
|
|
|
|
|
|
void
|
|
ProtocolManager::Init(BDirectory dir, BHandler* target)
|
|
{
|
|
BEntry entry;
|
|
BPath path;
|
|
|
|
dir.Rewind();
|
|
|
|
while (dir.GetNextEntry(&entry) == B_OK) {
|
|
path = BPath(&entry);
|
|
|
|
// Load protocol addon
|
|
image_id id = load_add_on(path.Path());
|
|
if (id < 0)
|
|
continue;
|
|
|
|
CayaProtocolAddOn* addOn = new CayaProtocolAddOn(id, path.Path());
|
|
fAddOnMap.AddItem(addOn->Signature(), addOn);
|
|
|
|
_GetAccounts(addOn, target);
|
|
}
|
|
}
|
|
|
|
|
|
ProtocolManager::ProtocolManager()
|
|
{
|
|
}
|
|
|
|
|
|
ProtocolManager*
|
|
ProtocolManager::Get()
|
|
{
|
|
if (fInstance == NULL)
|
|
fInstance = new ProtocolManager();
|
|
return fInstance;
|
|
}
|
|
|
|
|
|
ProtocolAddOns
|
|
ProtocolManager::Protocols()
|
|
{
|
|
return fAddOnMap.Values();
|
|
}
|
|
|
|
|
|
ProtocolMap
|
|
ProtocolManager::ProtocolInstances() const
|
|
{
|
|
return fProtocolMap;
|
|
}
|
|
|
|
|
|
CayaProtocol*
|
|
ProtocolManager::ProtocolInstance(bigtime_t identifier)
|
|
{
|
|
return fProtocolMap.ValueFor(identifier);
|
|
}
|
|
|
|
|
|
CayaProtocolAddOn*
|
|
ProtocolManager::ProtocolAddOn(const char* signature)
|
|
{
|
|
return fAddOnMap.ValueFor(signature);
|
|
}
|
|
|
|
|
|
void
|
|
ProtocolManager::AddAccount(CayaProtocolAddOn* addOn, const char* account,
|
|
BHandler* target)
|
|
{
|
|
bigtime_t instanceId = system_time();
|
|
CayaProtocol* cayap = addOn->Protocol();
|
|
(void)new Account(instanceId, cayap, account, target);
|
|
fProtocolMap.AddItem(instanceId, cayap);
|
|
|
|
TheApp* theApp = reinterpret_cast<TheApp*>(be_app);
|
|
theApp->GetMainWindow()->GetServer()->AddProtocolLooper(
|
|
instanceId, cayap);
|
|
}
|
|
|
|
|
|
void
|
|
ProtocolManager::_GetAccounts(CayaProtocolAddOn* addOn, BHandler* target)
|
|
{
|
|
// Find accounts path for this protocol
|
|
BPath path(CayaAccountPath(addOn->Signature()));
|
|
if (path.InitCheck() != B_OK)
|
|
return;
|
|
|
|
BDirectory dir(path.Path());
|
|
BEntry entry;
|
|
while (dir.GetNextEntry(&entry) == B_OK) {
|
|
BFile file(&entry, B_READ_ONLY);
|
|
BMessage msg;
|
|
|
|
if (msg.Unflatten(&file) == B_OK) {
|
|
char buffer[B_PATH_NAME_LENGTH];
|
|
if (entry.GetName(buffer) == B_OK) {
|
|
printf("Found %s for protocol %s!\n", buffer, addOn->Signature());
|
|
AddAccount(addOn, buffer, target);
|
|
}
|
|
}
|
|
}
|
|
}
|