OLD | NEW |
| (Empty) |
1 // Copyright 2016 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 MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_ | |
6 #define MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "mojo/shell/public/interfaces/connector.mojom.h" | |
11 | |
12 namespace mojo { | |
13 | |
14 // Represents the identity of an application. | |
15 // |name| is the structured name of the application. | |
16 // |instance| is a string that allows to tie a specific instance to another. A | |
17 // typical use case of instance is to control process grouping for a given name. | |
18 class Identity { | |
19 public: | |
20 Identity(); | |
21 Identity(const std::string& name, | |
22 const std::string& user_id); | |
23 Identity(const std::string& name, | |
24 const std::string& user_id, | |
25 const std::string& instance); | |
26 Identity(const Identity& other); | |
27 ~Identity(); | |
28 | |
29 bool operator<(const Identity& other) const; | |
30 bool is_null() const { return name_.empty(); } | |
31 bool operator==(const Identity& other) const; | |
32 | |
33 const std::string& name() const { return name_; } | |
34 const std::string& user_id() const { return user_id_; } | |
35 void set_user_id(const std::string& user_id) { user_id_ = user_id; } | |
36 const std::string& instance() const { return instance_; } | |
37 | |
38 private: | |
39 std::string name_; | |
40 std::string user_id_; | |
41 std::string instance_; | |
42 }; | |
43 | |
44 template <> | |
45 struct TypeConverter<shell::mojom::IdentityPtr, Identity> { | |
46 static shell::mojom::IdentityPtr Convert(const Identity& input); | |
47 }; | |
48 template <> | |
49 struct TypeConverter<Identity, shell::mojom::IdentityPtr> { | |
50 static Identity Convert(const shell::mojom::IdentityPtr& input); | |
51 }; | |
52 | |
53 } // namespace mojo | |
54 | |
55 #endif // MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_ | |
OLD | NEW |