FreeRDP/client/X11/xf_input.c

749 lines
15 KiB
C
Raw Normal View History

/**
* FreeRDP: A Remote Desktop Protocol Implementation
* X11 Input
*
* Copyright 2013 Corey Clayton <can.of.tuna@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#ifdef WITH_XCURSOR
#include <X11/Xcursor/Xcursor.h>
#endif
#ifdef WITH_XI
#include <X11/extensions/XInput2.h>
#endif
#include <math.h>
#include "xf_event.h"
#include "xf_input.h"
#ifdef WITH_XI
#define MAX_CONTACTS 2
#define PAN_THRESHOLD 50
#define ZOOM_THRESHOLD 10
#define MIN_FINGER_DIST 5
typedef struct touch_contact
{
int id;
int count;
double pos_x;
double pos_y;
double last_x;
double last_y;
2013-07-23 22:47:40 +04:00
} touchContact;
touchContact contacts[MAX_CONTACTS];
int active_contacts;
2013-05-16 01:35:16 +04:00
int lastEvType;
XIDeviceEvent lastEvent;
2013-04-27 01:42:23 +04:00
double firstDist = -1.0;
2013-05-09 02:14:55 +04:00
double lastDist;
double z_vector;
double px_vector;
double py_vector;
int xinput_opcode;
int scale_cnt;
const char* xf_input_get_class_string(int class)
{
if (class == XIKeyClass)
return "XIKeyClass";
else if (class == XIButtonClass)
return "XIButtonClass";
else if (class == XIValuatorClass)
return "XIValuatorClass";
else if (class == XIScrollClass)
return "XIScrollClass";
else if (class == XITouchClass)
return "XITouchClass";
2013-07-23 22:47:40 +04:00
return "XIUnknownClass";
}
int xf_input_init(xfContext* xfc, Window window)
{
int i, j;
int nmasks;
int ndevices;
int major = 2;
int minor = 2;
Status xstatus;
XIDeviceInfo* info;
XIEventMask evmasks[64];
int opcode, event, error;
BYTE masks[8][XIMaskLen(XI_LASTEVENT)];
2013-07-23 22:47:40 +04:00
2013-06-05 22:59:24 +04:00
z_vector = 0;
px_vector = 0;
py_vector = 0;
2013-07-23 22:47:40 +04:00
nmasks = 0;
ndevices = 0;
active_contacts = 0;
ZeroMemory(contacts, sizeof(touchContact) * MAX_CONTACTS);
2013-07-23 22:47:40 +04:00
if (!XQueryExtension(xfc->display, "XInputExtension", &opcode, &event, &error))
{
printf("XInput extension not available.\n");
return -1;
}
2013-07-23 22:47:40 +04:00
xfc->XInputOpcode = opcode;
2013-07-23 22:47:40 +04:00
XIQueryVersion(xfc->display, &major, &minor);
2013-07-23 22:47:40 +04:00
if (major * 1000 + minor < 2002)
{
printf("Server does not support XI 2.2\n");
return -1;
}
2013-07-23 22:47:40 +04:00
if (xfc->settings->MultiTouchInput)
xfc->use_xinput = TRUE;
2013-07-23 22:47:40 +04:00
info = XIQueryDevice(xfc->display, XIAllDevices, &ndevices);
2013-07-23 22:47:40 +04:00
for (i = 0; i < ndevices; i++)
{
BOOL touch = FALSE;
XIDeviceInfo* dev = &info[i];
2013-07-23 22:47:40 +04:00
for (j = 0; j < dev->num_classes; j++)
{
XIAnyClassInfo* class = dev->classes[j];
XITouchClassInfo* t = (XITouchClassInfo*) class;
2013-07-23 22:47:40 +04:00
if ((class->type == XITouchClass) && (t->mode == XIDirectTouch) &&
2013-07-23 22:47:40 +04:00
(strcmp(dev->name, "Virtual core pointer") != 0))
{
touch = TRUE;
}
}
2013-07-23 22:47:40 +04:00
for (j = 0; j < dev->num_classes; j++)
{
XIAnyClassInfo* class = dev->classes[j];
XITouchClassInfo* t = (XITouchClassInfo*) class;
2013-07-23 22:47:40 +04:00
if (xfc->settings->MultiTouchInput)
{
printf("%s (%d) \"%s\" id: %d\n",
2013-07-23 22:47:40 +04:00
xf_input_get_class_string(class->type),
class->type, dev->name, dev->deviceid);
}
2013-07-23 22:47:40 +04:00
evmasks[nmasks].mask = masks[nmasks];
evmasks[nmasks].mask_len = sizeof(masks[0]);
ZeroMemory(masks[nmasks], sizeof(masks[0]));
evmasks[nmasks].deviceid = dev->deviceid;
2013-07-23 22:47:40 +04:00
if ((class->type == XITouchClass) && (t->mode == XIDirectTouch) &&
2013-07-23 22:47:40 +04:00
(strcmp(dev->name, "Virtual core pointer") != 0))
{
if (xfc->settings->MultiTouchInput)
{
printf("%s %s touch device (id: %d, mode: %d), supporting %d touches.\n",
2013-07-23 22:47:40 +04:00
dev->name, (t->mode == XIDirectTouch) ? "direct" : "dependent",
dev->deviceid, t->mode, t->num_touches);
}
2013-07-23 22:47:40 +04:00
XISetMask(masks[nmasks], XI_TouchBegin);
XISetMask(masks[nmasks], XI_TouchUpdate);
XISetMask(masks[nmasks], XI_TouchEnd);
nmasks++;
}
2013-07-23 22:47:40 +04:00
if (xfc->use_xinput)
{
if (!touch && (class->type == XIButtonClass) && strcmp(dev->name, "Virtual core pointer"))
{
printf("%s button device (id: %d, mode: %d)\n",
2013-07-23 22:47:40 +04:00
dev->name,
dev->deviceid, t->mode);
XISetMask(masks[nmasks], XI_ButtonPress);
XISetMask(masks[nmasks], XI_ButtonRelease);
XISetMask(masks[nmasks], XI_Motion);
nmasks++;
}
}
}
}
XIFreeDeviceInfo(info);
if (nmasks > 0)
xstatus = XISelectEvents(xfc->display, window, evmasks, nmasks);
2013-07-23 22:47:40 +04:00
return 0;
}
2013-05-16 01:35:16 +04:00
BOOL xf_input_is_duplicate(XGenericEventCookie* cookie)
{
2013-07-23 22:47:40 +04:00
XIDeviceEvent* event;
event = cookie->data;
if ( (lastEvent.time == event->time) &&
2013-07-23 22:47:40 +04:00
(lastEvType == cookie->evtype) &&
(lastEvent.detail == event->detail) &&
(lastEvent.event_x == event->event_x) &&
(lastEvent.event_y == event->event_y) )
{
return TRUE;
}
2013-07-23 22:47:40 +04:00
return FALSE;
}
2013-05-16 01:35:16 +04:00
void xf_input_save_last_event(XGenericEventCookie* cookie)
{
2013-07-23 22:47:40 +04:00
XIDeviceEvent* event;
event = cookie->data;
lastEvType = cookie->evtype;
lastEvent.time = event->time;
lastEvent.detail = event->detail;
lastEvent.event_x = event->event_x;
lastEvent.event_y = event->event_y;
2013-07-23 22:47:40 +04:00
}
void xf_input_detect_pan(xfContext* xfc)
{
2013-07-23 22:47:40 +04:00
double dx[2];
double dy[2];
double px;
double py;
double dist_x;
double dist_y;
if (active_contacts != 2)
{
2013-07-23 22:47:40 +04:00
return;
}
2013-07-23 22:47:40 +04:00
dx[0] = contacts[0].pos_x - contacts[0].last_x;
dx[1] = contacts[1].pos_x - contacts[1].last_x;
dy[0] = contacts[0].pos_y - contacts[0].last_y;
dy[1] = contacts[1].pos_y - contacts[1].last_y;
px = fabs(dx[0]) < fabs(dx[1]) ? dx[0] : dx[1];
py = fabs(dy[0]) < fabs(dy[1]) ? dy[0] : dy[1];
px_vector += px;
py_vector += py;
dist_x = fabs(contacts[0].pos_x - contacts[1].pos_x);
dist_y = fabs(contacts[0].pos_y - contacts[1].pos_y);
//only pan in x if dist_y is greater than something
if(dist_y > MIN_FINGER_DIST)
{
2013-07-23 22:47:40 +04:00
if(px_vector > PAN_THRESHOLD)
{
{
PanningChangeEventArgs e;
EventArgsInit(&e, "xfreerdp");
e.XPan = 5;
e.YPan = 0;
PubSub_OnPanningChange(((rdpContext*) xfc)->pubSub, xfc, &e);
}
px_vector = 0;
px_vector = 0;
py_vector = 0;
z_vector = 0;
}
else if(px_vector < -PAN_THRESHOLD)
{
{
PanningChangeEventArgs e;
EventArgsInit(&e, "xfreerdp");
e.XPan = -5;
e.YPan = 0;
PubSub_OnPanningChange(((rdpContext*) xfc)->pubSub, xfc, &e);
}
px_vector = 0;
px_vector = 0;
py_vector = 0;
z_vector = 0;
}
}
2013-07-23 22:47:40 +04:00
if(dist_x > MIN_FINGER_DIST)
{
2013-07-23 22:47:40 +04:00
if(py_vector > PAN_THRESHOLD)
{
{
PanningChangeEventArgs e;
EventArgsInit(&e, "xfreerdp");
e.XPan = 0;
e.YPan = 5;
PubSub_OnPanningChange(((rdpContext*) xfc)->pubSub, xfc, &e);
}
py_vector = 0;
px_vector = 0;
py_vector = 0;
z_vector = 0;
}
else if(py_vector < -PAN_THRESHOLD)
{
{
PanningChangeEventArgs e;
EventArgsInit(&e, "xfreerdp");
e.XPan = 0;
e.YPan = -5;
PubSub_OnPanningChange(((rdpContext*) xfc)->pubSub, xfc, &e);
}
py_vector = 0;
px_vector = 0;
py_vector = 0;
z_vector = 0;
}
}
2013-07-23 22:47:40 +04:00
}
void xf_input_detect_pinch(xfContext* xfc)
2013-04-27 01:42:23 +04:00
{
double dist;
double zoom;
2013-07-23 22:47:40 +04:00
double delta;
ResizeWindowEventArgs e;
2013-07-23 22:47:40 +04:00
if (active_contacts != 2)
2013-04-27 01:42:23 +04:00
{
firstDist = -1.0;
return;
}
2013-07-23 22:47:40 +04:00
/* first calculate the distance */
2013-04-27 01:42:23 +04:00
dist = sqrt(pow(contacts[1].pos_x - contacts[0].last_x, 2.0) +
2013-07-23 22:47:40 +04:00
pow(contacts[1].pos_y - contacts[0].last_y, 2.0));
/* if this is the first 2pt touch */
if (firstDist <= 0)
2013-04-27 01:42:23 +04:00
{
firstDist = dist;
lastDist = firstDist;
scale_cnt = 0;
z_vector = 0;
2013-07-23 22:47:40 +04:00
2013-05-31 00:04:31 +04:00
px_vector = 0;
py_vector = 0;
z_vector = 0;
2013-04-27 01:42:23 +04:00
}
else
{
delta = lastDist - dist;
2013-07-23 22:47:40 +04:00
if(delta > 1.0)
2013-07-23 22:47:40 +04:00
delta = 1.0;
if(delta < -1.0)
2013-07-23 22:47:40 +04:00
delta = -1.0;
/* compare the current distance to the first one */
zoom = (dist / firstDist);
2013-07-23 22:47:40 +04:00
z_vector += delta;
2013-07-23 22:47:40 +04:00
lastDist = dist;
2013-07-23 22:47:40 +04:00
if (z_vector > ZOOM_THRESHOLD)
{
xfc->settings->ScalingFactor -= 0.05;
2013-07-23 22:47:40 +04:00
if (xfc->settings->ScalingFactor < 0.8)
xfc->settings->ScalingFactor = 0.8;
2013-07-23 22:47:40 +04:00
EventArgsInit(&e, "xfreerdp");
e.width = (int) xfc->originalWidth * xfc->settings->ScalingFactor;
e.height = (int) xfc->originalHeight * xfc->settings->ScalingFactor;
2013-07-23 22:47:40 +04:00
xf_transform_window(xfc);
PubSub_OnResizeWindow(((rdpContext*) xfc)->pubSub, xfc, &e);
xf_draw_screen_scaled(xfc, 0, 0, 0, 0, FALSE);
2013-07-23 22:47:40 +04:00
z_vector = 0;
2013-07-23 22:47:40 +04:00
2013-05-31 00:04:31 +04:00
px_vector = 0;
py_vector = 0;
z_vector = 0;
}
2013-07-23 22:47:40 +04:00
if (z_vector < -ZOOM_THRESHOLD)
{
xfc->settings->ScalingFactor += 0.05;
2013-07-23 22:47:40 +04:00
if (xfc->settings->ScalingFactor > 1.2)
xfc->settings->ScalingFactor = 1.2;
2013-07-23 22:47:40 +04:00
EventArgsInit(&e, "xfreerdp");
e.width = (int) xfc->originalWidth * xfc->settings->ScalingFactor;
e.height = (int) xfc->originalHeight * xfc->settings->ScalingFactor;
2013-07-23 22:47:40 +04:00
xf_transform_window(xfc);
PubSub_OnResizeWindow(((rdpContext*) xfc)->pubSub, xfc, &e);
xf_draw_screen_scaled(xfc, 0, 0, 0, 0, FALSE);
2013-07-23 22:47:40 +04:00
z_vector = 0;
2013-07-23 22:47:40 +04:00
2013-05-31 00:04:31 +04:00
px_vector = 0;
py_vector = 0;
z_vector = 0;
}
}
}
void xf_input_touch_begin(xfContext* xfc, XIDeviceEvent* event)
{
int i;
2013-05-16 01:35:16 +04:00
if(active_contacts == MAX_CONTACTS)
2013-07-23 22:47:40 +04:00
printf("Houston, we have a problem!\n\n");
for (i = 0; i < MAX_CONTACTS; i++)
{
if (contacts[i].id == 0)
{
contacts[i].id = event->detail;
contacts[i].count = 1;
contacts[i].pos_x = event->event_x;
contacts[i].pos_y = event->event_y;
2013-07-23 22:47:40 +04:00
active_contacts++;
break;
}
}
}
2013-04-26 03:38:13 +04:00
void xf_input_touch_update(xfContext* xfc, XIDeviceEvent* event)
2013-04-26 03:38:13 +04:00
{
int i;
for (i = 0; i < MAX_CONTACTS; i++)
{
if (contacts[i].id == event->detail)
2013-04-26 03:38:13 +04:00
{
contacts[i].count++;
contacts[i].last_x = contacts[i].pos_x;
contacts[i].last_y = contacts[i].pos_y;
contacts[i].pos_x = event->event_x;
contacts[i].pos_y = event->event_y;
2013-07-23 22:47:40 +04:00
xf_input_detect_pinch(xfc);
xf_input_detect_pan(xfc);
2013-07-23 22:47:40 +04:00
break;
}
}
}
2013-04-26 03:38:13 +04:00
void xf_input_touch_end(xfContext* xfc, XIDeviceEvent* event)
{
int i;
for (i = 0; i < MAX_CONTACTS; i++)
{
if (contacts[i].id == event->detail)
{
contacts[i].id = 0;
contacts[i].count = 0;
//contacts[i].pos_x = (int)event->event_x;
//contacts[i].pos_y = (int)event->event_y;
2013-07-23 22:47:40 +04:00
active_contacts--;
break;printf("TouchBegin\n");
2013-04-26 03:38:13 +04:00
}
}
2013-04-26 03:38:13 +04:00
}
int xf_input_handle_event_local(xfContext* xfc, XEvent* event)
{
XGenericEventCookie* cookie = &event->xcookie;
2013-07-23 22:47:40 +04:00
XGetEventData(xfc->display, cookie);
2013-07-23 22:47:40 +04:00
if ((cookie->type == GenericEvent) && (cookie->extension == xfc->XInputOpcode))
{
switch (cookie->evtype)
{
case XI_TouchBegin:
2013-05-16 01:35:16 +04:00
if (xf_input_is_duplicate(cookie) == FALSE)
xf_input_touch_begin(xfc, cookie->data);
2013-05-16 01:35:16 +04:00
xf_input_save_last_event(cookie);
break;
2013-07-23 22:47:40 +04:00
case XI_TouchUpdate:
2013-05-16 01:35:16 +04:00
if (xf_input_is_duplicate(cookie) == FALSE)
xf_input_touch_update(xfc, cookie->data);
2013-05-16 01:35:16 +04:00
xf_input_save_last_event(cookie);
break;
2013-07-23 22:47:40 +04:00
case XI_TouchEnd:
2013-05-16 01:35:16 +04:00
if (xf_input_is_duplicate(cookie) == FALSE)
xf_input_touch_end(xfc, cookie->data);
2013-05-16 01:35:16 +04:00
xf_input_save_last_event(cookie);
break;
2013-07-23 22:47:40 +04:00
default:
printf("unhandled xi type= %d\n", cookie->evtype);
break;
}
}
2013-07-23 22:47:40 +04:00
XFreeEventData(xfc->display,cookie);
2013-07-23 22:47:40 +04:00
return 0;
}
char* xf_input_touch_state_string(DWORD flags)
{
if (flags & CONTACT_FLAG_DOWN)
return "TouchBegin";
else if (flags & CONTACT_FLAG_UPDATE)
return "TouchUpdate";
else if (flags & CONTACT_FLAG_UP)
return "TouchEnd";
else
return "TouchUnknown";
}
void xf_input_hide_cursor(xfContext* xfc)
{
#ifdef WITH_XCURSOR
if (!xfc->cursorHidden)
{
XcursorImage ci;
XcursorPixel xp = 0;
static Cursor nullcursor = None;
xf_lock_x11(xfc, FALSE);
ZeroMemory(&ci, sizeof(ci));
ci.version = XCURSOR_IMAGE_VERSION;
ci.size = sizeof(ci);
ci.width = ci.height = 1;
ci.xhot = ci.yhot = 0;
ci.pixels = &xp;
nullcursor = XcursorImageLoadCursor(xfc->display, &ci);
if ((xfc->window) && (nullcursor != None))
XDefineCursor(xfc->display, xfc->window->handle, nullcursor);
xfc->cursorHidden = TRUE;
xf_unlock_x11(xfc, FALSE);
}
#endif
}
void xf_input_show_cursor(xfContext* xfc)
{
#ifdef WITH_XCURSOR
xf_lock_x11(xfc, FALSE);
if (xfc->cursorHidden)
{
if (xfc->window)
{
if (!xfc->pointer)
XUndefineCursor(xfc->display, xfc->window->handle);
else
XDefineCursor(xfc->display, xfc->window->handle, xfc->pointer->cursor);
}
xfc->cursorHidden = FALSE;
}
xf_unlock_x11(xfc, FALSE);
#endif
}
int xf_input_touch_remote(xfContext* xfc, XIDeviceEvent* event, int evtype)
{
int x, y;
int touchId;
2013-06-07 02:14:59 +04:00
int contactId;
RdpeiClientContext* rdpei = xfc->rdpei;
2013-07-23 22:47:40 +04:00
if (!rdpei)
return 0;
2013-07-23 22:47:40 +04:00
xf_input_hide_cursor(xfc);
touchId = event->detail;
x = (int) event->event_x;
y = (int) event->event_y;
2013-07-23 22:47:40 +04:00
2013-06-07 02:14:59 +04:00
if (evtype == XI_TouchBegin)
2013-05-14 09:06:25 +04:00
{
2013-06-28 04:26:31 +04:00
printf("TouchBegin: %d\n", touchId);
2013-06-07 02:14:59 +04:00
contactId = rdpei->TouchBegin(rdpei, touchId, x, y);
2013-05-14 09:06:25 +04:00
}
2013-06-07 02:14:59 +04:00
else if (evtype == XI_TouchUpdate)
2013-05-14 09:06:25 +04:00
{
2013-06-28 04:26:31 +04:00
printf("TouchUpdate: %d\n", touchId);
2013-06-07 02:14:59 +04:00
contactId = rdpei->TouchUpdate(rdpei, touchId, x, y);
2013-05-14 09:06:25 +04:00
}
2013-06-07 02:14:59 +04:00
else if (evtype == XI_TouchEnd)
2013-05-14 09:06:25 +04:00
{
2013-06-28 04:26:31 +04:00
printf("TouchEnd: %d\n", touchId);
2013-06-07 02:14:59 +04:00
contactId = rdpei->TouchEnd(rdpei, touchId, x, y);
2013-05-14 09:06:25 +04:00
}
2013-07-23 22:47:40 +04:00
return 0;
}
int xf_input_event(xfContext* xfc, XIDeviceEvent* event, int evtype)
{
xf_input_show_cursor(xfc);
switch (evtype)
{
case XI_ButtonPress:
2013-07-18 00:44:27 +04:00
xf_generic_ButtonPress(xfc, (int) event->event_x, (int) event->event_y,
2013-07-23 22:47:40 +04:00
event->detail, event->event, xfc->remote_app);
break;
2013-07-23 22:47:40 +04:00
case XI_ButtonRelease:
2013-07-23 22:47:40 +04:00
xf_generic_ButtonRelease(xfc, (int) event->event_x, (int) event->event_y,
2013-07-23 22:47:40 +04:00
event->detail, event->event, xfc->remote_app);
break;
2013-07-23 22:47:40 +04:00
case XI_Motion:
2013-07-23 22:47:40 +04:00
xf_generic_MotionNotify(xfc, (int) event->event_x, (int) event->event_y,
2013-07-23 22:47:40 +04:00
event->detail, event->event, xfc->remote_app);
break;
}
2013-07-23 22:47:40 +04:00
return 0;
}
int xf_input_handle_event_remote(xfContext* xfc, XEvent* event)
{
XGenericEventCookie* cookie = &event->xcookie;
2013-07-23 22:47:40 +04:00
XGetEventData(xfc->display, cookie);
2013-07-23 22:47:40 +04:00
if ((cookie->type == GenericEvent) && (cookie->extension == xfc->XInputOpcode))
{
switch (cookie->evtype)
{
case XI_TouchBegin:
xf_input_touch_remote(xfc, cookie->data, XI_TouchBegin);
break;
2013-07-23 22:47:40 +04:00
case XI_TouchUpdate:
xf_input_touch_remote(xfc, cookie->data, XI_TouchUpdate);
break;
2013-07-23 22:47:40 +04:00
case XI_TouchEnd:
xf_input_touch_remote(xfc, cookie->data, XI_TouchEnd);
break;
2013-07-23 22:47:40 +04:00
default:
xf_input_event(xfc, cookie->data, cookie->evtype);
break;
}
}
2013-07-23 22:47:40 +04:00
XFreeEventData(xfc->display,cookie);
2013-07-23 22:47:40 +04:00
return 0;
}
2013-05-11 01:51:09 +04:00
#else
int xf_input_init(xfContext* xfc, Window window)
2013-05-11 01:51:09 +04:00
{
return 0;
}
2013-05-11 01:51:09 +04:00
#endif
void xf_process_rdpei_event(xfContext* xfc, wMessage* event)
{
switch (GetMessageType(event->id))
{
case RdpeiChannel_ServerReady:
break;
2013-07-23 22:47:40 +04:00
case RdpeiChannel_SuspendTouch:
break;
2013-07-23 22:47:40 +04:00
case RdpeiChannel_ResumeTouch:
break;
}
}
int xf_input_handle_event(xfContext* xfc, XEvent* event)
{
2013-05-11 01:51:09 +04:00
#ifdef WITH_XI
2013-07-23 22:47:40 +04:00
//printf("m:%d g:%d\n", (xfc->settings->MultiTouchInput), (xfc->settings->MultiTouchGestures) );
2013-06-28 04:26:31 +04:00
if (xfc->settings->MultiTouchInput)
{
return xf_input_handle_event_remote(xfc, event);
}
2013-07-23 22:47:40 +04:00
if (xfc->settings->MultiTouchGestures)
return xf_input_handle_event_local(xfc, event);
2013-07-23 22:47:40 +04:00
#endif
2013-07-23 22:47:40 +04:00
2013-05-11 00:56:24 +04:00
return 0;
}