OSDN Git Service

Merge "Implement simpleperf record/dumprecord subcommands." into mnc-dev
[android-x86/system-extras.git] / simpleperf / utils.cpp
1 /*
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
17 #include "utils.h"
18
19 #include <errno.h>
20 #include <stdarg.h>
21 #include <stdio.h>
22 #include <unistd.h>
23
24 #include <base/logging.h>
25
26 void PrintIndented(size_t indent, const char* fmt, ...) {
27   va_list ap;
28   va_start(ap, fmt);
29   printf("%*s", static_cast<int>(indent * 2), "");
30   vprintf(fmt, ap);
31   va_end(ap);
32 }
33
34 bool IsPowerOfTwo(uint64_t value) {
35   return (value != 0 && ((value & (value - 1)) == 0));
36 }
37
38 bool NextArgumentOrError(const std::vector<std::string>& args, size_t* pi) {
39   if (*pi + 1 == args.size()) {
40     LOG(ERROR) << "No argument following " << args[*pi] << " option. Try `simpleperf help "
41                << args[0] << "`";
42     return false;
43   }
44   ++*pi;
45   return true;
46 }