OLD | NEW |
| (Empty) |
1 // Copyright 2014 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 #include <map> | |
6 #include <string> | |
7 #include <vector> | |
8 | |
9 #include "base/macros.h" | |
10 #include "base/synchronization/lock.h" | |
11 #include "breakpad/src/client/windows/common/ipc_protocol.h" | |
12 #include "breakpad/src/client/windows/handler/exception_handler.h" | |
13 | |
14 | |
15 namespace base { | |
16 class CommandLine; | |
17 } // namespace base | |
18 | |
19 namespace crash_reporter { | |
20 class CrashReporterClient; | |
21 } | |
22 | |
23 namespace breakpad { | |
24 | |
25 // Manages the breakpad key/value pair stash, there may only be one instance | |
26 // of this class per process at one time. | |
27 class CrashKeysWin { | |
28 public: | |
29 CrashKeysWin(); | |
30 ~CrashKeysWin(); | |
31 | |
32 // May only be called once. | |
33 // |exe_path| is the path to the executable running, which may be used | |
34 // to figure out whether this is a user or system install. | |
35 // |type| is the process type, or mode this process is running in e.g. | |
36 // something like "browser" or "renderer". | |
37 // |profile_type| is a string describing the kind of the user's Windows | |
38 // profile, e.g. "mandatory", or "roaming" or similar. | |
39 // |cmd_line| is the current process' command line consulted for explicit | |
40 // crash reporting flags. | |
41 // |crash_client| is consulted for crash reporting settings. | |
42 google_breakpad::CustomClientInfo* GetCustomInfo( | |
43 const std::wstring& exe_path, | |
44 const std::wstring& type, | |
45 const std::wstring& profile_type, | |
46 base::CommandLine* cmd_line, | |
47 crash_reporter::CrashReporterClient* crash_client); | |
48 | |
49 void SetCrashKeyValue(const std::wstring& key, const std::wstring& value); | |
50 void ClearCrashKeyValue(const std::wstring& key); | |
51 | |
52 const std::vector<google_breakpad::CustomInfoEntry>& custom_info_entries() | |
53 const { | |
54 return custom_entries_; | |
55 } | |
56 | |
57 static CrashKeysWin* keeper() { return keeper_; } | |
58 | |
59 private: | |
60 // One-time initialization of private key/value pairs. | |
61 void SetPluginPath(const std::wstring& path); | |
62 void SetBreakpadDumpPath(crash_reporter::CrashReporterClient* crash_client); | |
63 | |
64 // Must not be resized after GetCustomInfo is invoked. | |
65 std::vector<google_breakpad::CustomInfoEntry> custom_entries_; | |
66 | |
67 typedef std::map<std::wstring, google_breakpad::CustomInfoEntry*> | |
68 DynamicEntriesMap; | |
69 base::Lock lock_; | |
70 // Keeps track of the next index for a new dynamic entry. | |
71 size_t dynamic_keys_offset_; // Under lock_. | |
72 // Maintains key->entry information for dynamic key/value entries | |
73 // in custom_entries_. | |
74 DynamicEntriesMap dynamic_entries_; // Under lock_. | |
75 | |
76 // Stores the sole instance of this class allowed per process. | |
77 static CrashKeysWin* keeper_; | |
78 | |
79 DISALLOW_COPY_AND_ASSIGN(CrashKeysWin); | |
80 }; | |
81 | |
82 } // namespace breakpad | |
OLD | NEW |