blob: faad03d076e6833b03ff04f197a7d7282f9dcec1 [file] [log] [blame]
Elliott Hughes58305772015-04-17 13:57:15 -07001/*
2 * Copyright (C) 2015 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
Elliott Hughesd2aaede2018-10-22 17:02:51 -070017#pragma once
Elliott Hughes58305772015-04-17 13:57:15 -070018
Josh Gao0b13c892017-05-31 11:54:56 -070019#include <condition_variable>
20#include <mutex>
Elliott Hughes58305772015-04-17 13:57:15 -070021#include <string>
Josh Gao3add0c42018-12-20 13:17:04 -080022#include <string_view>
23#include <type_traits>
Josh Gao0b13c892017-05-31 11:54:56 -070024#include <vector>
Elliott Hughes58305772015-04-17 13:57:15 -070025
Josh Gaof0d3b4f2016-03-04 15:15:56 -080026#include <android-base/macros.h>
27
Josh Gao99d3d702018-10-11 13:49:24 -070028#include "adb.h"
Josh Gao27241a72019-04-25 14:04:57 -070029#include "adb_unique_fd.h"
Josh Gao99d3d702018-10-11 13:49:24 -070030
Josh Gao7d586072015-11-20 15:37:31 -080031void close_stdin();
32
Elliott Hughesa7090b92015-04-17 17:03:59 -070033bool getcwd(std::string* cwd);
Elliott Hughes58305772015-04-17 13:57:15 -070034bool directory_exists(const std::string& path);
Spencer Low22191c32015-08-01 17:29:23 -070035
Yurii Zubrytskyi376b2752016-05-25 15:17:10 -070036// Return the user's home directory.
Josh Gaoe0b75022016-08-30 15:23:35 -070037std::string adb_get_homedir_path();
38
39// Return the adb user directory.
40std::string adb_get_android_dir_path();
Yurii Zubrytskyi376b2752016-05-25 15:17:10 -070041
Alex Vallée47d67c92015-05-06 16:26:00 -040042bool mkdirs(const std::string& path);
Alex Vallée14216142015-05-06 17:22:25 -040043
Elliott Hughes58305772015-04-17 13:57:15 -070044std::string escape_arg(const std::string& s);
45
Yabin Cuiaed3c612015-09-22 15:52:57 -070046std::string dump_hex(const void* ptr, size_t byte_count);
Josh Gao99d3d702018-10-11 13:49:24 -070047std::string dump_header(const amessage* msg);
48std::string dump_packet(const char* name, const char* func, const apacket* p);
Elliott Hughese67f1f82015-04-30 17:32:03 -070049
Elliott Hughesaa245492015-08-03 10:38:08 -070050std::string perror_str(const char* msg);
51
Elliott Hughesd2aaede2018-10-22 17:02:51 -070052[[noreturn]] void error_exit(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
53[[noreturn]] void perror_exit(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
54
Josh Gao27241a72019-04-25 14:04:57 -070055bool set_file_block_mode(borrowed_fd fd, bool block);
Yabin Cui6dfef252015-10-06 15:10:05 -070056
David Purselleaae97e2016-04-07 11:25:48 -070057// Given forward/reverse targets, returns true if they look sane. If an error is found, fills
58// |error| and returns false.
59// Currently this only checks "tcp:" targets. Additional checking could be added for other targets
60// if needed.
61bool forward_targets_are_valid(const std::string& source, const std::string& dest,
62 std::string* error);
63
Josh Gao0b13c892017-05-31 11:54:56 -070064// A thread-safe blocking queue.
65template <typename T>
66class BlockingQueue {
67 std::mutex mutex;
68 std::condition_variable cv;
69 std::vector<T> queue;
70
71 public:
72 void Push(const T& t) {
73 {
74 std::unique_lock<std::mutex> lock(mutex);
75 queue.push_back(t);
76 }
77 cv.notify_one();
78 }
79
80 template <typename Fn>
81 void PopAll(Fn fn) {
Josh Gao664a6182017-06-05 14:54:45 -070082 std::vector<T> popped;
Josh Gao0b13c892017-05-31 11:54:56 -070083
Josh Gao664a6182017-06-05 14:54:45 -070084 {
85 std::unique_lock<std::mutex> lock(mutex);
86 cv.wait(lock, [this]() { return !queue.empty(); });
87 popped = std::move(queue);
88 queue.clear();
89 }
90
91 for (const T& t : popped) {
Josh Gao0b13c892017-05-31 11:54:56 -070092 fn(t);
93 }
Josh Gao0b13c892017-05-31 11:54:56 -070094 }
95};
96
Elliott Hughes6eadee82017-06-15 08:35:24 -070097std::string GetLogFilePath();
Josh Gaoe2615412018-12-13 13:06:03 -080098
99inline std::string_view StripTrailingNulls(std::string_view str) {
100 size_t n = 0;
101 for (auto it = str.rbegin(); it != str.rend(); ++it) {
102 if (*it != '\0') {
103 break;
104 }
105 ++n;
106 }
107
108 str.remove_suffix(n);
109 return str;
110}
Josh Gao3add0c42018-12-20 13:17:04 -0800111
112// Base-10 stroll on a string_view.
113template <typename T>
Josh Gaoaeca2082019-02-20 19:46:26 -0800114inline bool ParseUint(T* result, std::string_view str, std::string_view* remaining = nullptr) {
Josh Gao3add0c42018-12-20 13:17:04 -0800115 if (str.empty() || !isdigit(str[0])) {
116 return false;
117 }
118
119 T value = 0;
120 std::string_view::iterator it;
121 constexpr T max = std::numeric_limits<T>::max();
122 for (it = str.begin(); it != str.end() && isdigit(*it); ++it) {
123 if (value > max / 10) {
124 return false;
125 }
126
127 value *= 10;
128
129 T digit = *it - '0';
130 if (value > max - digit) {
131 return false;
132 }
133
134 value += digit;
135 }
136 *result = value;
137 if (remaining) {
138 *remaining = str.substr(it - str.begin());
Josh Gaoaeca2082019-02-20 19:46:26 -0800139 } else {
140 return it == str.end();
Josh Gao3add0c42018-12-20 13:17:04 -0800141 }
Josh Gaoaeca2082019-02-20 19:46:26 -0800142
Josh Gao3add0c42018-12-20 13:17:04 -0800143 return true;
144}