2006-10-19 11:24:57 +00:00
|
|
|
/*
|
2015-02-18 17:26:52 +00:00
|
|
|
* Copyright 2006-2015, Haiku, Inc. All Rights Reserved.
|
2006-10-19 11:24:57 +00:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
|
|
*/
|
|
|
|
#ifndef SETTINGS_H
|
|
|
|
#define SETTINGS_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <Message.h>
|
2006-10-19 13:37:13 +00:00
|
|
|
#include <Messenger.h>
|
2013-09-30 01:11:23 +02:00
|
|
|
#include <Path.h>
|
2006-10-19 11:24:57 +00:00
|
|
|
|
|
|
|
|
2015-02-18 17:26:52 +00:00
|
|
|
namespace BNetworkKit {
|
|
|
|
|
|
|
|
|
|
|
|
class BNetworkSettings {
|
2010-06-11 07:29:16 +00:00
|
|
|
public:
|
2015-02-18 17:26:52 +00:00
|
|
|
static const uint32 kMsgInterfaceSettingsUpdated = 'SUif';
|
|
|
|
static const uint32 kMsgServiceSettingsUpdated = 'SUsv';
|
|
|
|
|
|
|
|
public:
|
|
|
|
BNetworkSettings();
|
|
|
|
~BNetworkSettings();
|
2010-06-11 07:29:16 +00:00
|
|
|
|
|
|
|
status_t GetNextInterface(uint32& cookie,
|
|
|
|
BMessage& interface);
|
2015-02-19 17:33:23 +00:00
|
|
|
status_t GetInterface(const char* name,
|
|
|
|
BMessage& interface);
|
2015-02-18 17:26:52 +00:00
|
|
|
status_t AddInterface(const BMessage& interface);
|
|
|
|
status_t RemoveInterface(const char* name);
|
2011-10-07 10:15:57 +00:00
|
|
|
|
2011-10-09 19:56:19 +00:00
|
|
|
int32 CountNetworks() const;
|
2010-12-09 00:11:15 +00:00
|
|
|
status_t GetNextNetwork(uint32& cookie,
|
2011-10-09 19:56:19 +00:00
|
|
|
BMessage& network) const;
|
2015-02-19 17:33:23 +00:00
|
|
|
status_t GetNetwork(const char* name,
|
|
|
|
BMessage& network);
|
2011-10-07 10:15:57 +00:00
|
|
|
status_t AddNetwork(const BMessage& network);
|
2011-10-09 19:56:19 +00:00
|
|
|
status_t RemoveNetwork(const char* name);
|
2011-10-07 10:15:57 +00:00
|
|
|
|
2015-02-19 17:33:23 +00:00
|
|
|
const BMessage& Services() const;
|
2010-06-11 07:29:16 +00:00
|
|
|
status_t GetNextService(uint32& cookie,
|
|
|
|
BMessage& service);
|
2015-02-19 17:33:23 +00:00
|
|
|
status_t GetService(const char* name, BMessage& service);
|
2015-02-18 17:26:52 +00:00
|
|
|
status_t AddService(const BMessage& service);
|
|
|
|
status_t RemoveService(const char* name);
|
2010-06-11 07:29:16 +00:00
|
|
|
|
|
|
|
status_t StartMonitoring(const BMessenger& target);
|
|
|
|
status_t StopMonitoring(const BMessenger& target);
|
|
|
|
|
|
|
|
status_t Update(BMessage* message);
|
|
|
|
|
|
|
|
private:
|
|
|
|
status_t _Load(const char* name = NULL,
|
|
|
|
uint32* _type = NULL);
|
2011-10-07 10:15:57 +00:00
|
|
|
status_t _Save(const char* name = NULL);
|
2013-09-30 01:11:23 +02:00
|
|
|
BPath _Path(BPath& parent, const char* name);
|
2010-06-11 07:29:16 +00:00
|
|
|
status_t _GetPath(const char* name, BPath& path);
|
|
|
|
|
|
|
|
status_t _StartWatching(const char* name,
|
|
|
|
const BMessenger& target);
|
2011-10-07 10:15:57 +00:00
|
|
|
|
2010-06-11 07:29:16 +00:00
|
|
|
bool _IsWatching(const BMessenger& target) const
|
|
|
|
{ return fListener == target; }
|
|
|
|
bool _IsWatching() const
|
|
|
|
{ return fListener.IsValid(); }
|
|
|
|
|
2015-02-18 17:26:52 +00:00
|
|
|
status_t _ConvertNetworkToSettings(BMessage& message);
|
|
|
|
status_t _ConvertNetworkFromSettings(BMessage& message);
|
2015-02-19 17:33:23 +00:00
|
|
|
|
|
|
|
status_t _GetItem(BMessage& container,
|
|
|
|
const char* itemField,
|
|
|
|
const char* nameField, const char* name,
|
|
|
|
int32& _index, BMessage& item);
|
2015-02-18 17:26:52 +00:00
|
|
|
status_t _RemoveItem(BMessage& container,
|
2015-02-19 17:33:23 +00:00
|
|
|
const char* itemField,
|
|
|
|
const char* nameField, const char* name,
|
|
|
|
const char* store = NULL);
|
2015-02-18 17:26:52 +00:00
|
|
|
|
2010-06-11 07:29:16 +00:00
|
|
|
private:
|
|
|
|
BMessenger fListener;
|
|
|
|
BMessage fInterfaces;
|
2010-12-13 22:24:39 +00:00
|
|
|
BMessage fNetworks;
|
2010-06-11 07:29:16 +00:00
|
|
|
BMessage fServices;
|
2006-10-19 11:24:57 +00:00
|
|
|
};
|
|
|
|
|
2010-06-11 07:29:16 +00:00
|
|
|
|
2015-02-18 17:26:52 +00:00
|
|
|
} // namespace BNetworkKit
|
2006-10-19 13:37:13 +00:00
|
|
|
|
2010-06-11 07:29:16 +00:00
|
|
|
|
2006-10-19 11:24:57 +00:00
|
|
|
#endif // SETTINGS_H
|