Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 <errno.h> |
| 18 | #include <unistd.h> |
| 19 | #include <stdio.h> |
| 20 | #include <fcntl.h> |
Umair Khan | cfed232 | 2014-01-15 08:08:50 -0500 | [diff] [blame] | 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 23 | |
| 24 | #include <linux/fb.h> |
| 25 | #include <sys/ioctl.h> |
| 26 | #include <sys/mman.h> |
| 27 | |
Mathias Agopian | 0678a8c | 2013-03-19 20:56:00 -0700 | [diff] [blame] | 28 | #include <binder/ProcessState.h> |
| 29 | |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 30 | #include <gui/SurfaceComposerClient.h> |
| 31 | #include <gui/ISurfaceComposer.h> |
| 32 | |
Dan Stoza | cf70d71 | 2015-06-09 16:47:33 -0700 | [diff] [blame] | 33 | #include <ui/DisplayInfo.h> |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 34 | #include <ui/GraphicTypes.h> |
Mathias Agopian | 0137fb8 | 2013-03-20 15:38:07 -0700 | [diff] [blame] | 35 | #include <ui/PixelFormat.h> |
| 36 | |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 37 | #include <system/graphics.h> |
| 38 | |
Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 39 | // TODO: Fix Skia. |
| 40 | #pragma GCC diagnostic push |
| 41 | #pragma GCC diagnostic ignored "-Wunused-parameter" |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 42 | #include <SkImageEncoder.h> |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 43 | #include <SkData.h> |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 44 | #include <SkColorSpace.h> |
Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 45 | #pragma GCC diagnostic pop |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 46 | |
| 47 | using namespace android; |
| 48 | |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 49 | #define COLORSPACE_UNKNOWN 0 |
| 50 | #define COLORSPACE_SRGB 1 |
| 51 | #define COLORSPACE_DISPLAY_P3 2 |
| 52 | |
Dominik Laskowski | 3316a0a | 2019-01-25 02:56:41 -0800 | [diff] [blame] | 53 | static void usage(const char* pname, PhysicalDisplayId displayId) |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 54 | { |
| 55 | fprintf(stderr, |
| 56 | "usage: %s [-hp] [-d display-id] [FILENAME]\n" |
| 57 | " -h: this message\n" |
| 58 | " -p: save the file as a png.\n" |
Dominik Laskowski | 3316a0a | 2019-01-25 02:56:41 -0800 | [diff] [blame] | 59 | " -d: specify the physical display ID to capture (default: %" |
| 60 | ANDROID_PHYSICAL_DISPLAY_ID_FORMAT ")\n" |
| 61 | " see \"dumpsys SurfaceFlinger --display-id\" for valid display IDs.\n" |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 62 | "If FILENAME ends with .png it will be saved as a png.\n" |
| 63 | "If FILENAME is not given, the results will be printed to stdout.\n", |
Dominik Laskowski | 3316a0a | 2019-01-25 02:56:41 -0800 | [diff] [blame] | 64 | pname, displayId); |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 65 | } |
| 66 | |
Mike Reed | b933055 | 2014-06-16 17:31:48 -0400 | [diff] [blame] | 67 | static SkColorType flinger2skia(PixelFormat f) |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 68 | { |
| 69 | switch (f) { |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 70 | case PIXEL_FORMAT_RGB_565: |
Mike Reed | b933055 | 2014-06-16 17:31:48 -0400 | [diff] [blame] | 71 | return kRGB_565_SkColorType; |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 72 | default: |
Mike Reed | b933055 | 2014-06-16 17:31:48 -0400 | [diff] [blame] | 73 | return kN32_SkColorType; |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 74 | } |
| 75 | } |
| 76 | |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 77 | static sk_sp<SkColorSpace> dataSpaceToColorSpace(ui::Dataspace d) |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 78 | { |
| 79 | switch (d) { |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 80 | case ui::Dataspace::V0_SRGB: |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 81 | return SkColorSpace::MakeSRGB(); |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 82 | case ui::Dataspace::DISPLAY_P3: |
Brian Osman | be8fac26 | 2019-01-14 17:02:23 -0500 | [diff] [blame] | 83 | return SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kDCIP3); |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 84 | default: |
| 85 | return nullptr; |
| 86 | } |
| 87 | } |
| 88 | |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 89 | static uint32_t dataSpaceToInt(ui::Dataspace d) |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 90 | { |
| 91 | switch (d) { |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 92 | case ui::Dataspace::V0_SRGB: |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 93 | return COLORSPACE_SRGB; |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 94 | case ui::Dataspace::DISPLAY_P3: |
Romain Guy | 26a2b97 | 2017-04-17 09:39:51 -0700 | [diff] [blame] | 95 | return COLORSPACE_DISPLAY_P3; |
| 96 | default: |
| 97 | return COLORSPACE_UNKNOWN; |
| 98 | } |
| 99 | } |
| 100 | |
Umair Khan | cfed232 | 2014-01-15 08:08:50 -0500 | [diff] [blame] | 101 | static status_t notifyMediaScanner(const char* fileName) { |
| 102 | String8 cmd("am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file://"); |
Umair Khan | cfed232 | 2014-01-15 08:08:50 -0500 | [diff] [blame] | 103 | cmd.append(fileName); |
| 104 | cmd.append(" > /dev/null"); |
| 105 | int result = system(cmd.string()); |
| 106 | if (result < 0) { |
| 107 | fprintf(stderr, "Unable to broadcast intent for media scanner.\n"); |
| 108 | return UNKNOWN_ERROR; |
| 109 | } |
| 110 | return NO_ERROR; |
| 111 | } |
| 112 | |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 113 | int main(int argc, char** argv) |
| 114 | { |
Dominik Laskowski | 3316a0a | 2019-01-25 02:56:41 -0800 | [diff] [blame] | 115 | std::optional<PhysicalDisplayId> displayId = SurfaceComposerClient::getInternalDisplayId(); |
| 116 | if (!displayId) { |
| 117 | fprintf(stderr, "Failed to get token for internal display\n"); |
| 118 | return 1; |
| 119 | } |
| 120 | |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 121 | const char* pname = argv[0]; |
| 122 | bool png = false; |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 123 | int c; |
| 124 | while ((c = getopt(argc, argv, "phd:")) != -1) { |
| 125 | switch (c) { |
| 126 | case 'p': |
| 127 | png = true; |
| 128 | break; |
| 129 | case 'd': |
Dominik Laskowski | 3316a0a | 2019-01-25 02:56:41 -0800 | [diff] [blame] | 130 | displayId = atoll(optarg); |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 131 | break; |
| 132 | case '?': |
| 133 | case 'h': |
Dominik Laskowski | 3316a0a | 2019-01-25 02:56:41 -0800 | [diff] [blame] | 134 | usage(pname, *displayId); |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 135 | return 1; |
| 136 | } |
| 137 | } |
| 138 | argc -= optind; |
| 139 | argv += optind; |
| 140 | |
| 141 | int fd = -1; |
Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 142 | const char* fn = NULL; |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 143 | if (argc == 0) { |
| 144 | fd = dup(STDOUT_FILENO); |
| 145 | } else if (argc == 1) { |
Umair Khan | cfed232 | 2014-01-15 08:08:50 -0500 | [diff] [blame] | 146 | fn = argv[0]; |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 147 | fd = open(fn, O_WRONLY | O_CREAT | O_TRUNC, 0664); |
| 148 | if (fd == -1) { |
| 149 | fprintf(stderr, "Error opening file: %s (%s)\n", fn, strerror(errno)); |
| 150 | return 1; |
| 151 | } |
| 152 | const int len = strlen(fn); |
| 153 | if (len >= 4 && 0 == strcmp(fn+len-4, ".png")) { |
| 154 | png = true; |
| 155 | } |
| 156 | } |
Prathmesh Prabhu | bf89ae5 | 2016-03-10 15:23:34 -0800 | [diff] [blame] | 157 | |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 158 | if (fd == -1) { |
Dominik Laskowski | 3316a0a | 2019-01-25 02:56:41 -0800 | [diff] [blame] | 159 | usage(pname, *displayId); |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 160 | return 1; |
| 161 | } |
| 162 | |
| 163 | void const* mapbase = MAP_FAILED; |
| 164 | ssize_t mapsize = -1; |
| 165 | |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 166 | void* base = NULL; |
Mathias Agopian | 0137fb8 | 2013-03-20 15:38:07 -0700 | [diff] [blame] | 167 | uint32_t w, s, h, f; |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 168 | size_t size = 0; |
| 169 | |
Martijn Coenen | 48b7408 | 2017-07-24 09:19:26 +0200 | [diff] [blame] | 170 | // setThreadPoolMaxThreadCount(0) actually tells the kernel it's |
| 171 | // not allowed to spawn any additional threads, but we still spawn |
| 172 | // a binder thread from userspace when we call startThreadPool(). |
| 173 | // See b/36066697 for rationale |
| 174 | ProcessState::self()->setThreadPoolMaxThreadCount(0); |
| 175 | ProcessState::self()->startThreadPool(); |
| 176 | |
chaviw | a69a1b8 | 2019-04-30 16:53:33 -0700 | [diff] [blame] | 177 | ui::Dataspace outDataspace; |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 178 | sp<GraphicBuffer> outBuffer; |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 179 | |
chaviw | a69a1b8 | 2019-04-30 16:53:33 -0700 | [diff] [blame] | 180 | status_t result = ScreenshotClient::capture(*displayId, &outDataspace, &outBuffer); |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 181 | if (result != NO_ERROR) { |
| 182 | close(fd); |
Steven Moreland | a89ae86 | 2018-05-24 17:48:28 -0700 | [diff] [blame] | 183 | return 1; |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 186 | result = outBuffer->lock(GraphicBuffer::USAGE_SW_READ_OFTEN, &base); |
| 187 | |
chaviw | 7f4dc7e | 2018-09-11 13:59:30 -0700 | [diff] [blame] | 188 | if (base == nullptr || result != NO_ERROR) { |
| 189 | String8 reason; |
chaviw | a69a1b8 | 2019-04-30 16:53:33 -0700 | [diff] [blame] | 190 | if (result != NO_ERROR) { |
| 191 | reason.appendFormat(" Error Code: %d", result); |
chaviw | 7f4dc7e | 2018-09-11 13:59:30 -0700 | [diff] [blame] | 192 | } else { |
chaviw | a69a1b8 | 2019-04-30 16:53:33 -0700 | [diff] [blame] | 193 | reason = "Failed to write to buffer"; |
chaviw | 7f4dc7e | 2018-09-11 13:59:30 -0700 | [diff] [blame] | 194 | } |
| 195 | fprintf(stderr, "Failed to take screenshot (%s)\n", reason.c_str()); |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 196 | close(fd); |
Steven Moreland | a89ae86 | 2018-05-24 17:48:28 -0700 | [diff] [blame] | 197 | return 1; |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | w = outBuffer->getWidth(); |
| 201 | h = outBuffer->getHeight(); |
| 202 | s = outBuffer->getStride(); |
| 203 | f = outBuffer->getPixelFormat(); |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 204 | size = s * h * bytesPerPixel(f); |
| 205 | |
| 206 | if (png) { |
| 207 | const SkImageInfo info = |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 208 | SkImageInfo::Make(w, h, flinger2skia(f), kPremul_SkAlphaType, |
chaviw | a69a1b8 | 2019-04-30 16:53:33 -0700 | [diff] [blame] | 209 | dataSpaceToColorSpace(outDataspace)); |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 210 | SkPixmap pixmap(info, base, s * bytesPerPixel(f)); |
| 211 | struct FDWStream final : public SkWStream { |
| 212 | size_t fBytesWritten = 0; |
| 213 | int fFd; |
| 214 | FDWStream(int f) : fFd(f) {} |
| 215 | size_t bytesWritten() const override { return fBytesWritten; } |
| 216 | bool write(const void* buffer, size_t size) override { |
| 217 | fBytesWritten += size; |
| 218 | return size == 0 || ::write(fFd, buffer, size) > 0; |
| 219 | } |
| 220 | } fdStream(fd); |
| 221 | (void)SkEncodeImage(&fdStream, pixmap, SkEncodedImageFormat::kPNG, 100); |
| 222 | if (fn != NULL) { |
| 223 | notifyMediaScanner(fn); |
| 224 | } |
| 225 | } else { |
chaviw | a69a1b8 | 2019-04-30 16:53:33 -0700 | [diff] [blame] | 226 | uint32_t c = dataSpaceToInt(outDataspace); |
Chavi Weingarten | d7ec64c | 2017-11-30 01:52:01 +0000 | [diff] [blame] | 227 | write(fd, &w, 4); |
| 228 | write(fd, &h, 4); |
| 229 | write(fd, &f, 4); |
| 230 | write(fd, &c, 4); |
| 231 | size_t Bpp = bytesPerPixel(f); |
| 232 | for (size_t y=0 ; y<h ; y++) { |
| 233 | write(fd, base, w*Bpp); |
| 234 | base = (void *)((char *)base + s*Bpp); |
Mike Lockwood | c59b2f9 | 2012-10-24 12:31:10 -0700 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | close(fd); |
| 238 | if (mapbase != MAP_FAILED) { |
| 239 | munmap((void *)mapbase, mapsize); |
| 240 | } |
Josh Gao | 9098258 | 2017-06-19 13:38:20 -0700 | [diff] [blame] | 241 | |
Steven Moreland | a89ae86 | 2018-05-24 17:48:28 -0700 | [diff] [blame] | 242 | return 0; |
Peiyong Lin | 10a34d1 | 2018-09-19 13:56:12 -0700 | [diff] [blame] | 243 | } |