gio2 2.1.0-x86-mingw32 → 2.2.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +26 -9
- data/ext/gio2/extconf.rb +38 -28
- data/ext/gio2/rb-gio2-pollable-source.c +59 -0
- data/ext/gio2/{rbgiofilteroutputstream.c → rb-gio2.c} +9 -5
- data/ext/gio2/{gio2.c → rb-gio2.h} +5 -10
- data/extconf.rb +22 -6
- data/lib/1.9/gio2.so +0 -0
- data/lib/2.0/gio2.so +0 -0
- data/lib/2.1/gio2.so +0 -0
- data/lib/gio2/deprecated.rb +16 -0
- data/lib/gio2/inet-address.rb +33 -0
- data/lib/gio2/input-stream.rb +39 -0
- data/lib/gio2/loader.rb +244 -0
- data/lib/gio2/output-stream.rb +24 -0
- data/lib/gio2/pollable-input-stream.rb +51 -0
- data/lib/gio2/pollable-output-stream.rb +32 -0
- data/lib/gio2/resources.rb +62 -0
- data/lib/gio2.rb +38 -143
- data/test/fixture/content-type/x-content/unix-software/autorun.sh +1 -0
- data/test/fixture/resource/Rakefile +32 -0
- data/test/fixture/resource/logo.png +0 -0
- data/test/fixture/resource/ruby-gio2.gresource +0 -0
- data/test/fixture/resource/ruby-gio2.gresource.xml +6 -0
- data/test/gio2-test-utils/fixture.rb +24 -0
- data/test/gio2-test-utils/socket-client.rb +59 -0
- data/test/gio2-test-utils.rb +21 -0
- data/test/run-test.rb +45 -9
- data/test/test-buffered-input-stream.rb +23 -0
- data/test/test-charset-converter.rb +23 -0
- data/test/test-content-type.rb +31 -0
- data/test/test-data-input-stream.rb +21 -0
- data/test/test-file-enumerator.rb +26 -0
- data/test/test-file-monitor.rb +33 -0
- data/test/test-file.rb +28 -0
- data/test/test-inet-address.rb +34 -0
- data/test/test-input-stream.rb +36 -0
- data/test/test-output-stream.rb +39 -0
- data/test/test-pollable-input-stream.rb +54 -0
- data/test/test-pollable-output-stream.rb +53 -0
- data/test/test-resources.rb +58 -0
- metadata +49 -107
- data/README +0 -34
- data/ext/gio2/depend +0 -11
- data/ext/gio2/gio2.def +0 -2
- data/ext/gio2/gio2.h +0 -30
- data/ext/gio2/rbgio.c +0 -133
- data/ext/gio2/rbgio2.h +0 -158
- data/ext/gio2/rbgio2conversions.h +0 -154
- data/ext/gio2/rbgio2private.h +0 -148
- data/ext/gio2/rbgioappinfo.c +0 -317
- data/ext/gio2/rbgioapplaunchcontext.c +0 -81
- data/ext/gio2/rbgioasyncinitable.c +0 -246
- data/ext/gio2/rbgioasyncresult.c +0 -41
- data/ext/gio2/rbgiobufferedinputstream.c +0 -167
- data/ext/gio2/rbgiobufferedoutputstream.c +0 -50
- data/ext/gio2/rbgiocancellable.c +0 -180
- data/ext/gio2/rbgiocharsetconverter.c +0 -57
- data/ext/gio2/rbgiocontenttype.c +0 -131
- data/ext/gio2/rbgioconverter.c +0 -113
- data/ext/gio2/rbgioconverterinputstream.c +0 -43
- data/ext/gio2/rbgioconverteroutputstream.c +0 -43
- data/ext/gio2/rbgiodatainputstream.c +0 -309
- data/ext/gio2/rbgiodataoutputstream.c +0 -186
- data/ext/gio2/rbgiodesktopappinfo.c +0 -87
- data/ext/gio2/rbgiodrive.c +0 -266
- data/ext/gio2/rbgioemblem.c +0 -52
- data/ext/gio2/rbgioemblemedicon.c +0 -65
- data/ext/gio2/rbgiofile.c +0 -2045
- data/ext/gio2/rbgiofileattribute.c +0 -114
- data/ext/gio2/rbgiofileattributeinfo.c +0 -86
- data/ext/gio2/rbgiofileattributeinfolist.c +0 -108
- data/ext/gio2/rbgiofileattributematcher.c +0 -95
- data/ext/gio2/rbgiofiledescriptorbased.c +0 -45
- data/ext/gio2/rbgiofileenumerator.c +0 -166
- data/ext/gio2/rbgiofileicon.c +0 -41
- data/ext/gio2/rbgiofileinfo.c +0 -617
- data/ext/gio2/rbgiofileinputstream.c +0 -91
- data/ext/gio2/rbgiofileiostream.c +0 -98
- data/ext/gio2/rbgiofilemonitor.c +0 -46
- data/ext/gio2/rbgiofilenamecompleter.c +0 -73
- data/ext/gio2/rbgiofileoutputstream.c +0 -98
- data/ext/gio2/rbgiofilterinputstream.c +0 -28
- data/ext/gio2/rbgioicon.c +0 -69
- data/ext/gio2/rbgioinetaddress.c +0 -118
- data/ext/gio2/rbgioinetsocketaddress.c +0 -41
- data/ext/gio2/rbgioinitable.c +0 -199
- data/ext/gio2/rbgioinputstream.c +0 -341
- data/ext/gio2/rbgioio.c +0 -73
- data/ext/gio2/rbgioiomodule.c +0 -45
- data/ext/gio2/rbgioiomodules.c +0 -47
- data/ext/gio2/rbgioioscheduler.c +0 -102
- data/ext/gio2/rbgioioschedulerjob.c +0 -121
- data/ext/gio2/rbgioiostream.c +0 -107
- data/ext/gio2/rbgioloadableicon.c +0 -92
- data/ext/gio2/rbgiomemoryinputstream.c +0 -67
- data/ext/gio2/rbgiomemoryoutputstream.c +0 -44
- data/ext/gio2/rbgiomount.c +0 -286
- data/ext/gio2/rbgiomountoperation.c +0 -53
- data/ext/gio2/rbgionetworkaddress.c +0 -59
- data/ext/gio2/rbgionetworkservice.c +0 -45
- data/ext/gio2/rbgiooutputstream.c +0 -331
- data/ext/gio2/rbgioresolver.c +0 -230
- data/ext/gio2/rbgioseekable.c +0 -91
- data/ext/gio2/rbgiosimpleasyncresult.c +0 -152
- data/ext/gio2/rbgiosocket.c +0 -390
- data/ext/gio2/rbgiosocketaddress.c +0 -34
- data/ext/gio2/rbgiosocketaddressenumerator.c +0 -83
- data/ext/gio2/rbgiosocketclient.c +0 -207
- data/ext/gio2/rbgiosocketconnectable.c +0 -41
- data/ext/gio2/rbgiosocketconnection.c +0 -66
- data/ext/gio2/rbgiosocketconnectionfactory.c +0 -39
- data/ext/gio2/rbgiosocketcontrolmessage.c +0 -82
- data/ext/gio2/rbgiosocketlistener.c +0 -246
- data/ext/gio2/rbgiosocketservice.c +0 -66
- data/ext/gio2/rbgiosrvtarget.c +0 -76
- data/ext/gio2/rbgiotcpconnection.c +0 -28
- data/ext/gio2/rbgiothemedicon.c +0 -83
- data/ext/gio2/rbgiothreadedsocketservice.c +0 -43
- data/ext/gio2/rbgiotlscertificate.c +0 -89
- data/ext/gio2/rbgiounixconnection.c +0 -71
- data/ext/gio2/rbgiounixfdlist.c +0 -115
- data/ext/gio2/rbgiounixfdmessage.c +0 -74
- data/ext/gio2/rbgiounixinputstream.c +0 -51
- data/ext/gio2/rbgiounixmount.c +0 -164
- data/ext/gio2/rbgiounixmountmonitor.c +0 -65
- data/ext/gio2/rbgiounixmountpoint.c +0 -136
- data/ext/gio2/rbgiounixmountpoints.c +0 -58
- data/ext/gio2/rbgiounixmounts.c +0 -58
- data/ext/gio2/rbgiounixoutputstream.c +0 -51
- data/ext/gio2/rbgiounixsocketaddress.c +0 -69
- data/ext/gio2/rbgiovfs.c +0 -84
- data/ext/gio2/rbgiovolume.c +0 -193
- data/ext/gio2/rbgiovolumemonitor.c +0 -77
- data/ext/gio2/rbgiozlibcompressor.c +0 -52
- data/ext/gio2/rbgiozlibdecompressor.c +0 -45
- data/ext/gio2/util.c +0 -303
- data/test/test_bufferedinputstream.rb +0 -9
- data/test/test_charsetconverter.rb +0 -9
- data/test/test_datainputstream.rb +0 -7
- data/test/test_fileenumerator.rb +0 -8
- data/test/test_filemonitor.rb +0 -17
- data/test/test_inetaddress.rb +0 -8
data/ext/gio2/rbgioappinfo.c
DELETED
@@ -1,317 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2008-2009 Ruby-GNOME2 Project Team
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgio2private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE mAppInfo
|
25
|
-
#define _SELF(value) RVAL2GAPPINFO(value)
|
26
|
-
|
27
|
-
#define RVAL2GAPPINFOCREATEFLAGSDEFAULT(value) \
|
28
|
-
RVAL2TYPE_WITH_DEFAULT((value), \
|
29
|
-
RVAL2GAPPINFOCREATEFLAGS, \
|
30
|
-
G_APP_INFO_CREATE_NONE)
|
31
|
-
|
32
|
-
static VALUE
|
33
|
-
rg_s_create_from_commandline(int argc, VALUE *argv, G_GNUC_UNUSED VALUE self)
|
34
|
-
{
|
35
|
-
VALUE commandline, application_name, flags;
|
36
|
-
GError *error = NULL;
|
37
|
-
GAppInfo *info;
|
38
|
-
|
39
|
-
rb_scan_args(argc, argv, "12", &commandline, &application_name, &flags);
|
40
|
-
info = g_app_info_create_from_commandline(RVAL2CSTR(commandline),
|
41
|
-
RVAL2CSTR_ACCEPT_NIL(application_name),
|
42
|
-
RVAL2GAPPINFOCREATEFLAGSDEFAULT(flags),
|
43
|
-
&error);
|
44
|
-
if (info == NULL)
|
45
|
-
rbgio_raise_error(error);
|
46
|
-
|
47
|
-
return GOBJ2RVAL_UNREF(info);
|
48
|
-
}
|
49
|
-
|
50
|
-
static VALUE
|
51
|
-
rg_s_reset_type_associations(VALUE self, VALUE content_type)
|
52
|
-
{
|
53
|
-
g_app_info_reset_type_associations(RVAL2CSTR(content_type));
|
54
|
-
|
55
|
-
return self;
|
56
|
-
}
|
57
|
-
|
58
|
-
static VALUE
|
59
|
-
rg_s_get_all_for_type(G_GNUC_UNUSED VALUE self, VALUE content_type)
|
60
|
-
{
|
61
|
-
return GLIST2ARY_FREE(g_app_info_get_all_for_type(RVAL2CSTR(content_type)));
|
62
|
-
}
|
63
|
-
|
64
|
-
static VALUE
|
65
|
-
rg_s_all(int argc, VALUE *argv, VALUE self)
|
66
|
-
{
|
67
|
-
VALUE content_type;
|
68
|
-
|
69
|
-
rb_scan_args(argc, argv, "01", &content_type);
|
70
|
-
if (!NIL_P(content_type))
|
71
|
-
return rg_s_get_all_for_type(self, content_type);
|
72
|
-
|
73
|
-
return GLIST2ARY_FREE(g_app_info_get_all());
|
74
|
-
}
|
75
|
-
|
76
|
-
static VALUE
|
77
|
-
rg_s_get_default_for_type(int argc, VALUE *argv, G_GNUC_UNUSED VALUE self)
|
78
|
-
{
|
79
|
-
VALUE content_type, must_support_uris;
|
80
|
-
|
81
|
-
rb_scan_args(argc, argv, "11", &content_type, &must_support_uris);
|
82
|
-
|
83
|
-
return GOBJ2RVAL_UNREF(g_app_info_get_default_for_type(RVAL2CSTR(content_type),
|
84
|
-
RVAL2CBOOL(must_support_uris)));
|
85
|
-
}
|
86
|
-
|
87
|
-
static VALUE
|
88
|
-
rg_s_get_default_for_uri_scheme(G_GNUC_UNUSED VALUE self, VALUE uri_scheme)
|
89
|
-
{
|
90
|
-
return GOBJ2RVAL_UNREF(g_app_info_get_default_for_uri_scheme(RVAL2CSTR(uri_scheme)));
|
91
|
-
}
|
92
|
-
|
93
|
-
static VALUE
|
94
|
-
rg_s_launch_default_for_uri(int argc, VALUE *argv, VALUE self)
|
95
|
-
{
|
96
|
-
VALUE uri, launch_context;
|
97
|
-
GError *error;
|
98
|
-
|
99
|
-
rb_scan_args(argc, argv, "11", &uri, &launch_context);
|
100
|
-
if (!g_app_info_launch_default_for_uri(RVAL2CSTR(uri),
|
101
|
-
RVAL2GAPPLAUNCHCONTEXT(launch_context),
|
102
|
-
&error))
|
103
|
-
rbgio_raise_error(error);
|
104
|
-
|
105
|
-
return self;
|
106
|
-
}
|
107
|
-
|
108
|
-
static VALUE
|
109
|
-
rg_dup(VALUE self)
|
110
|
-
{
|
111
|
-
return GOBJ2RVAL_UNREF(g_app_info_dup(_SELF(self)));
|
112
|
-
}
|
113
|
-
|
114
|
-
static VALUE
|
115
|
-
rg_equal_p(VALUE self, VALUE other)
|
116
|
-
{
|
117
|
-
return CBOOL2RVAL(g_app_info_equal(_SELF(self), _SELF(other)));
|
118
|
-
}
|
119
|
-
|
120
|
-
static VALUE
|
121
|
-
rg_id(VALUE self)
|
122
|
-
{
|
123
|
-
return CSTR2RVAL(g_app_info_get_id(_SELF(self)));
|
124
|
-
}
|
125
|
-
|
126
|
-
static VALUE
|
127
|
-
rg_name(VALUE self)
|
128
|
-
{
|
129
|
-
return CSTR2RVAL(g_app_info_get_name(_SELF(self)));
|
130
|
-
}
|
131
|
-
|
132
|
-
static VALUE
|
133
|
-
rg_display_name(VALUE self)
|
134
|
-
{
|
135
|
-
return CSTR2RVAL(g_app_info_get_display_name(_SELF(self)));
|
136
|
-
}
|
137
|
-
|
138
|
-
static VALUE
|
139
|
-
rg_description(VALUE self)
|
140
|
-
{
|
141
|
-
return CSTR2RVAL(g_app_info_get_description(_SELF(self)));
|
142
|
-
}
|
143
|
-
|
144
|
-
static VALUE
|
145
|
-
rg_executable(VALUE self)
|
146
|
-
{
|
147
|
-
return CSTR2RVAL(g_app_info_get_executable(_SELF(self)));
|
148
|
-
}
|
149
|
-
|
150
|
-
static VALUE
|
151
|
-
rg_commandline(VALUE self)
|
152
|
-
{
|
153
|
-
return CSTR2RVAL(g_app_info_get_commandline(_SELF(self)));
|
154
|
-
}
|
155
|
-
|
156
|
-
static VALUE
|
157
|
-
rg_icon(VALUE self)
|
158
|
-
{
|
159
|
-
return GOBJ2RVAL(g_app_info_get_icon(_SELF(self)));
|
160
|
-
}
|
161
|
-
|
162
|
-
typedef gboolean (*LaunchMethod)(GAppInfo *,
|
163
|
-
GList *,
|
164
|
-
GAppLaunchContext *,
|
165
|
-
GError **);
|
166
|
-
|
167
|
-
static VALUE
|
168
|
-
launch_method(LaunchMethod method, int argc, VALUE *argv, VALUE self)
|
169
|
-
{
|
170
|
-
VALUE rbfiles, rblaunch_context;
|
171
|
-
GList *files;
|
172
|
-
GAppLaunchContext *launch_context;
|
173
|
-
GError *error = NULL;
|
174
|
-
gboolean launched;
|
175
|
-
|
176
|
-
rb_scan_args(argc, argv, "02", &rbfiles, &rblaunch_context);
|
177
|
-
launch_context = RVAL2GAPPLAUNCHCONTEXT(rblaunch_context);
|
178
|
-
files = GFILEARY2GLIST_ACCEPT_NIL(rbfiles);
|
179
|
-
launched = method(_SELF(self), files, launch_context, &error);
|
180
|
-
g_list_free(files);
|
181
|
-
|
182
|
-
if (!launched)
|
183
|
-
rbgio_raise_error(error);
|
184
|
-
|
185
|
-
return self;
|
186
|
-
}
|
187
|
-
|
188
|
-
static VALUE
|
189
|
-
rg_launch(int argc, VALUE *argv, VALUE self)
|
190
|
-
{
|
191
|
-
return launch_method(g_app_info_launch, argc, argv, self);
|
192
|
-
}
|
193
|
-
|
194
|
-
static VALUE
|
195
|
-
rg_supports_files_p(VALUE self)
|
196
|
-
{
|
197
|
-
return CBOOL2RVAL(g_app_info_supports_files(_SELF(self)));
|
198
|
-
}
|
199
|
-
|
200
|
-
static VALUE
|
201
|
-
rg_supports_uris_p(VALUE self)
|
202
|
-
{
|
203
|
-
return CBOOL2RVAL(g_app_info_supports_uris(_SELF(self)));
|
204
|
-
}
|
205
|
-
|
206
|
-
static VALUE
|
207
|
-
rg_launch_uris(int argc, VALUE *argv, VALUE self)
|
208
|
-
{
|
209
|
-
return launch_method(g_app_info_launch_uris, argc, argv, self);
|
210
|
-
}
|
211
|
-
|
212
|
-
static VALUE
|
213
|
-
rg_should_show_p(VALUE self)
|
214
|
-
{
|
215
|
-
return CBOOL2RVAL(g_app_info_should_show(_SELF(self)));
|
216
|
-
}
|
217
|
-
|
218
|
-
static VALUE
|
219
|
-
rg_can_delete_p(VALUE self)
|
220
|
-
{
|
221
|
-
return CBOOL2RVAL(g_app_info_can_delete(_SELF(self)));
|
222
|
-
}
|
223
|
-
|
224
|
-
static VALUE
|
225
|
-
rg_delete(VALUE self)
|
226
|
-
{
|
227
|
-
return CBOOL2RVAL(g_app_info_delete(_SELF(self)));
|
228
|
-
}
|
229
|
-
|
230
|
-
static VALUE
|
231
|
-
rg_set_as_default_for_type(VALUE self, VALUE value)
|
232
|
-
{
|
233
|
-
GError *error = NULL;
|
234
|
-
|
235
|
-
if (!g_app_info_set_as_default_for_type(_SELF(self), RVAL2CSTR(value), &error))
|
236
|
-
rbgio_raise_error(error);
|
237
|
-
|
238
|
-
return self;
|
239
|
-
}
|
240
|
-
|
241
|
-
static VALUE
|
242
|
-
rg_set_as_default_for_extension(VALUE self, VALUE value)
|
243
|
-
{
|
244
|
-
GError *error = NULL;
|
245
|
-
|
246
|
-
if (!g_app_info_set_as_default_for_extension(_SELF(self), RVAL2CSTR(value), &error))
|
247
|
-
rbgio_raise_error(error);
|
248
|
-
|
249
|
-
return self;
|
250
|
-
}
|
251
|
-
|
252
|
-
static VALUE
|
253
|
-
rg_add_supports_type(VALUE self, VALUE value)
|
254
|
-
{
|
255
|
-
GError *error = NULL;
|
256
|
-
|
257
|
-
if (!g_app_info_add_supports_type(_SELF(self), RVAL2CSTR(value), &error))
|
258
|
-
rbgio_raise_error(error);
|
259
|
-
|
260
|
-
return self;
|
261
|
-
}
|
262
|
-
|
263
|
-
static VALUE
|
264
|
-
rg_remove_supports_type(VALUE self, VALUE value)
|
265
|
-
{
|
266
|
-
GError *error = NULL;
|
267
|
-
|
268
|
-
if (!g_app_info_remove_supports_type(_SELF(self), RVAL2CSTR(value), &error))
|
269
|
-
rbgio_raise_error(error);
|
270
|
-
|
271
|
-
return self;
|
272
|
-
}
|
273
|
-
|
274
|
-
static VALUE
|
275
|
-
rg_can_remove_supports_type_p(VALUE self)
|
276
|
-
{
|
277
|
-
return CBOOL2RVAL(g_app_info_can_remove_supports_type(_SELF(self)));
|
278
|
-
}
|
279
|
-
|
280
|
-
void
|
281
|
-
Init_gappinfo(VALUE mGio)
|
282
|
-
{
|
283
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_INTERFACE(G_TYPE_APP_INFO, "AppInfo", mGio);
|
284
|
-
|
285
|
-
G_DEF_CLASS(G_TYPE_APP_INFO_CREATE_FLAGS, "CreateFlags", RG_TARGET_NAMESPACE);
|
286
|
-
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, G_TYPE_APP_INFO_CREATE_FLAGS, "G_APP_INFO_");
|
287
|
-
|
288
|
-
RG_DEF_SMETHOD(create_from_commandline, -1);
|
289
|
-
RG_DEF_SMETHOD(reset_type_associations, -1);
|
290
|
-
RG_DEF_SMETHOD(all, 0);
|
291
|
-
RG_DEF_SMETHOD(get_all_for_type, 1);
|
292
|
-
RG_DEF_SMETHOD(get_default_for_type, -1);
|
293
|
-
RG_DEF_SMETHOD(get_default_for_uri_scheme, 1);
|
294
|
-
RG_DEF_SMETHOD(launch_default_for_uri, 0);
|
295
|
-
|
296
|
-
RG_DEF_METHOD(dup, 0);
|
297
|
-
RG_DEF_METHOD_P(equal, 1);
|
298
|
-
RG_DEF_METHOD(id, 0);
|
299
|
-
RG_DEF_METHOD(name, 0);
|
300
|
-
RG_DEF_METHOD(display_name, 0);
|
301
|
-
RG_DEF_METHOD(description, 0);
|
302
|
-
RG_DEF_METHOD(executable, 0);
|
303
|
-
RG_DEF_METHOD(commandline, 0);
|
304
|
-
RG_DEF_METHOD(icon, 0);
|
305
|
-
RG_DEF_METHOD(launch, -1);
|
306
|
-
RG_DEF_METHOD_P(supports_files, 0);
|
307
|
-
RG_DEF_METHOD_P(supports_uris, 0);
|
308
|
-
RG_DEF_METHOD(launch_uris, -1);
|
309
|
-
RG_DEF_METHOD_P(should_show, 0);
|
310
|
-
RG_DEF_METHOD_P(can_delete, 0);
|
311
|
-
RG_DEF_METHOD(delete, 0);
|
312
|
-
RG_DEF_METHOD(set_as_default_for_type, 1);
|
313
|
-
RG_DEF_METHOD(set_as_default_for_extension, 1);
|
314
|
-
RG_DEF_METHOD(add_supports_type, 1);
|
315
|
-
RG_DEF_METHOD_P(can_remove_supports_type, 1);
|
316
|
-
RG_DEF_METHOD(remove_supports_type, 1);
|
317
|
-
}
|
@@ -1,81 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2008-2009 Ruby-GNOME2 Project Team
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgio2private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cAppLaunchContext
|
25
|
-
#define _SELF(value) RVAL2GAPPLAUNCHCONTEXT(value)
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_initialize(VALUE self)
|
29
|
-
{
|
30
|
-
G_INITIALIZE(self, g_app_launch_context_new());
|
31
|
-
|
32
|
-
return Qnil;
|
33
|
-
}
|
34
|
-
|
35
|
-
typedef char *(*GetMethod)(GAppLaunchContext *, GAppInfo *, GList *);
|
36
|
-
|
37
|
-
static VALUE
|
38
|
-
get_value_by(GetMethod method, int argc, VALUE *argv, VALUE self)
|
39
|
-
{
|
40
|
-
VALUE info, rbfiles;
|
41
|
-
GList *files;
|
42
|
-
char *value;
|
43
|
-
|
44
|
-
rb_scan_args(argc, argv, "11", &info, &rbfiles);
|
45
|
-
files = GFILEARY2GLIST_ACCEPT_NIL(rbfiles);
|
46
|
-
value = method(_SELF(self), RVAL2GAPPINFO(info), files);
|
47
|
-
g_list_free(files);
|
48
|
-
|
49
|
-
return CSTR2RVAL_FREE(value);
|
50
|
-
}
|
51
|
-
|
52
|
-
static VALUE
|
53
|
-
rg_get_display(int argc, VALUE *argv, VALUE self)
|
54
|
-
{
|
55
|
-
return get_value_by(g_app_launch_context_get_display, argc, argv, self);
|
56
|
-
}
|
57
|
-
|
58
|
-
static VALUE
|
59
|
-
rg_get_startup_notify_id(int argc, VALUE *argv, VALUE self)
|
60
|
-
{
|
61
|
-
return get_value_by(g_app_launch_context_get_startup_notify_id, argc, argv, self);
|
62
|
-
}
|
63
|
-
|
64
|
-
static VALUE
|
65
|
-
rg_launch_failed(VALUE self, VALUE sn_id)
|
66
|
-
{
|
67
|
-
g_app_launch_context_launch_failed(_SELF(self), RVAL2CSTR(sn_id));
|
68
|
-
|
69
|
-
return self;
|
70
|
-
}
|
71
|
-
|
72
|
-
void
|
73
|
-
Init_gapplaunchcontext(VALUE mGio)
|
74
|
-
{
|
75
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(G_TYPE_APP_LAUNCH_CONTEXT, "AppLaunchContext", mGio);
|
76
|
-
|
77
|
-
RG_DEF_METHOD(initialize, 0);
|
78
|
-
RG_DEF_METHOD(get_display, -1);
|
79
|
-
RG_DEF_METHOD(get_startup_notify_id, -1);
|
80
|
-
RG_DEF_METHOD(launch_failed, 1);
|
81
|
-
}
|
@@ -1,246 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2008-2009 Ruby-GNOME2 Project Team
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgio2private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE mAsyncInitable
|
25
|
-
#define _SELF(value) RVAL2GASYNCINITABLE(value)
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_init_async(int argc, VALUE *argv, VALUE self)
|
29
|
-
{
|
30
|
-
VALUE rbio_priority, rbcancellable, block;
|
31
|
-
int io_priority;
|
32
|
-
GCancellable *cancellable;
|
33
|
-
|
34
|
-
rb_scan_args(argc, argv, "02&", &rbio_priority, &rbcancellable, &block);
|
35
|
-
io_priority = RVAL2IOPRIORITYDEFAULT(rbio_priority);
|
36
|
-
cancellable = RVAL2GCANCELLABLE(rbcancellable);
|
37
|
-
SAVE_BLOCK(block);
|
38
|
-
g_async_initable_init_async(_SELF(self),
|
39
|
-
io_priority,
|
40
|
-
cancellable,
|
41
|
-
rbgio_async_ready_callback,
|
42
|
-
(gpointer)block);
|
43
|
-
|
44
|
-
return self;
|
45
|
-
}
|
46
|
-
|
47
|
-
static VALUE
|
48
|
-
rg_init_finish(VALUE self, VALUE result)
|
49
|
-
{
|
50
|
-
GError *error = NULL;
|
51
|
-
|
52
|
-
if (!g_async_initable_init_finish(_SELF(self),
|
53
|
-
RVAL2GASYNCRESULT(result),
|
54
|
-
&error))
|
55
|
-
rbgio_raise_error(error);
|
56
|
-
|
57
|
-
return self;
|
58
|
-
}
|
59
|
-
|
60
|
-
/* NOTE: We don't implement g_async_initable_new_async. */
|
61
|
-
|
62
|
-
/* NOTE: We don't implement g_async_initable_new_valist_async. */
|
63
|
-
|
64
|
-
struct rbgio_gasyncinitable_new_async_data {
|
65
|
-
GObjectClass *gclass;
|
66
|
-
int io_priority;
|
67
|
-
GCancellable *cancellable;
|
68
|
-
VALUE block;
|
69
|
-
VALUE rbparameters;
|
70
|
-
guint index;
|
71
|
-
guint n_parameters;
|
72
|
-
GParameter *parameters;
|
73
|
-
};
|
74
|
-
|
75
|
-
static VALUE
|
76
|
-
rbgio_gasyncinitiable_new_async_parameters_initialize(VALUE key_value,
|
77
|
-
struct rbgio_gasyncinitable_new_async_data *data)
|
78
|
-
{
|
79
|
-
VALUE key, value;
|
80
|
-
GParamSpec *spec;
|
81
|
-
|
82
|
-
if (data->index >= data->n_parameters)
|
83
|
-
rb_raise(rb_eArgError,
|
84
|
-
"too many parameters (%d >= %d)",
|
85
|
-
data->index, data->n_parameters);
|
86
|
-
|
87
|
-
key = rb_ary_entry(key_value, 0);
|
88
|
-
value = rb_ary_entry(key_value, 1);
|
89
|
-
|
90
|
-
data->parameters[data->index].name = SYMBOL_P(key) ?
|
91
|
-
rb_id2name(SYM2ID(key)) :
|
92
|
-
StringValuePtr(key);
|
93
|
-
spec = g_object_class_find_property(data->gclass,
|
94
|
-
data->parameters[data->index].name);
|
95
|
-
if (spec == NULL)
|
96
|
-
rb_raise(rb_eArgError,
|
97
|
-
"%s: no such property",
|
98
|
-
data->parameters[data->index].name);
|
99
|
-
g_value_init(&(data->parameters[data->index].value),
|
100
|
-
G_PARAM_SPEC_VALUE_TYPE(spec));
|
101
|
-
rbgobj_rvalue_to_gvalue(value, &(data->parameters[data->index].value));
|
102
|
-
|
103
|
-
data->index++;
|
104
|
-
|
105
|
-
return Qnil;
|
106
|
-
}
|
107
|
-
|
108
|
-
static VALUE
|
109
|
-
rbgio_gasyncinitable_new_async_body(struct rbgio_gasyncinitable_new_async_data *data)
|
110
|
-
{
|
111
|
-
rb_iterate(rb_each,
|
112
|
-
data->rbparameters,
|
113
|
-
rbgio_gasyncinitiable_new_async_parameters_initialize,
|
114
|
-
(VALUE)data);
|
115
|
-
|
116
|
-
SAVE_BLOCK(data->block);
|
117
|
-
|
118
|
-
g_async_initable_newv_async(G_TYPE_FROM_CLASS(data->gclass),
|
119
|
-
data->n_parameters,
|
120
|
-
data->parameters,
|
121
|
-
data->io_priority,
|
122
|
-
data->cancellable,
|
123
|
-
rbgio_async_ready_callback,
|
124
|
-
(gpointer)data->block);
|
125
|
-
|
126
|
-
return Qnil;
|
127
|
-
}
|
128
|
-
|
129
|
-
static VALUE
|
130
|
-
rbgio_gasyncinitable_new_async_ensure(struct rbgio_gasyncinitable_new_async_data *data)
|
131
|
-
{
|
132
|
-
guint i;
|
133
|
-
|
134
|
-
g_type_class_unref(data->gclass);
|
135
|
-
for (i = 0; i < data->n_parameters; i++)
|
136
|
-
if (G_IS_VALUE(&data->parameters[i].value))
|
137
|
-
g_value_unset(&data->parameters[i].value);
|
138
|
-
|
139
|
-
g_free(data->parameters);
|
140
|
-
|
141
|
-
return Qnil;
|
142
|
-
}
|
143
|
-
|
144
|
-
void
|
145
|
-
rbgio_gasyncinitable_new_async(GType type,
|
146
|
-
VALUE parameters,
|
147
|
-
VALUE io_priority,
|
148
|
-
VALUE cancellable,
|
149
|
-
VALUE block)
|
150
|
-
{
|
151
|
-
static ID s_id_length;
|
152
|
-
struct rbgio_gasyncinitable_new_async_data data;
|
153
|
-
|
154
|
-
if (s_id_length == 0)
|
155
|
-
s_id_length = rb_intern("length");
|
156
|
-
|
157
|
-
if (!g_type_is_a(type, G_TYPE_OBJECT))
|
158
|
-
rb_raise(rb_eArgError,
|
159
|
-
"%s is not a descendant of GObject",
|
160
|
-
g_type_name(type));
|
161
|
-
|
162
|
-
if (NIL_P(parameters)) {
|
163
|
-
SAVE_BLOCK(block);
|
164
|
-
g_async_initable_newv_async(type,
|
165
|
-
0,
|
166
|
-
NULL,
|
167
|
-
RVAL2IOPRIORITYDEFAULT(io_priority),
|
168
|
-
RVAL2GCANCELLABLE(cancellable),
|
169
|
-
rbgio_async_ready_callback,
|
170
|
-
(gpointer)block);
|
171
|
-
|
172
|
-
return;
|
173
|
-
} else {
|
174
|
-
parameters = rb_convert_type(parameters,
|
175
|
-
T_HASH,
|
176
|
-
"Hash",
|
177
|
-
"to_hash");
|
178
|
-
}
|
179
|
-
|
180
|
-
data.gclass = G_OBJECT_CLASS(g_type_class_ref(type));
|
181
|
-
data.io_priority = RVAL2IOPRIORITYDEFAULT(io_priority);
|
182
|
-
data.cancellable = RVAL2GCANCELLABLE(cancellable);
|
183
|
-
data.block = block;
|
184
|
-
data.rbparameters = parameters;
|
185
|
-
data.index = 0;
|
186
|
-
data.n_parameters = RVAL2GUINT(rb_funcall(parameters, s_id_length, 0));
|
187
|
-
data.parameters = g_new(GParameter, data.n_parameters);
|
188
|
-
|
189
|
-
rb_ensure(rbgio_gasyncinitable_new_async_body, (VALUE)&data,
|
190
|
-
rbgio_gasyncinitable_new_async_ensure, (VALUE)&data);
|
191
|
-
|
192
|
-
return;
|
193
|
-
}
|
194
|
-
|
195
|
-
static VALUE
|
196
|
-
rg_initialize(int argc, VALUE *argv, VALUE self)
|
197
|
-
{
|
198
|
-
const RGObjClassInfo* info;
|
199
|
-
VALUE io_priority, cancellable, parameters, block;
|
200
|
-
|
201
|
-
rb_scan_args(argc, argv, "03&", &io_priority, &cancellable, ¶meters, &block);
|
202
|
-
|
203
|
-
info = CLASS2CINFO(self);
|
204
|
-
if (info->klass != self)
|
205
|
-
rb_raise(rb_eTypeError,
|
206
|
-
"%s: class not registered with GLib",
|
207
|
-
rb_class2name(self));
|
208
|
-
|
209
|
-
rbgio_gasyncinitable_new_async(info->gtype,
|
210
|
-
parameters,
|
211
|
-
io_priority,
|
212
|
-
cancellable,
|
213
|
-
block);
|
214
|
-
|
215
|
-
return self;
|
216
|
-
}
|
217
|
-
|
218
|
-
static VALUE
|
219
|
-
rg_initialize_finish(VALUE self, VALUE result)
|
220
|
-
{
|
221
|
-
GError *error = NULL;
|
222
|
-
GObject *object;
|
223
|
-
VALUE rbobject;
|
224
|
-
|
225
|
-
object = g_async_initable_new_finish(_SELF(self),
|
226
|
-
RVAL2GASYNCRESULT(result),
|
227
|
-
&error);
|
228
|
-
if (object == NULL)
|
229
|
-
rbgio_raise_error(error);
|
230
|
-
|
231
|
-
rbobject = GOBJ2RVAL(object);
|
232
|
-
g_object_unref(object);
|
233
|
-
|
234
|
-
return rbobject;
|
235
|
-
}
|
236
|
-
|
237
|
-
void
|
238
|
-
Init_gasyncinitable(VALUE mGio)
|
239
|
-
{
|
240
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_INTERFACE(G_TYPE_ASYNC_INITABLE, "AsyncInitable", mGio);
|
241
|
-
|
242
|
-
RG_DEF_METHOD(init_async, -1);
|
243
|
-
RG_DEF_METHOD(init_finish, 1);
|
244
|
-
RG_DEF_METHOD(initialize, -1);
|
245
|
-
RG_DEF_METHOD(initialize_finish, 1);
|
246
|
-
}
|
data/ext/gio2/rbgioasyncresult.c
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2008-2009 Ruby-GNOME2 Project Team
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgio2private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE mAsyncResult
|
25
|
-
#define _SELF(value) RVAL2GASYNCRESULT(value)
|
26
|
-
|
27
|
-
/* NOTE: g_async_result_get_user_data isn't of any use from Ruby. */
|
28
|
-
|
29
|
-
static VALUE
|
30
|
-
rg_source_object(VALUE self)
|
31
|
-
{
|
32
|
-
return GOBJ2RVAL_UNREF(g_async_result_get_source_object(_SELF(self)));
|
33
|
-
}
|
34
|
-
|
35
|
-
void
|
36
|
-
Init_gasyncresult(VALUE mGio)
|
37
|
-
{
|
38
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_INTERFACE(G_TYPE_ASYNC_RESULT, "AsyncResult", mGio);
|
39
|
-
|
40
|
-
RG_DEF_METHOD(source_object, 0);
|
41
|
-
}
|