4940fca551ae887156bf8dfdb22519a564e957c0
[profile/ivi/qtwayland.git] / src / compositor / wayland_wrapper / wldataoffer.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the Qt Compositor.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 #include "wldataoffer.h"
42
43 #include "wldatadevice.h"
44
45 #include <wayland-server.h>
46
47 #include <sys/time.h>
48
49 #include <QtCore/QDebug>
50
51 namespace Wayland
52 {
53
54 DataOffer::DataOffer(DataSource *data_source)
55     : m_data_source(data_source)
56 {
57
58 }
59
60 DataOffer::~DataOffer()
61 {
62 }
63
64 struct wl_resource *DataOffer::addDataDeviceResource(struct wl_resource *data_device_resource)
65 {
66     if (resourceForClient(data_device_resource->client)) {
67         qDebug() << "This should not happen, the client tries to add twice to a data offer";
68         return 0;
69     }
70     struct wl_resource *new_object =
71              wl_client_new_object(data_device_resource->client,&wl_data_offer_interface,&data_interface,this);
72     wl_data_device_send_data_offer(data_device_resource, new_object);
73
74     registerResource(new_object);
75     QList<QByteArray> offer_list = m_data_source->offerList();
76     for (int i = 0; i < offer_list.size(); i++) {
77         wl_data_offer_send_offer(new_object, offer_list.at(i).constData());
78     }
79     return new_object;
80 }
81
82 const struct wl_data_offer_interface DataOffer::data_interface = {
83     DataOffer::accept,
84     DataOffer::receive,
85     DataOffer::destroy
86 };
87
88 void DataOffer::accept(wl_client *client, wl_resource *resource, uint32_t time, const char *type)
89 {
90     Q_UNUSED(client);
91     Q_UNUSED(resource);
92     Q_UNUSED(time);
93     Q_UNUSED(type);
94 }
95
96 void DataOffer::receive(wl_client *client, wl_resource *resource, const char *mime_type, int32_t fd)
97 {
98     Q_UNUSED(client);
99
100     DataOffer *offer = static_cast<DataOffer *>(resource->data);
101     offer->m_data_source->postSendEvent(mime_type,fd);
102     close(fd);
103 }
104
105 void DataOffer::destroy(wl_client *client, wl_resource *resource)
106 {
107     Q_UNUSED(client);
108     DataOffer *data_offer = static_cast<DataOffer *>(resource->data);
109
110     if (data_offer->resourceListIsEmpty()) {
111         delete data_offer;
112     }
113 }
114
115
116 }