blob: b0aee7b08d8c9ea9a96f98d024ddc7a302a604ec [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
Mathias Agopian0137fb82013-03-20 15:38:07 -070033#include <ui/PixelFormat.h>
34
Andreas Gampecfedceb2014-09-30 21:48:18 -070035// TODO: Fix Skia.
36#pragma GCC diagnostic push
37#pragma GCC diagnostic ignored "-Wunused-parameter"
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070038#include <SkImageEncoder.h>
39#include <SkBitmap.h>
40#include <SkData.h>
41#include <SkStream.h>
Andreas Gampecfedceb2014-09-30 21:48:18 -070042#pragma GCC diagnostic pop
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070043
44using namespace android;
45
46static uint32_t DEFAULT_DISPLAY_ID = ISurfaceComposer::eDisplayIdMain;
47
48static void usage(const char* pname)
49{
50 fprintf(stderr,
51 "usage: %s [-hp] [-d display-id] [FILENAME]\n"
52 " -h: this message\n"
53 " -p: save the file as a png.\n"
54 " -d: specify the display id to capture, default %d.\n"
55 "If FILENAME ends with .png it will be saved as a png.\n"
56 "If FILENAME is not given, the results will be printed to stdout.\n",
57 pname, DEFAULT_DISPLAY_ID
58 );
59}
60
Mike Reedb9330552014-06-16 17:31:48 -040061static SkColorType flinger2skia(PixelFormat f)
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070062{
63 switch (f) {
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070064 case PIXEL_FORMAT_RGB_565:
Mike Reedb9330552014-06-16 17:31:48 -040065 return kRGB_565_SkColorType;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070066 default:
Mike Reedb9330552014-06-16 17:31:48 -040067 return kN32_SkColorType;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070068 }
69}
70
71static status_t vinfoToPixelFormat(const fb_var_screeninfo& vinfo,
72 uint32_t* bytespp, uint32_t* f)
73{
74
75 switch (vinfo.bits_per_pixel) {
76 case 16:
77 *f = PIXEL_FORMAT_RGB_565;
78 *bytespp = 2;
79 break;
80 case 24:
81 *f = PIXEL_FORMAT_RGB_888;
82 *bytespp = 3;
83 break;
84 case 32:
85 // TODO: do better decoding of vinfo here
86 *f = PIXEL_FORMAT_RGBX_8888;
87 *bytespp = 4;
88 break;
89 default:
90 return BAD_VALUE;
91 }
92 return NO_ERROR;
93}
94
Umair Khancfed2322014-01-15 08:08:50 -050095static status_t notifyMediaScanner(const char* fileName) {
96 String8 cmd("am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file://");
97 String8 fileUrl("\"");
98 fileUrl.append(fileName);
99 fileUrl.append("\"");
100 cmd.append(fileName);
101 cmd.append(" > /dev/null");
102 int result = system(cmd.string());
103 if (result < 0) {
104 fprintf(stderr, "Unable to broadcast intent for media scanner.\n");
105 return UNKNOWN_ERROR;
106 }
107 return NO_ERROR;
108}
109
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700110int main(int argc, char** argv)
111{
Mathias Agopian0678a8c2013-03-19 20:56:00 -0700112 ProcessState::self()->startThreadPool();
113
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700114 const char* pname = argv[0];
115 bool png = false;
116 int32_t displayId = DEFAULT_DISPLAY_ID;
117 int c;
118 while ((c = getopt(argc, argv, "phd:")) != -1) {
119 switch (c) {
120 case 'p':
121 png = true;
122 break;
123 case 'd':
124 displayId = atoi(optarg);
125 break;
126 case '?':
127 case 'h':
128 usage(pname);
129 return 1;
130 }
131 }
132 argc -= optind;
133 argv += optind;
134
135 int fd = -1;
Andreas Gampecfedceb2014-09-30 21:48:18 -0700136 const char* fn = NULL;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700137 if (argc == 0) {
138 fd = dup(STDOUT_FILENO);
139 } else if (argc == 1) {
Umair Khancfed2322014-01-15 08:08:50 -0500140 fn = argv[0];
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700141 fd = open(fn, O_WRONLY | O_CREAT | O_TRUNC, 0664);
142 if (fd == -1) {
143 fprintf(stderr, "Error opening file: %s (%s)\n", fn, strerror(errno));
144 return 1;
145 }
146 const int len = strlen(fn);
147 if (len >= 4 && 0 == strcmp(fn+len-4, ".png")) {
148 png = true;
149 }
150 }
151
152 if (fd == -1) {
153 usage(pname);
154 return 1;
155 }
156
157 void const* mapbase = MAP_FAILED;
158 ssize_t mapsize = -1;
159
Andreas Gampecfedceb2014-09-30 21:48:18 -0700160 void const* base = NULL;
Mathias Agopian0137fb82013-03-20 15:38:07 -0700161 uint32_t w, s, h, f;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700162 size_t size = 0;
163
164 ScreenshotClient screenshot;
165 sp<IBinder> display = SurfaceComposerClient::getBuiltInDisplay(displayId);
Dan Stoza9890e3412014-05-22 16:12:54 -0700166 if (display != NULL && screenshot.update(display, Rect(), false) == NO_ERROR) {
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700167 base = screenshot.getPixels();
168 w = screenshot.getWidth();
169 h = screenshot.getHeight();
Mathias Agopian0137fb82013-03-20 15:38:07 -0700170 s = screenshot.getStride();
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700171 f = screenshot.getFormat();
172 size = screenshot.getSize();
173 } else {
174 const char* fbpath = "/dev/graphics/fb0";
175 int fb = open(fbpath, O_RDONLY);
176 if (fb >= 0) {
177 struct fb_var_screeninfo vinfo;
178 if (ioctl(fb, FBIOGET_VSCREENINFO, &vinfo) == 0) {
179 uint32_t bytespp;
180 if (vinfoToPixelFormat(vinfo, &bytespp, &f) == NO_ERROR) {
181 size_t offset = (vinfo.xoffset + vinfo.yoffset*vinfo.xres) * bytespp;
182 w = vinfo.xres;
183 h = vinfo.yres;
Mathias Agopian0137fb82013-03-20 15:38:07 -0700184 s = vinfo.xres;
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700185 size = w*h*bytespp;
186 mapsize = offset + size;
187 mapbase = mmap(0, mapsize, PROT_READ, MAP_PRIVATE, fb, 0);
188 if (mapbase != MAP_FAILED) {
189 base = (void const *)((char const *)mapbase + offset);
190 }
191 }
192 }
193 close(fb);
194 }
195 }
196
Andreas Gampecfedceb2014-09-30 21:48:18 -0700197 if (base != NULL) {
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700198 if (png) {
Mike Reedb9330552014-06-16 17:31:48 -0400199 const SkImageInfo info = SkImageInfo::Make(w, h, flinger2skia(f),
200 kPremul_SkAlphaType);
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700201 SkBitmap b;
Mike Reedb9330552014-06-16 17:31:48 -0400202 b.installPixels(info, const_cast<void*>(base), s*bytesPerPixel(f));
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700203 SkDynamicMemoryWStream stream;
204 SkImageEncoder::EncodeStream(&stream, b,
205 SkImageEncoder::kPNG_Type, SkImageEncoder::kDefaultQuality);
206 SkData* streamData = stream.copyToData();
207 write(fd, streamData->data(), streamData->size());
208 streamData->unref();
Andreas Gampecfedceb2014-09-30 21:48:18 -0700209 if (fn != NULL) {
210 notifyMediaScanner(fn);
211 }
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700212 } else {
213 write(fd, &w, 4);
214 write(fd, &h, 4);
215 write(fd, &f, 4);
Mathias Agopian0137fb82013-03-20 15:38:07 -0700216 size_t Bpp = bytesPerPixel(f);
217 for (size_t y=0 ; y<h ; y++) {
218 write(fd, base, w*Bpp);
219 base = (void *)((char *)base + s*Bpp);
220 }
Mike Lockwoodc59b2f92012-10-24 12:31:10 -0700221 }
222 }
223 close(fd);
224 if (mapbase != MAP_FAILED) {
225 munmap((void *)mapbase, mapsize);
226 }
227 return 0;
228}