blob: c4976675dc042762655f7efd1eeefe2c6c448131 [file] [log] [blame]
Mike Lockwoodc59b2f92012-10-24 12:31:10 -07001/*
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 Khancfed2322014-01-15 08:08:50 -050021#include <stdlib.h>
22#include <string.h>
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070023
24#include <linux/fb.h>
25#include <sys/ioctl.h>
26#include <sys/mman.h>
27
Mathias Agopian0678a8c2013-03-19 20:56:00 -070028#include <binder/ProcessState.h>
29
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070030#include <gui/SurfaceComposerClient.h>
31#include <gui/ISurfaceComposer.h>
32
Dan Stozacf70d712015-06-09 16:47:33 -070033#include <ui/DisplayInfo.h>
Peiyong Lin10a34d12018-09-19 13:56:12 -070034#include <ui/GraphicTypes.h>
Mathias Agopian0137fb82013-03-20 15:38:07 -070035#include <ui/PixelFormat.h>
36
Romain Guy26a2b972017-04-17 09:39:51 -070037#include <system/graphics.h>
38
Andreas Gampecfedceb2014-09-30 21:48:18 -070039// TODO: Fix Skia.
40#pragma GCC diagnostic push
41#pragma GCC diagnostic ignored "-Wunused-parameter"
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070042#include <SkImageEncoder.h>
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070043#include <SkData.h>
Romain Guy26a2b972017-04-17 09:39:51 -070044#include <SkColorSpace.h>
Andreas Gampecfedceb2014-09-30 21:48:18 -070045#pragma GCC diagnostic pop
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070046
47using namespace android;
48
Romain Guy26a2b972017-04-17 09:39:51 -070049#define COLORSPACE_UNKNOWN 0
50#define COLORSPACE_SRGB 1
51#define COLORSPACE_DISPLAY_P3 2
52
Dominik Laskowski3316a0a2019-01-25 02:56:41 -080053static void usage(const char* pname, PhysicalDisplayId displayId)
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070054{
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 Laskowski3316a0a2019-01-25 02:56:41 -080059 " -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 Lockwoodc59b2f92012-10-24 12:31:10 -070062 "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 Laskowski3316a0a2019-01-25 02:56:41 -080064 pname, displayId);
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070065}
66
Mike Reedb9330552014-06-16 17:31:48 -040067static SkColorType flinger2skia(PixelFormat f)
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070068{
69 switch (f) {
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070070 case PIXEL_FORMAT_RGB_565:
Mike Reedb9330552014-06-16 17:31:48 -040071 return kRGB_565_SkColorType;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070072 default:
Mike Reedb9330552014-06-16 17:31:48 -040073 return kN32_SkColorType;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070074 }
75}
76
Peiyong Lin10a34d12018-09-19 13:56:12 -070077static sk_sp<SkColorSpace> dataSpaceToColorSpace(ui::Dataspace d)
Romain Guy26a2b972017-04-17 09:39:51 -070078{
79 switch (d) {
Peiyong Lin10a34d12018-09-19 13:56:12 -070080 case ui::Dataspace::V0_SRGB:
Romain Guy26a2b972017-04-17 09:39:51 -070081 return SkColorSpace::MakeSRGB();
Peiyong Lin10a34d12018-09-19 13:56:12 -070082 case ui::Dataspace::DISPLAY_P3:
Brian Osmanbe8fac262019-01-14 17:02:23 -050083 return SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kDCIP3);
Romain Guy26a2b972017-04-17 09:39:51 -070084 default:
85 return nullptr;
86 }
87}
88
Peiyong Lin10a34d12018-09-19 13:56:12 -070089static ui::Dataspace pickBestDataspace(ui::ColorMode colorMode)
90{
91 switch (colorMode) {
92 case ui::ColorMode::SRGB:
93 return ui::Dataspace::V0_SRGB;
94 case ui::ColorMode::DISPLAY_P3:
95 case ui::ColorMode::BT2100_PQ:
96 case ui::ColorMode::BT2100_HLG:
97 return ui::Dataspace::DISPLAY_P3;
98 default:
99 return ui::Dataspace::V0_SRGB;
100 }
101}
102
103static uint32_t dataSpaceToInt(ui::Dataspace d)
Romain Guy26a2b972017-04-17 09:39:51 -0700104{
105 switch (d) {
Peiyong Lin10a34d12018-09-19 13:56:12 -0700106 case ui::Dataspace::V0_SRGB:
Romain Guy26a2b972017-04-17 09:39:51 -0700107 return COLORSPACE_SRGB;
Peiyong Lin10a34d12018-09-19 13:56:12 -0700108 case ui::Dataspace::DISPLAY_P3:
Romain Guy26a2b972017-04-17 09:39:51 -0700109 return COLORSPACE_DISPLAY_P3;
110 default:
111 return COLORSPACE_UNKNOWN;
112 }
113}
114
Umair Khancfed2322014-01-15 08:08:50 -0500115static status_t notifyMediaScanner(const char* fileName) {
116 String8 cmd("am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file://");
Umair Khancfed2322014-01-15 08:08:50 -0500117 cmd.append(fileName);
118 cmd.append(" > /dev/null");
119 int result = system(cmd.string());
120 if (result < 0) {
121 fprintf(stderr, "Unable to broadcast intent for media scanner.\n");
122 return UNKNOWN_ERROR;
123 }
124 return NO_ERROR;
125}
126
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700127int main(int argc, char** argv)
128{
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800129 std::optional<PhysicalDisplayId> displayId = SurfaceComposerClient::getInternalDisplayId();
130 if (!displayId) {
131 fprintf(stderr, "Failed to get token for internal display\n");
132 return 1;
133 }
134
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700135 const char* pname = argv[0];
136 bool png = false;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700137 int c;
138 while ((c = getopt(argc, argv, "phd:")) != -1) {
139 switch (c) {
140 case 'p':
141 png = true;
142 break;
143 case 'd':
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800144 displayId = atoll(optarg);
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700145 break;
146 case '?':
147 case 'h':
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800148 usage(pname, *displayId);
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700149 return 1;
150 }
151 }
152 argc -= optind;
153 argv += optind;
154
155 int fd = -1;
Andreas Gampecfedceb2014-09-30 21:48:18 -0700156 const char* fn = NULL;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700157 if (argc == 0) {
158 fd = dup(STDOUT_FILENO);
159 } else if (argc == 1) {
Umair Khancfed2322014-01-15 08:08:50 -0500160 fn = argv[0];
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700161 fd = open(fn, O_WRONLY | O_CREAT | O_TRUNC, 0664);
162 if (fd == -1) {
163 fprintf(stderr, "Error opening file: %s (%s)\n", fn, strerror(errno));
164 return 1;
165 }
166 const int len = strlen(fn);
167 if (len >= 4 && 0 == strcmp(fn+len-4, ".png")) {
168 png = true;
169 }
170 }
Prathmesh Prabhubf89ae52016-03-10 15:23:34 -0800171
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700172 if (fd == -1) {
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800173 usage(pname, *displayId);
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700174 return 1;
175 }
176
177 void const* mapbase = MAP_FAILED;
178 ssize_t mapsize = -1;
179
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000180 void* base = NULL;
Mathias Agopian0137fb82013-03-20 15:38:07 -0700181 uint32_t w, s, h, f;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700182 size_t size = 0;
183
Dan Stozacf70d712015-06-09 16:47:33 -0700184 // Maps orientations from DisplayInfo to ISurfaceComposer
185 static const uint32_t ORIENTATION_MAP[] = {
186 ISurfaceComposer::eRotateNone, // 0 == DISPLAY_ORIENTATION_0
187 ISurfaceComposer::eRotate270, // 1 == DISPLAY_ORIENTATION_90
188 ISurfaceComposer::eRotate180, // 2 == DISPLAY_ORIENTATION_180
189 ISurfaceComposer::eRotate90, // 3 == DISPLAY_ORIENTATION_270
190 };
191
Martijn Coenen48b74082017-07-24 09:19:26 +0200192 // setThreadPoolMaxThreadCount(0) actually tells the kernel it's
193 // not allowed to spawn any additional threads, but we still spawn
194 // a binder thread from userspace when we call startThreadPool().
195 // See b/36066697 for rationale
196 ProcessState::self()->setThreadPoolMaxThreadCount(0);
197 ProcessState::self()->startThreadPool();
198
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800199 const sp<IBinder> display = SurfaceComposerClient::getPhysicalDisplayToken(*displayId);
200 if (display == nullptr) {
201 fprintf(stderr, "Failed to get token for invalid display %"
202 ANDROID_PHYSICAL_DISPLAY_ID_FORMAT "\n", *displayId);
Steven Morelanda89ae862018-05-24 17:48:28 -0700203 return 1;
Dan Stozacf70d712015-06-09 16:47:33 -0700204 }
205
206 Vector<DisplayInfo> configs;
207 SurfaceComposerClient::getDisplayConfigs(display, &configs);
208 int activeConfig = SurfaceComposerClient::getActiveConfig(display);
209 if (static_cast<size_t>(activeConfig) >= configs.size()) {
210 fprintf(stderr, "Active config %d not inside configs (size %zu)\n",
211 activeConfig, configs.size());
Steven Morelanda89ae862018-05-24 17:48:28 -0700212 return 1;
Dan Stozacf70d712015-06-09 16:47:33 -0700213 }
214 uint8_t displayOrientation = configs[activeConfig].orientation;
215 uint32_t captureOrientation = ORIENTATION_MAP[displayOrientation];
216
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000217 sp<GraphicBuffer> outBuffer;
Peiyong Lin10a34d12018-09-19 13:56:12 -0700218 ui::Dataspace reqDataspace =
219 pickBestDataspace(SurfaceComposerClient::getActiveColorMode(display));
220
221 // Due to the fact that we hard code the way we write pixels into screenshot,
222 // we hard code RGBA_8888 here.
223 ui::PixelFormat reqPixelFormat = ui::PixelFormat::RGBA_8888;
224 status_t result = ScreenshotClient::capture(display, reqDataspace, reqPixelFormat, Rect(),
225 0 /* reqWidth */, 0 /* reqHeight */, false,
226 captureOrientation, &outBuffer);
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000227 if (result != NO_ERROR) {
228 close(fd);
Steven Morelanda89ae862018-05-24 17:48:28 -0700229 return 1;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700230 }
231
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000232 result = outBuffer->lock(GraphicBuffer::USAGE_SW_READ_OFTEN, &base);
233
chaviw7f4dc7e2018-09-11 13:59:30 -0700234 if (base == nullptr || result != NO_ERROR) {
235 String8 reason;
236 if (base == nullptr) {
237 reason = "Failed to write to buffer";
238 } else {
239 reason.appendFormat("Error Code: %d", result);
240 }
241 fprintf(stderr, "Failed to take screenshot (%s)\n", reason.c_str());
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000242 close(fd);
Steven Morelanda89ae862018-05-24 17:48:28 -0700243 return 1;
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000244 }
245
246 w = outBuffer->getWidth();
247 h = outBuffer->getHeight();
248 s = outBuffer->getStride();
249 f = outBuffer->getPixelFormat();
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000250 size = s * h * bytesPerPixel(f);
251
252 if (png) {
253 const SkImageInfo info =
Peiyong Lin10a34d12018-09-19 13:56:12 -0700254 SkImageInfo::Make(w, h, flinger2skia(f), kPremul_SkAlphaType,
255 dataSpaceToColorSpace(reqDataspace));
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000256 SkPixmap pixmap(info, base, s * bytesPerPixel(f));
257 struct FDWStream final : public SkWStream {
258 size_t fBytesWritten = 0;
259 int fFd;
260 FDWStream(int f) : fFd(f) {}
261 size_t bytesWritten() const override { return fBytesWritten; }
262 bool write(const void* buffer, size_t size) override {
263 fBytesWritten += size;
264 return size == 0 || ::write(fFd, buffer, size) > 0;
265 }
266 } fdStream(fd);
267 (void)SkEncodeImage(&fdStream, pixmap, SkEncodedImageFormat::kPNG, 100);
268 if (fn != NULL) {
269 notifyMediaScanner(fn);
270 }
271 } else {
Peiyong Lin10a34d12018-09-19 13:56:12 -0700272 uint32_t c = dataSpaceToInt(reqDataspace);
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000273 write(fd, &w, 4);
274 write(fd, &h, 4);
275 write(fd, &f, 4);
276 write(fd, &c, 4);
277 size_t Bpp = bytesPerPixel(f);
278 for (size_t y=0 ; y<h ; y++) {
279 write(fd, base, w*Bpp);
280 base = (void *)((char *)base + s*Bpp);
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700281 }
282 }
283 close(fd);
284 if (mapbase != MAP_FAILED) {
285 munmap((void *)mapbase, mapsize);
286 }
Josh Gao90982582017-06-19 13:38:20 -0700287
Steven Morelanda89ae862018-05-24 17:48:28 -0700288 return 0;
Peiyong Lin10a34d12018-09-19 13:56:12 -0700289}