blob: 22ef5333f4da0c7d5222139371ac81791d5b7701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_HOST_CONFIG_H_
#define REMOTING_HOST_HOST_CONFIG_H_
#include <string>
#include "base/ref_counted.h"
class Task;
namespace remoting {
// Following constants define names for configuration parameters.
// Login used to authenticate in XMPP network.
extern const char* kXmppLoginConfigPath;
// Auth token used to authenticate in XMPP network.
extern const char* kXmppAuthTokenConfigPath;
// Unique identifier of the host used to register the host in directory.
// Normally a random UUID.
extern const char* kHostIdConfigPath;
// Readable host name.
extern const char* kHostNameConfigPath;
// Private keys used for host authentication.
extern const char* kPrivateKeyConfigPath;
// HostConfig interace provides read-only access to host configuration.
class HostConfig : public base::RefCountedThreadSafe<HostConfig> {
public:
HostConfig() { };
virtual ~HostConfig() { }
virtual bool GetString(const std::string& path, std::string* out_value) = 0;
DISALLOW_COPY_AND_ASSIGN(HostConfig);
};
// MutableHostConfig extends HostConfig for mutability.
class MutableHostConfig : public HostConfig {
public:
MutableHostConfig() { };
// Update() must be used to update config values.
// It acquires lock, calls the specified task, releases the lock and
// then schedules the config to be written to storage.
virtual void Update(Task* task) = 0;
// SetString() updates specified config value. This methods must only
// be called from task specified in Update().
virtual void SetString(const std::string& path,
const std::string& in_value) = 0;
DISALLOW_COPY_AND_ASSIGN(MutableHostConfig);
};
} // namespace remoting
#endif // REMOTING_HOST_HOST_CONFIG_H_
|