From c79d7267800029ed5309ab684b51a6a6b7ac7226 Mon Sep 17 00:00:00 2001 From: Sung-jae Park Date: Sun, 17 Feb 2013 13:55:20 +0000 Subject: [PATCH] Update the liveinfo(Supporting the pixmap capture) Change-Id: Id2afb9060f278b529f1c94cc4188a96746ac935f --- packaging/org.tizen.data-provider-master.spec | 2 +- util_liveinfo/CMakeLists.txt | 1 + util_liveinfo/src/liveinfo.c | 116 ++++++++++++++++++++++++++ 3 files changed, 118 insertions(+), 1 deletion(-) diff --git a/packaging/org.tizen.data-provider-master.spec b/packaging/org.tizen.data-provider-master.spec index c56ad8c..bcd1653 100644 --- a/packaging/org.tizen.data-provider-master.spec +++ b/packaging/org.tizen.data-provider-master.spec @@ -1,6 +1,6 @@ Name: org.tizen.data-provider-master Summary: Master service provider for liveboxes. -Version: 0.16.6 +Version: 0.16.7 Release: 1 Group: framework/livebox License: Flora License diff --git a/util_liveinfo/CMakeLists.txt b/util_liveinfo/CMakeLists.txt index 5bab600..04089f5 100644 --- a/util_liveinfo/CMakeLists.txt +++ b/util_liveinfo/CMakeLists.txt @@ -14,6 +14,7 @@ pkg_check_modules(info_pkgs REQUIRED xdamage xfixes x11 + xext ) FOREACH(flag ${info_pkgs_CFLAGS}) diff --git a/util_liveinfo/src/liveinfo.c b/util_liveinfo/src/liveinfo.c index 3f984d7..bd53a2d 100644 --- a/util_liveinfo/src/liveinfo.c +++ b/util_liveinfo/src/liveinfo.c @@ -24,10 +24,14 @@ #include #include #include +#include +#include #include #include #include +#include +#include #include #include @@ -855,6 +859,106 @@ static inline void do_sh(const char *cmd) } } +static inline int get_pixmap_size(Display *disp, Pixmap id, int *x, int *y, unsigned int *w, unsigned int *h) +{ + Window dummy_win; + unsigned int dummy_border, dummy_depth; + int _x; + int _y; + + if (!x) + x = &_x; + if (!y) + y = &_y; + + if (!XGetGeometry(disp, id, &dummy_win, x, y, w, h, &dummy_border, &dummy_depth)) { + return -EFAULT; + } + + return 0; +} + +static inline int do_capture(Display *disp, Pixmap id, const char *filename) +{ + XShmSegmentInfo si; + XImage *xim; + Visual *visual; + unsigned int w; + unsigned int h; + int bufsz; + int fd; + Screen *screen; + + screen = DefaultScreenOfDisplay(disp); + visual = DefaultVisualOfScreen(screen); + + if (get_pixmap_size(disp, id, NULL, NULL, &w, &h) < 0) { + printf("Failed to get size of a pixmap\n"); + return -EINVAL; + } + + printf("Pixmap size: %dx%d\n", w, h); + bufsz = w * h * sizeof(int); + + si.shmid = shmget(IPC_PRIVATE, bufsz, IPC_CREAT | 0666); + if (si.shmid < 0) { + printf("shmget: %s\n", strerror(errno)); + return -EFAULT; + } + + si.readOnly = False; + si.shmaddr = shmat(si.shmid, NULL, 0); + if (si.shmaddr == (void *)-1) { + + if (shmctl(si.shmid, IPC_RMID, 0) < 0) + printf("shmctl: %s\n", strerror(errno)); + + return -EFAULT; + } + + /*! + * \NOTE + * Use the 24 bits Pixmap for Video player + */ + xim = XShmCreateImage(disp, visual, 24 /* (depth << 3) */, ZPixmap, NULL, &si, w, h); + if (xim == NULL) { + if (shmdt(si.shmaddr) < 0) + printf("shmdt: %s\n", strerror(errno)); + + if (shmctl(si.shmid, IPC_RMID, 0) < 0) + printf("shmctl: %s\n", strerror(errno)); + + return -EFAULT; + } + + xim->data = si.shmaddr; + XShmAttach(disp, &si); + + XShmGetImage(disp, id, xim, 0, 0, 0xFFFFFFFF); + XSync(disp, False); + + fd = open(filename, O_CREAT | O_RDWR); + if (fd > 0) { + if (write(fd, xim->data, bufsz) != bufsz) + printf("Data is not fully written\n"); + + close(fd); + } else { + printf("Error: %sn\n", strerror(errno)); + } + + XShmDetach(disp, &si); + XDestroyImage(xim); + + if (shmdt(si.shmaddr) < 0) + printf("shmdt: %s\n", strerror(errno)); + + if (shmctl(si.shmid, IPC_RMID, 0) < 0) + printf("shmctl: %s\n", strerror(errno)); + + return 0; +} + static inline void do_x(const char *cmd) { Display *disp; @@ -893,6 +997,18 @@ static inline void do_x(const char *cmd) XFlush(disp); printf("Damage: %u %d %d %d %d\n", winId, x, y, w, h); + } else if (!strncasecmp(cmd, "capture ", 8)) { + unsigned int winId; + char filename[256]; + + cmd += 8; + + if (sscanf(cmd, "%u %255[^ ]", &winId, filename) != 2) { + printf("Invalid argument\nx capture WINID_DEC FILENAME (%s)\n", cmd); + return; + } + if (do_capture(disp, winId, filename) == 0) + printf("Captured: %s\n", filename); } else if (!strncasecmp(cmd, "resize ", 7)) { unsigned int winId; int w; -- 2.7.4