2006-10-19 15:24:57 +04:00
|
|
|
/*
|
2010-06-11 11:29:16 +04:00
|
|
|
* Copyright 2006-2010, Haiku, Inc. All Rights Reserved.
|
2006-10-19 15:24:57 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
|
|
*/
|
|
|
|
#ifndef SETTINGS_H
|
|
|
|
#define SETTINGS_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <driver_settings.h>
|
|
|
|
#include <Message.h>
|
2006-10-19 17:37:13 +04:00
|
|
|
#include <Messenger.h>
|
2006-10-19 15:24:57 +04:00
|
|
|
|
|
|
|
|
2007-07-04 23:42:16 +04:00
|
|
|
class BPath;
|
|
|
|
struct settings_template;
|
2006-10-19 15:24:57 +04:00
|
|
|
|
|
|
|
|
|
|
|
class Settings {
|
2010-06-11 11:29:16 +04:00
|
|
|
public:
|
|
|
|
Settings();
|
|
|
|
~Settings();
|
|
|
|
|
|
|
|
status_t GetNextInterface(uint32& cookie,
|
|
|
|
BMessage& interface);
|
2010-12-09 03:11:15 +03:00
|
|
|
status_t GetNextNetwork(uint32& cookie,
|
|
|
|
BMessage& network);
|
2010-06-11 11:29:16 +04:00
|
|
|
status_t GetNextService(uint32& cookie,
|
|
|
|
BMessage& service);
|
|
|
|
const BMessage& Services() const;
|
|
|
|
|
|
|
|
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);
|
|
|
|
status_t _GetPath(const char* name, BPath& path);
|
|
|
|
|
|
|
|
status_t _StartWatching(const char* name,
|
|
|
|
const BMessenger& target);
|
|
|
|
const settings_template* _FindSettingsTemplate(
|
|
|
|
const settings_template* settingsTemplate,
|
|
|
|
const char* name);
|
|
|
|
const settings_template* _FindParentValueTemplate(
|
|
|
|
const settings_template* settingsTemplate);
|
|
|
|
status_t _AddParameter(const driver_parameter& parameter,
|
|
|
|
const char* name, uint32 type,
|
|
|
|
BMessage& message);
|
|
|
|
|
|
|
|
status_t _ConvertFromDriverParameter(
|
|
|
|
const driver_parameter& parameter,
|
|
|
|
const settings_template* settingsTemplate,
|
|
|
|
BMessage& message);
|
|
|
|
status_t _ConvertFromDriverSettings(
|
|
|
|
const driver_settings& settings,
|
|
|
|
const settings_template* settingsTemplate,
|
|
|
|
BMessage& message);
|
|
|
|
status_t _ConvertFromDriverSettings(const char* path,
|
|
|
|
const settings_template* settingsTemplate,
|
|
|
|
BMessage& message);
|
|
|
|
|
|
|
|
bool _IsWatching(const BMessenger& target) const
|
|
|
|
{ return fListener == target; }
|
|
|
|
bool _IsWatching() const
|
|
|
|
{ return fListener.IsValid(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
BMessenger fListener;
|
|
|
|
BMessage fInterfaces;
|
|
|
|
BMessage fServices;
|
2006-10-19 15:24:57 +04:00
|
|
|
};
|
|
|
|
|
2010-06-11 11:29:16 +04:00
|
|
|
|
2006-10-19 17:37:13 +04:00
|
|
|
static const uint32 kMsgInterfaceSettingsUpdated = 'SUif';
|
2006-12-22 23:53:08 +03:00
|
|
|
static const uint32 kMsgServiceSettingsUpdated = 'SUsv';
|
2006-10-19 17:37:13 +04:00
|
|
|
|
2010-06-11 11:29:16 +04:00
|
|
|
|
2006-10-19 15:24:57 +04:00
|
|
|
#endif // SETTINGS_H
|