blob: e7dd6e857bb9f336851dfde98045451fd9a73622 [file] [log] [blame]
Colin Crossf45fa6b2012-03-26 12:38:26 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Felipe Leme8268ed22016-08-02 18:18:25 -070017#ifndef FRAMEWORK_NATIVE_CMD_DUMPSTATE_H_
18#define FRAMEWORK_NATIVE_CMD_DUMPSTATE_H_
Colin Crossf45fa6b2012-03-26 12:38:26 -070019
Felipe Lemecbce55d2016-02-08 09:53:18 -080020#ifndef MYLOGD
Felipe Leme60869c92016-02-09 16:07:20 -080021#define MYLOGD(...) fprintf(stderr, __VA_ARGS__); ALOGD(__VA_ARGS__);
Felipe Lemecbce55d2016-02-08 09:53:18 -080022#endif
23
24#ifndef MYLOGI
Felipe Leme60869c92016-02-09 16:07:20 -080025#define MYLOGI(...) fprintf(stderr, __VA_ARGS__); ALOGI(__VA_ARGS__);
Felipe Lemecbce55d2016-02-08 09:53:18 -080026#endif
27
28#ifndef MYLOGE
Felipe Leme60869c92016-02-09 16:07:20 -080029#define MYLOGE(...) fprintf(stderr, __VA_ARGS__); ALOGE(__VA_ARGS__);
Felipe Lemecbce55d2016-02-08 09:53:18 -080030#endif
Felipe Leme93d705b2015-11-10 20:10:25 -080031
Colin Crossf45fa6b2012-03-26 12:38:26 -070032#include <time.h>
33#include <unistd.h>
Colin Cross0c22e8b2012-11-02 15:46:56 -070034#include <stdbool.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070035#include <stdio.h>
Felipe Leme30dbfa12016-09-02 12:43:26 -070036
37#include <string>
Felipe Leme36b3f6f2015-11-19 15:41:04 -080038#include <vector>
Colin Crossf45fa6b2012-03-26 12:38:26 -070039
Felipe Leme35c94f32016-08-12 10:51:54 -070040// Workaround for const char *args[MAX_ARGS_ARRAY_SIZE] variables until they're converted to
41// std::vector<std::string>
Felipe Leme30dbfa12016-09-02 12:43:26 -070042// TODO: remove once not used
Felipe Leme35c94f32016-08-12 10:51:54 -070043#define MAX_ARGS_ARRAY_SIZE 1000
44
Felipe Leme30dbfa12016-09-02 12:43:26 -070045// TODO: remove once moved to HAL
Felipe Leme8620bb42015-11-10 11:04:45 -080046#ifdef __cplusplus
47extern "C" {
48#endif
49
Felipe Leme30dbfa12016-09-02 12:43:26 -070050/*
51 * Defines the Linux user that should be executing a command.
52 */
53enum RootMode {
54 /* Explicitly change the `uid` and `gid` to be `shell`.*/
55 DROP_ROOT,
56 /* Don't change the `uid` and `gid`. */
57 DONT_DROP_ROOT,
58 /* Prefix the command with `/PATH/TO/su root`. Won't work non user builds. */
59 SU_ROOT
60};
61
62/*
63 * Defines what should happen with the `stdout` stream of a command.
64 */
65enum StdoutMode {
66 /* Don't change `stdout`. */
67 NORMAL_STDOUT,
68 /* Redirect `stdout` to `stderr`. */
69 REDIRECT_TO_STDERR
70};
71
72/*
73 * Helper class used to report how long it takes for a section to finish.
74 *
75 * Typical usage:
76 *
77 * DurationReporter duration_reporter(title);
78 *
79 */
80class DurationReporter {
81 public:
Felipe Leme678727a2016-09-21 17:22:11 -070082 DurationReporter(const std::string& title);
83 DurationReporter(const std::string& title, FILE* out);
Felipe Leme30dbfa12016-09-02 12:43:26 -070084
85 ~DurationReporter();
86
Felipe Lemeb0f669d2016-09-26 18:26:11 -070087 static uint64_t Nanotime();
Felipe Leme30dbfa12016-09-02 12:43:26 -070088
89 private:
90 // TODO: use std::string for title, once dump_files() and other places that pass a char* are
91 // refactored as well.
Felipe Leme678727a2016-09-21 17:22:11 -070092 std::string title_;
Felipe Lemeb0f669d2016-09-26 18:26:11 -070093 FILE* out_;
94 uint64_t started_;
Felipe Leme30dbfa12016-09-02 12:43:26 -070095};
96
97/*
98 * Value object used to set command options.
99 *
100 * Typically constructed using a builder with chained setters. Examples:
101 *
102 * CommandOptions::WithTimeout(20).AsRoot().Build();
103 * CommandOptions::WithTimeout(10).Always().RedirectStderr().Build();
104 *
105 * Although the builder could be used to dynamically set values. Example:
106 *
107 * CommandOptions::CommandOptionsBuilder options =
108 * CommandOptions::WithTimeout(10);
109 * if (!is_user_build()) {
110 * options.AsRoot();
111 * }
Felipe Lemeb0f669d2016-09-26 18:26:11 -0700112 * RunCommand("command", {"args"}, options.Build());
Felipe Leme30dbfa12016-09-02 12:43:26 -0700113 */
114class CommandOptions {
115 private:
116 class CommandOptionsValues {
117 private:
118 CommandOptionsValues(long timeout);
119
Felipe Lemeb0f669d2016-09-26 18:26:11 -0700120 long timeout_;
121 bool always_;
122 RootMode rootMode_;
123 StdoutMode stdoutMode_;
124 std::string loggingMessage_;
Felipe Leme30dbfa12016-09-02 12:43:26 -0700125
126 friend class CommandOptions;
127 friend class CommandOptionsBuilder;
128 };
129
130 CommandOptions(const CommandOptionsValues& values);
131
Felipe Lemeb0f669d2016-09-26 18:26:11 -0700132 const CommandOptionsValues values_;
Felipe Leme30dbfa12016-09-02 12:43:26 -0700133
134 public:
135 class CommandOptionsBuilder {
136 public:
137 /* Sets the command to always run, even on `dry-run` mode. */
138 CommandOptionsBuilder& Always();
139 /* Sets the command's RootMode as `SU_ROOT` */
140 CommandOptionsBuilder& AsRoot();
141 /* Sets the command's RootMode as `DROP_ROOT` */
142 CommandOptionsBuilder& DropRoot();
143 /* Sets the command's StdoutMode `REDIRECT_TO_STDERR` */
144 CommandOptionsBuilder& RedirectStderr();
145 /* When not empty, logs a message before executing the command.
146 * Must contain a `%s`, which will be replaced by the full command line, and end on `\n`. */
147 CommandOptionsBuilder& Log(const std::string& message);
148 /* Builds the command options. */
149 CommandOptions Build();
150
151 private:
152 CommandOptionsBuilder(long timeout);
Felipe Lemeb0f669d2016-09-26 18:26:11 -0700153 CommandOptionsValues values_;
Felipe Leme30dbfa12016-09-02 12:43:26 -0700154 friend class CommandOptions;
155 };
156
157 /** Gets the command timeout, in seconds. */
158 long Timeout() const;
159 /* Checks whether the command should always be run, even on dry-run mode. */
160 bool Always() const;
161 /** Gets the RootMode of the command. */
162 RootMode RootMode() const;
163 /** Gets the StdoutMode of the command. */
164 StdoutMode StdoutMode() const;
165 /** Gets the logging message header, it any. */
166 std::string LoggingMessage() const;
167
168 /** Creates a builder with the requied timeout. */
169 static CommandOptionsBuilder WithTimeout(long timeout);
170
171 // Common options.
172 static CommandOptions DEFAULT;
173 static CommandOptions DEFAULT_DUMPSYS;
174 static CommandOptions AS_ROOT_5;
175 static CommandOptions AS_ROOT_10;
176 static CommandOptions AS_ROOT_20;
177};
178
Felipe Lemee844a9d2016-09-21 15:01:39 -0700179/*
180 * Estimated total weight of bugreport generation.
Felipe Leme71bbfc52015-11-23 14:14:51 -0800181 *
182 * Each section contributes to the total weight by an individual weight, so the overall progress
183 * can be calculated by dividing the all completed weight by the total weight.
184 *
185 * This value is defined empirically and it need to be adjusted as more sections are added.
Felipe Lemead5f6c42015-11-30 14:26:46 -0800186 *
187 * It does not need to match the exact sum of all sections, but ideally it should to be slight more
188 * than such sum: a value too high will cause the bugreport to finish before the user expected (for
Felipe Lemefaf67e32016-03-28 11:15:22 -0700189 * example, jumping from 70% to 100%), while a value too low will cause the progress to get stuck
190 * at an almost-finished value (like 99%) for a while.
Felipe Leme71bbfc52015-11-23 14:14:51 -0800191 */
Felipe Lemee844a9d2016-09-21 15:01:39 -0700192// TODO: move to dumpstate.cpp / utils.cpp once it's used in just one file
Felipe Lemefaf67e32016-03-28 11:15:22 -0700193static const int WEIGHT_TOTAL = 6500;
Felipe Leme71bbfc52015-11-23 14:14:51 -0800194
Felipe Leme71bbfc52015-11-23 14:14:51 -0800195/*
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700196 * List of supported zip format versions.
197 *
198 * See bugreport-format.md for more info.
199 */
200static std::string VERSION_DEFAULT = "1.0";
201
202/*
Felipe Lemee844a9d2016-09-21 15:01:39 -0700203 * Main class driving a bugreport generation.
204 *
205 * Currently, it only contains variables that are accessed externally, but gradually the functions
206 * that are spread accross utils.cpp and dumpstate.cpp will be moved to it.
207 */
208class Dumpstate {
Felipe Leme4c2d6632016-09-28 14:32:00 -0700209 friend class DumpstateTest;
210
Felipe Lemee844a9d2016-09-21 15:01:39 -0700211 public:
212 static Dumpstate& GetInstance();
Felipe Leme71bbfc52015-11-23 14:14:51 -0800213
Felipe Lemee844a9d2016-09-21 15:01:39 -0700214 /*
215 * When running in dry-run mode, skips the real dumps and just print the section headers.
216 *
217 * Useful when debugging dumpstate or other bugreport-related activities.
218 *
219 * Dry-run mode is enabled by setting the system property dumpstate.dry_run to true.
220 */
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700221 bool IsDryRun() const;
Felipe Leme71ca15e2016-05-19 16:18:17 -0700222
Felipe Leme678727a2016-09-21 17:22:11 -0700223 /*
Felipe Leme6ad9c062016-09-28 11:58:36 -0700224 * Gets whether device is running a `user` build.
225 */
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700226 bool IsUserBuild() const;
Felipe Leme6ad9c062016-09-28 11:58:36 -0700227
Felipe Leme1d486fe2016-10-14 18:06:47 -0700228 /* Checkes whether dumpstate is generating a zipped bugreport. */
229 bool IsZipping() const;
230
Felipe Leme6ad9c062016-09-28 11:58:36 -0700231 /*
Felipe Leme678727a2016-09-21 17:22:11 -0700232 * Forks a command, waits for it to finish, and returns its status.
233 *
234 * |title| description of the command printed on `stdout` (or empty to skip
235 * description).
236 * |full_command| array containing the command (first entry) and its arguments.
237 * Must contain at least one element.
238 * |options| optional argument defining the command's behavior.
239 */
240 int RunCommand(const std::string& title, const std::vector<std::string>& fullCommand,
241 const CommandOptions& options = CommandOptions::DEFAULT);
242
243 /*
244 * Runs `dumpsys` with the given arguments, automatically setting its timeout
245 * (`-t` argument)
246 * according to the command options.
247 *
248 * |title| description of the command printed on `stdout` (or empty to skip
249 * description).
250 * |dumpsys_args| `dumpsys` arguments (except `-t`).
251 * |options| optional argument defining the command's behavior.
Felipe Leme6ad9c062016-09-28 11:58:36 -0700252 * |dumpsysTimeout| when > 0, defines the value passed to `dumpsys -t` (otherwise it uses the
253 * timeout from `options`)
Felipe Leme678727a2016-09-21 17:22:11 -0700254 */
255 void RunDumpsys(const std::string& title, const std::vector<std::string>& dumpsysArgs,
256 const CommandOptions& options = CommandOptions::DEFAULT_DUMPSYS,
257 long dumpsysTimeout = 0);
258
259 /*
260 * Prints the contents of a file.
261 *
262 * |title| description of the command printed on `stdout` (or empty to skip
263 * description).
264 * |path| location of the file to be dumped.
265 */
266 int DumpFile(const std::string& title, const std::string& path);
267
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700268 /*
Felipe Leme1d486fe2016-10-14 18:06:47 -0700269 * Adds a new entry to the existing zip file.
270 * */
271 bool AddZipEntry(const std::string& entry_name, const std::string& entry_path);
272
273 /*
274 * Adds a new entry to the existing zip file.
275 */
276 bool AddZipEntryFromFd(const std::string& entry_name, int fd);
277
278 /*
279 * Adds a text entry entry to the existing zip file.
280 */
281 bool AddTextZipEntry(const std::string& entry_name, const std::string& content);
282
283 /*
284 * Adds all files from a directory to the zipped bugreport file.
285 */
286 void AddDir(const std::string& dir, bool recursive);
287
288 /*
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700289 * Takes a screenshot and save it to the given `path`.
290 *
291 * If `path` is empty, uses a standard path based on the bugreport name.
292 */
293 void TakeScreenshot(const std::string& path = "");
294
Felipe Lemed80e6b62016-10-03 13:08:14 -0700295 // TODO: members below should be private once refactor is finished
296
297 /*
298 * Updates the overall progress of the bugreport generation by the given weight increment.
299 */
300 void UpdateProgress(int delta);
301
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700302 /* Prints the dumpstate header on `stdout`. */
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700303 void PrintHeader() const;
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700304
Felipe Leme1d486fe2016-10-14 18:06:47 -0700305 /*
306 * Adds the temporary report to the existing .zip file, closes the .zip file, and removes the
307 * temporary file.
308 */
309 bool FinishZipFile();
310
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700311 /* Gets the path of a bugreport file with the given suffix. */
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700312 std::string GetPath(const std::string& suffix) const;
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700313
Felipe Lemee844a9d2016-09-21 15:01:39 -0700314 // TODO: initialize fields on constructor
315
316 // dumpstate id - unique after each device reboot.
317 unsigned long id_;
318
319 // Whether progress updates should be published.
320 bool updateProgress_ = false;
321
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700322 // Whether it should take an screenshot earlier in the process.
323 bool doEarlyScreenshot_ = false;
324
Felipe Lemee844a9d2016-09-21 15:01:39 -0700325 // Currrent progress.
326 int progress_ = 0;
327
328 // Total estimated progress.
329 int weightTotal_ = WEIGHT_TOTAL;
330
331 // When set, defines a socket file-descriptor use to report progress to bugreportz.
332 int controlSocketFd_ = -1;
333
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700334 // Bugreport format version;
335 std::string version_ = VERSION_DEFAULT;
Felipe Lemee844a9d2016-09-21 15:01:39 -0700336
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700337 // Command-line arguments as string
338 std::string args_;
339
340 // Extra options passed as system property.
341 std::string extraOptions_;
342
343 // Full path of the directory where the bugreport files will be written.
Felipe Lemee844a9d2016-09-21 15:01:39 -0700344 std::string bugreportDir_;
345
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700346 // Full path of the temporary file containing the screenshot (when requested).
347 std::string screenshotPath_;
348
349 time_t now_;
350
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700351 // Base name (without suffix or extensions) of the bugreport files, typically
352 // `bugreport-BUILD_ID`.
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700353 std::string baseName_;
354
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700355 // Name is the suffix part of the bugreport files - it's typically the date (when invoked with
356 // `-d`), but it could be changed by the user..
357 std::string name_;
358
Felipe Leme1d486fe2016-10-14 18:06:47 -0700359 // Full path of the temporary file containing the bugreport.
360 std::string tmp_path;
361
362 // Full path of the file containing the dumpstate logs.
363 std::string log_path;
364
365 // Pointer to the actual path, be it zip or text.
366 std::string path;
367
368 // Pointer to the zipped file.
369 std::unique_ptr<FILE, int (*)(FILE*)> zip_file{nullptr, fclose};
370
Felipe Lemee844a9d2016-09-21 15:01:39 -0700371 private:
Felipe Lemed80e6b62016-10-03 13:08:14 -0700372 // Used by GetInstance() only.
373 Dumpstate(bool dryRun = false, const std::string& buildType = "user");
374
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700375 // Internal version of RunCommand that just runs it, without updating progress.
376 int JustRunCommand(const char* command, const char* path, std::vector<const char*>& args,
377 const CommandOptions& options) const;
378
379 // Internal version of RunCommand that just dumps it, without updating progress.
380 int JustDumpFile(const std::string& title, const std::string& path) const;
381
Felipe Leme4c2d6632016-09-28 14:32:00 -0700382 // Whether this is a dry run.
383 bool dryRun_;
384
Felipe Lemed80e6b62016-10-03 13:08:14 -0700385 // Build type (such as 'user' or 'eng').
386 std::string buildType_;
Felipe Lemee844a9d2016-09-21 15:01:39 -0700387};
388
389// for_each_pid_func = void (*)(int, const char*);
390// for_each_tid_func = void (*)(int, int, const char*);
391
392typedef void(for_each_pid_func)(int, const char*);
393typedef void(for_each_tid_func)(int, int, const char*);
Felipe Leme71ca15e2016-05-19 16:18:17 -0700394
Felipe Leme71a74ac2016-03-17 15:43:25 -0700395/* saves the the contents of a file as a long */
396int read_file_as_long(const char *path, long int *output);
397
Christopher Ferris54bcc5f2015-02-10 12:15:01 -0800398/* prints the contents of the fd
399 * fd must have been opened with the flag O_NONBLOCK.
400 */
Christopher Ferris1fe61072014-07-22 16:08:19 -0700401int dump_file_from_fd(const char *title, const char *path, int fd);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700402
Mark Salyzyn326842f2015-04-30 09:49:41 -0700403/* calls skip to gate calling dump_from_fd recursively
404 * in the specified directory. dump_from_fd defaults to
405 * dump_file_from_fd above when set to NULL. skip defaults
406 * to false when set to NULL. dump_from_fd will always be
407 * called with title NULL.
408 */
Felipe Leme678727a2016-09-21 17:22:11 -0700409int dump_files(const std::string& title, const char* dir, bool (*skip)(const char* path),
410 int (*dump_from_fd)(const char* title, const char* path, int fd));
Mark Salyzyn326842f2015-04-30 09:49:41 -0700411
Felipe Lemecf6a8b42016-03-11 10:38:19 -0800412/* switch to non-root user and group */
413bool drop_root_user();
Felipe Leme93d705b2015-11-10 20:10:25 -0800414
Felipe Leme36b3f6f2015-11-19 15:41:04 -0800415/* sends a broadcast using Activity Manager */
416void send_broadcast(const std::string& action, const std::vector<std::string>& args);
417
Colin Crossf45fa6b2012-03-26 12:38:26 -0700418/* prints all the system properties */
419void print_properties();
420
Felipe Leme2628e9e2016-04-12 16:36:51 -0700421/** opens a socket and returns its file descriptor */
422int open_socket(const char *service);
423
Colin Crossf45fa6b2012-03-26 12:38:26 -0700424/* redirect output to a service control socket */
425void redirect_to_socket(FILE *redirect, const char *service);
426
Felipe Leme0f3fb202016-06-10 17:10:53 -0700427/* redirect output to a new file */
Christopher Ferrisff4a4dc2015-02-09 16:24:47 -0800428void redirect_to_file(FILE *redirect, char *path);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700429
Felipe Leme0f3fb202016-06-10 17:10:53 -0700430/* redirect output to an existing file */
431void redirect_to_existing_file(FILE *redirect, char *path);
432
Felipe Leme111b9d02016-02-03 09:28:24 -0800433/* create leading directories, if necessary */
434void create_parent_dirs(const char *path);
435
Jeff Brownbf7f4922012-06-07 16:40:01 -0700436/* dump Dalvik and native stack traces, return the trace file location (NULL if none) */
437const char *dump_traces();
Colin Crossf45fa6b2012-03-26 12:38:26 -0700438
439/* for each process in the system, run the specified function */
Colin Cross0c22e8b2012-11-02 15:46:56 -0700440void for_each_pid(for_each_pid_func func, const char *header);
441
442/* for each thread in the system, run the specified function */
443void for_each_tid(for_each_tid_func func, const char *header);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700444
445/* Displays a blocked processes in-kernel wait channel */
Colin Cross0c22e8b2012-11-02 15:46:56 -0700446void show_wchan(int pid, int tid, const char *name);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700447
Mark Salyzyna297c322016-02-05 15:33:17 -0800448/* Displays a processes times */
449void show_showtime(int pid, const char *name);
450
Colin Crossf45fa6b2012-03-26 12:38:26 -0700451/* Runs "showmap" for a process */
452void do_showmap(int pid, const char *name);
453
454/* Gets the dmesg output for the kernel */
455void do_dmesg();
456
Sreeram Ramachandran2b3bba32014-07-08 15:40:55 -0700457/* Prints the contents of all the routing tables, both IPv4 and IPv6. */
458void dump_route_tables();
459
Colin Crossf45fa6b2012-03-26 12:38:26 -0700460/* Play a sound via Stagefright */
Christopher Ferris1fe61072014-07-22 16:08:19 -0700461void play_sound(const char *path);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700462
463/* Implemented by libdumpstate_board to dump board-specific info */
464void dumpstate_board();
465
Felipe Leme0c80cf02016-01-05 13:25:34 -0800466/* Vibrates for a given durating (in milliseconds). */
467void vibrate(FILE* vibrator, int ms);
468
469/* Checks if a given path is a directory. */
470bool is_dir(const char* pathname);
471
472/** Gets the last modification time of a file, or default time if file is not found. */
473time_t get_mtime(int fd, time_t default_mtime);
474
Calvin On249beee2016-06-03 15:17:07 -0700475/* Dumps eMMC Extended CSD data. */
Felipe Leme78f2c862015-12-21 09:55:22 -0800476void dump_emmc_ecsd(const char *ext_csd_path);
477
Calvin On249beee2016-06-03 15:17:07 -0700478/** Gets command-line arguments. */
Felipe Lemea34efb72016-03-11 09:33:32 -0800479void format_args(int argc, const char *argv[], std::string *args);
Felipe Leme88c79332016-02-22 11:06:49 -0800480
Calvin On249beee2016-06-03 15:17:07 -0700481/** Tells if the device is running a user build. */
482bool is_user_build();
483
Felipe Leme8620bb42015-11-10 11:04:45 -0800484#ifdef __cplusplus
485}
486#endif
487
Felipe Leme8268ed22016-08-02 18:18:25 -0700488#endif /* FRAMEWORK_NATIVE_CMD_DUMPSTATE_H_ */