1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*
* Copyright (C) 2018 Red Hat
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* Author: Carlos Garnacho <carlosg@gnome.org>
*/
#include "config.h"
#include "meta/meta-selection-source-memory.h"
struct _MetaSelectionSourceMemory
{
MetaSelectionSource parent_instance;
char *mimetype;
GBytes *content;
};
G_DEFINE_TYPE (MetaSelectionSourceMemory,
meta_selection_source_memory,
META_TYPE_SELECTION_SOURCE)
static void
meta_selection_source_memory_read_async (MetaSelectionSource *source,
const char *mimetype,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
MetaSelectionSourceMemory *source_mem = META_SELECTION_SOURCE_MEMORY (source);
GInputStream *stream;
g_autoptr (GTask) task = NULL;
if (g_strcmp0 (mimetype, source_mem->mimetype) != 0)
{
g_task_report_new_error (source, callback, user_data,
meta_selection_source_memory_read_async,
G_IO_ERROR, G_IO_ERROR_FAILED,
"Mimetype not in selection");
return;
}
task = g_task_new (source, cancellable, callback, user_data);
g_task_set_source_tag (task, meta_selection_source_memory_read_async);
stream = g_memory_input_stream_new_from_bytes (source_mem->content);
g_task_return_pointer (task, stream, g_object_unref);
}
static GInputStream *
meta_selection_source_memory_read_finish (MetaSelectionSource *source,
GAsyncResult *result,
GError **error)
{
g_assert (g_task_get_source_tag (G_TASK (result)) ==
meta_selection_source_memory_read_async);
return g_task_propagate_pointer (G_TASK (result), error);
}
static GList *
meta_selection_source_memory_get_mimetypes (MetaSelectionSource *source)
{
MetaSelectionSourceMemory *source_mem = META_SELECTION_SOURCE_MEMORY (source);
if (!source_mem->mimetype)
return NULL;
return g_list_prepend (NULL, g_strdup (source_mem->mimetype));
}
static void
meta_selection_source_memory_finalize (GObject *object)
{
MetaSelectionSourceMemory *source_mem = META_SELECTION_SOURCE_MEMORY (object);
g_clear_pointer (&source_mem->content, g_bytes_unref);
g_free (source_mem->mimetype);
G_OBJECT_CLASS (meta_selection_source_memory_parent_class)->finalize (object);
}
static void
meta_selection_source_memory_class_init (MetaSelectionSourceMemoryClass *klass)
{
MetaSelectionSourceClass *source_class = META_SELECTION_SOURCE_CLASS (klass);
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = meta_selection_source_memory_finalize;
source_class->read_async = meta_selection_source_memory_read_async;
source_class->read_finish = meta_selection_source_memory_read_finish;
source_class->get_mimetypes = meta_selection_source_memory_get_mimetypes;
}
static void
meta_selection_source_memory_init (MetaSelectionSourceMemory *source)
{
}
MetaSelectionSource *
meta_selection_source_memory_new (const char *mimetype,
GBytes *content)
{
MetaSelectionSourceMemory *source;
g_return_val_if_fail (mimetype != NULL, NULL);
g_return_val_if_fail (content != NULL, NULL);
source = g_object_new (META_TYPE_SELECTION_SOURCE_MEMORY, NULL);
source->mimetype = g_strdup (mimetype);
source->content = g_bytes_ref (content);
return META_SELECTION_SOURCE (source);
}
|