OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_HOST_HOST_CONFIG_H_ |
| 6 #define REMOTING_HOST_HOST_CONFIG_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/ref_counted.h" |
| 11 |
| 12 namespace remoting { |
| 13 |
| 14 // HostConfig class implements container for all host settings. |
| 15 class HostConfig : public base::RefCountedThreadSafe<HostConfig> { |
| 16 public: |
| 17 HostConfig() { } |
| 18 |
| 19 // Login used to authenticate in XMPP network. |
| 20 const std::string& xmpp_login() const { |
| 21 return xmpp_login_; |
| 22 } |
| 23 void set_xmpp_login(const std::string& xmpp_login) { |
| 24 xmpp_login_ = xmpp_login; |
| 25 } |
| 26 |
| 27 // Auth token used to authenticate in XMPP network. |
| 28 const std::string& xmpp_auth_token() const { |
| 29 return xmpp_auth_token_; |
| 30 } |
| 31 void set_xmpp_auth_token(const std::string& xmpp_auth_token) { |
| 32 xmpp_auth_token_ = xmpp_auth_token; |
| 33 } |
| 34 |
| 35 // Unique identifier of the host used to register the host in directory. |
| 36 // Normally a random UUID. |
| 37 const std::string& host_id() const { |
| 38 return host_id_; |
| 39 } |
| 40 void set_host_id(const std::string& host_id) { |
| 41 host_id_ = host_id; |
| 42 } |
| 43 |
| 44 // Public key used by the host for authentication. |
| 45 // TODO(sergeyu): Do we need to use other type to store public key? E.g. |
| 46 // DataBuffer? Revisit this when public key generation is implemented. |
| 47 const std::string& public_key() const { |
| 48 return public_key_; |
| 49 } |
| 50 void set_public_key(const std::string& public_key) { |
| 51 public_key_ = public_key; |
| 52 } |
| 53 |
| 54 // TODO(sergeyu): Add a property for private key. |
| 55 |
| 56 private: |
| 57 std::string xmpp_login_; |
| 58 std::string xmpp_auth_token_; |
| 59 std::string host_id_; |
| 60 std::string public_key_; |
| 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(HostConfig); |
| 63 }; |
| 64 |
| 65 // Interface for host configuration storage provider. |
| 66 class HostConfigStorage { |
| 67 // Load() and Save() are used to load/save settings to/from permanent |
| 68 // storage. For example FileHostConfig stores all settings in a file. |
| 69 // Simularly RegistryHostConfig stores settings in windows registry. |
| 70 // Both methods return false if operation has failed, true otherwise. |
| 71 virtual bool Load(HostConfig* config) = 0; |
| 72 virtual bool Save(const HostConfig& config) = 0; |
| 73 |
| 74 DISALLOW_COPY_AND_ASSIGN(HostConfigStorage); |
| 75 }; |
| 76 |
| 77 } // namespace remoting |
| 78 |
| 79 #endif // REMOTING_HOST_HOST_CONFIG_H_ |
OLD | NEW |