tests: add virtual output test
[platform/core/uifw/libtdm.git] / tools / tdm_test_client.c
index 1031685..ab12626 100644 (file)
 #include <errno.h>
 #include <time.h>
 #include <stdint.h>
+#include <png.h>
 
 #include "tdm_client.h"
 #include "tdm_macro.h"
+#include "buffers.h"
+
+#define CHECK_V_STEP 0
 
 typedef struct _tdm_test_client_arg {
        char *output_name;
@@ -60,9 +64,12 @@ typedef struct _tdm_test_client {
 
        int do_query;
        int do_vblank;
+       int do_voutput;
        int waiting;
 
        tdm_client *client;
+       tdm_client_voutput *voutput;
+       tdm_client_output *output;
 } tdm_test_client;
 
 struct typestrings {
@@ -93,6 +100,7 @@ static struct typestrings typestrs[] = {
 static struct optstrings optstrs[] = {
        {OPT_QRY, "qo", "output objects info", "<output_name>", "primary"},
        {OPT_TST, "v", "vblank test", "<output_name>[,<sync>][@<fps>][~<interval>][+<offset>][*fake][^vblank_name]", "primary,0@60~1+0*1^test"},
+       {OPT_TST, "V", "virtual output test", NULL, NULL},
 };
 
 static void
@@ -181,7 +189,7 @@ parse_args(tdm_test_client *data, int argc, char *argv[])
 {
        int i;
 
-       if (argc < 3) {
+       if (argc < 2) {
                usage(argv[0]);
                exit(0);
        }
@@ -196,6 +204,8 @@ parse_args(tdm_test_client *data, int argc, char *argv[])
                } else if (!strncmp(argv[i] + 1, "v", 1)) {
                        data->do_vblank = 1;
                        parse_arg_v(data, argv[++i]);
+               } else if (!strncmp(argv[i] + 1, "V", 1)) {
+                       data->do_voutput = 1;
                } else {
                        usage(argv[0]);
                        exit(0);
@@ -374,6 +384,318 @@ done:
                tdm_client_vblank_destroy(vblank);
 }
 
+#define PNG_DEPTH 8
+
+void
+_tdm_client_get_buffer_full_size(tbm_surface_h buffer, int *buffer_w, int *buffer_h)
+{
+       tbm_surface_info_s info;
+       int ret;
+
+       TDM_RETURN_IF_FAIL(buffer != NULL);
+
+       ret = tbm_surface_get_info(buffer, &info);
+       TDM_RETURN_IF_FAIL(ret == TBM_SURFACE_ERROR_NONE);
+
+       if (buffer_w) {
+               if (IS_RGB(info.format))
+                       *buffer_w = info.planes[0].stride >> 2;
+               else
+                       *buffer_w = info.planes[0].stride;
+       }
+
+       if (buffer_h)
+               *buffer_h = info.planes[0].size / info.planes[0].stride;
+}
+
+static void
+_tdm_client_dump_png(const char *file, const void *data, int width,
+                                        int height)
+{
+       FILE *fp;
+
+       fp = fopen(file, "wb");
+       TDM_RETURN_IF_FAIL(fp != NULL);
+
+       png_structp pPngStruct =
+               png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
+       if (!pPngStruct) {
+               fclose(fp);
+               return;
+       }
+
+       png_infop pPngInfo = png_create_info_struct(pPngStruct);
+       if (!pPngInfo) {
+               png_destroy_write_struct(&pPngStruct, NULL);
+               fclose(fp);
+               return;
+       }
+
+       png_init_io(pPngStruct, fp);
+       png_set_IHDR(pPngStruct,
+                                pPngInfo,
+                                width,
+                                height,
+                                PNG_DEPTH,
+                                PNG_COLOR_TYPE_RGBA,
+                                PNG_INTERLACE_NONE,
+                                PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
+
+       png_set_bgr(pPngStruct);
+       png_write_info(pPngStruct, pPngInfo);
+
+       const int pixel_size = 4;       // RGBA
+       png_bytep *row_pointers =
+               png_malloc(pPngStruct, height * sizeof(png_byte *));
+       if (!row_pointers) {
+               png_destroy_write_struct(&pPngStruct, &pPngInfo);
+               fclose(fp);
+               return;
+       }
+
+       unsigned int *blocks = (unsigned int *)data;
+       int y = 0;
+       int x = 0;
+
+       for (; y < height; ++y) {
+               png_bytep row =
+                       png_malloc(pPngStruct, sizeof(png_byte) * width * pixel_size);
+               if (!row) {
+                       for (x = 0; x < y; x++)
+                               png_free(pPngStruct, row_pointers[x]);
+                       png_free(pPngStruct, row_pointers);
+                       png_destroy_write_struct(&pPngStruct, &pPngInfo);
+                       fclose(fp);
+                       return;
+               }
+
+               row_pointers[y] = (png_bytep)row;
+               for (x = 0; x < width; ++x) {
+                       unsigned int curBlock = blocks[y * width + x];
+                       row[x * pixel_size] = (curBlock & 0xFF);
+                       row[1 + x * pixel_size] = (curBlock >> 8) & 0xFF;
+                       row[2 + x * pixel_size] = (curBlock >> 16) & 0xFF;
+                       row[3 + x * pixel_size] = (curBlock >> 24) & 0xFF;
+               }
+       }
+
+       png_write_image(pPngStruct, row_pointers);
+       png_write_end(pPngStruct, pPngInfo);
+
+       for (y = 0; y < height; y++)
+               png_free(pPngStruct, row_pointers[y]);
+       png_free(pPngStruct, row_pointers);
+
+       png_destroy_write_struct(&pPngStruct, &pPngInfo);
+
+       fclose(fp);
+}
+
+void
+_tdm_client_dump_buffer(tbm_surface_h buffer, const char *file)
+{
+       char temp[TDM_PATH_LEN] = {0,};
+       tbm_surface_info_s info;
+       int len, ret;
+       const char *ext;
+       int bo_cnt;
+       int bw, bh;
+       char *dot, *p = temp;
+       const char *file_exts[2] = {"png", "raw"};
+
+       TDM_RETURN_IF_FAIL(buffer != NULL);
+       TDM_RETURN_IF_FAIL(file != NULL);
+
+       ret = tbm_surface_map(buffer, TBM_OPTION_READ, &info);
+       TDM_RETURN_IF_FAIL(ret == TBM_SURFACE_ERROR_NONE);
+
+       if (IS_RGB(info.format))
+               ext = file_exts[0];
+       else
+               ext = file_exts[1];
+
+       dot = strrchr(file, '.');
+       if (!dot || strlen(dot + 1) != 3 || strncmp(dot + 1, ext, 3)) {
+               len = strnlen(file, TDM_PATH_LEN - 5);
+               strncat(p, file, len);
+               p += len;
+               *(p++) = '.';
+               strncat(p, ext, 3);
+               p += 3;
+               *p = '\0';
+       } else {
+               len = strnlen(file, TDM_PATH_LEN - 1);
+               strncat(p, file, len);
+               p += len;
+               *p = '\0';
+       }
+
+       _tdm_client_get_buffer_full_size(buffer, &bw, &bh);
+
+       bo_cnt = tbm_surface_internal_get_num_bos(buffer);
+       TDM_DBG("buffer: bo_cnt(%d) %dx%d(%dx%d) %c%c%c%c, plane: (%p+%d, %d,%d) (%p+%d, %d,%d) (%p+%d, %d,%d)",
+                       bo_cnt, bw, bh, info.width, info.height, FOURCC_STR(info.format),
+                       info.planes[0].ptr, info.planes[0].offset, info.planes[0].stride, info.planes[0].size,
+                       info.planes[1].ptr, info.planes[1].offset, info.planes[1].stride, info.planes[1].size,
+                       info.planes[2].ptr, info.planes[2].offset, info.planes[2].stride, info.planes[2].size);
+
+       _tdm_client_dump_png(temp, info.planes[0].ptr, bw, bh);
+
+       tbm_surface_unmap(buffer);
+
+       printf("dump %s\n", temp);
+}
+
+static void
+_dump_buffer(tbm_surface_h buffer, int count)
+{
+       char temp[TDM_PATH_LEN] = {0,};
+
+       snprintf(temp, TDM_PATH_LEN, "/tmp/%c%c%c%c_%dx%d_%d",
+               FOURCC_STR(tbm_surface_get_format(buffer)),
+               tbm_surface_get_width(buffer),
+               tbm_surface_get_height(buffer),
+               count);
+       _tdm_client_dump_buffer(buffer, temp);
+}
+
+static void
+_voutput_commit(tdm_client_voutput *voutput, tbm_surface_h buffer, void *user_data)
+{
+       tdm_test_client *data = (tdm_test_client *)user_data;
+       static int count = 0;
+
+       TDM_EXIT_IF_FAIL(data != NULL);
+       TDM_EXIT_IF_FAIL(buffer != NULL);
+
+       if ((count < 10) || (count >= 31 && count <= 40))
+               _dump_buffer(buffer, count);
+       count++;
+
+       if (count == 30) {
+               printf("client: %d commited(%p), mode change request to index 1\n", count, buffer);
+               tdm_client_voutput_set_mode(data->voutput, 1);
+       } else if (count == 50) {
+               printf("client: %d commited(%p), disconnect\n", count, buffer);
+               tdm_client_voutput_disconnect(data->voutput);
+       } else {
+               printf("client: %d commited(%p)\n", count, buffer);
+       }
+
+       tdm_client_voutput_commit_done(voutput);
+}
+
+static void
+_voutput_output_handler(tdm_client_output *output, tdm_output_change_type type,
+                                          tdm_value value, void *user_data)
+{
+       tdm_client_voutput *voutput = NULL;
+       tdm_output_conn_status status;
+       tdm_test_client *data;
+       unsigned int width, height;
+
+       data = (tdm_test_client *) user_data;
+       TDM_RETURN_IF_FAIL(data != NULL);
+       voutput = data->voutput;
+       TDM_RETURN_IF_FAIL(voutput != NULL);
+
+       if (type == TDM_OUTPUT_CHANGE_CONNECTION) {
+               status = (tdm_output_conn_status)value.u32;
+               printf("output %s.\n", conn_str[value.u32]);
+
+               if (status == TDM_OUTPUT_CONN_STATUS_DISCONNECTED) {
+                       printf("client: disconnected, destroy voutput\n");
+                       tdm_client_output_remove_change_handler(output, _voutput_output_handler, data);
+#if CHECK_V_STEP
+                       printf("press enter to continuet\n");
+                       getchar();
+#endif
+                       tdm_client_voutput_destroy(voutput);
+               } else if (status == TDM_OUTPUT_CONN_STATUS_CONNECTED) {
+                       printf("client: connected\n");
+               } else if (status == TDM_OUTPUT_CONN_STATUS_MODE_SETTED) {
+                       tdm_client_output_get_mode(output, &width, &height);
+                       printf("client: mode setted(%dx%d)\n", width, height);
+#if CHECK_V_STEP
+                       printf("press enter to continuet\n");
+                       getchar();
+#endif
+               }
+       } else if (type == TDM_OUTPUT_CHANGE_DPMS) {
+               printf("output %s.\n", dpms_str[value.u32]);
+       }
+}
+
+static void
+_voutput_make_available_mode(tdm_client_output_mode *modes, int count)
+{
+       int i;
+       for (i = 0 ; i < count; i++) {
+               modes[i].clock = 25200;
+               modes[i].hdisplay = 640 * (count - i);
+               modes[i].hsync_start = 656;
+               modes[i].hsync_end = 752;
+               modes[i].htotal = 800;
+               modes[i].hskew = 0;
+               modes[i].vdisplay = 480 * (count - i);
+               modes[i].vsync_start = 490;
+               modes[i].vsync_end = 492;
+               modes[i].vtotal = 525;
+               modes[i].vscan = 0;
+               modes[i].vrefresh = 30;
+               modes[i].flags = 0;
+               modes[i].type = 0;
+               snprintf(modes[i].name, TDM_NAME_LEN, "%dx%d_%d", modes[i].hdisplay, modes[i].vdisplay, i);
+       }
+}
+
+static void
+do_voutput(tdm_test_client *data)
+{
+       tdm_client_voutput *voutput = NULL;
+       tdm_client_output *output = NULL;
+       tdm_client_output_mode modes[2];
+       tdm_error ret = TDM_ERROR_NONE;
+
+       printf("virtual output test - client\n");
+
+       voutput = tdm_client_create_voutput(data->client, "virtual-test", &ret);
+       TDM_EXIT_IF_FAIL(ret == TDM_ERROR_NONE);
+
+       ret = tdm_client_voutput_add_commit_handler(voutput, _voutput_commit, data);
+       TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, done);
+
+       output = tdm_client_voutput_get_client_output(voutput, &ret);
+       TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, done);
+
+       ret = tdm_client_output_add_change_handler(output, _voutput_output_handler, data);
+       TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, done);
+
+       ret = tdm_client_voutput_set_physical_size(voutput, 300, 200);
+       TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, done);
+
+       _voutput_make_available_mode(modes, 2);
+       ret = tdm_client_voutput_set_available_modes(voutput, modes, 2);
+       TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, done);
+#if CHECK_V_STEP
+       printf("virtual output test - press enter to connect\n");
+       getchar();
+#endif
+       ret = tdm_client_voutput_connect(voutput);
+       TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, done);
+
+       data->voutput = voutput;
+       data->output = output;
+
+       while (1) {
+               tdm_client_handle_events_timeout(data->client, 1000);
+       }
+
+done:
+       if (voutput)
+               tdm_client_voutput_destroy(voutput);
+}
+
 static tdm_test_client ttc_data;
 
 int
@@ -382,7 +704,7 @@ main(int argc, char *argv[])
        tdm_test_client *data = &ttc_data;
        tdm_error error;
 
-#if 1 /* for testing */
+       /* for testing */
        const char *xdg = (const char*)getenv("XDG_RUNTIME_DIR");
        if (!xdg) {
                char buf[32];
@@ -391,7 +713,16 @@ main(int argc, char *argv[])
                if (ret != 0)
                        exit(0);
        }
-#endif
+
+       /* for tbm_bufmgr_init */
+       const char *s  = (const char*)getenv("TBM_DISPLAY_SERVER");
+       if (!s) {
+               char buf[32];
+               snprintf(buf, sizeof(buf), "1");
+               int ret = setenv("TBM_DISPLAY_SERVER", (const char*)buf, 1);
+               if (ret != 0)
+                       exit(0);
+       }
 
        parse_args(data, argc, argv);
 
@@ -409,6 +740,8 @@ main(int argc, char *argv[])
                do_query(data);
        if (data->do_vblank)
                do_vblank(data);
+       if (data->do_voutput)
+               do_voutput(data);
 
 done:
        if (data->args.output_name)