File: nemo-file-info.c

package info (click to toggle)
nemo 6.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,088 kB
  • sloc: ansic: 127,474; xml: 1,555; python: 1,434; sh: 57; makefile: 20
file content (369 lines) | stat: -rw-r--r-- 10,558 bytes parent folder | download | duplicates (3)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
/*
 *  nemo-file-info.c - Information about a file 
 *
 *  Copyright (C) 2003 Novell, Inc.
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public
 *  License along with this library; if not, write to the Free
 *  Software Foundation, Inc., 51 Franklin Street, Suite 500, MA 02110-1335, USA.
 *
 */

#include <config.h>
#include "nemo-file-info.h"
#include "nemo-extension-private.h"

G_DEFINE_INTERFACE (NemoFileInfo, nemo_file_info, G_TYPE_OBJECT)

NemoFileInfo *(*nemo_file_info_getter) (GFile *location, gboolean create);

/**
 * SECTION:nemo-file-info
 * @Title: NemoFileInfo
 * @Short_description: A wrapper interface for extensions to access NemoFile info.
 *
 * This inteface is implemented by NemoFile and provides access to certain information
 * regarding a given file object.  It is also used to add file attributes and notify
 * a file of changes to those attribues when using a #NemoInfoProvider.
 **/

static void
nemo_file_info_default_init (NemoFileInfoInterface *klass)
{
}

/**
 * nemo_file_info_list_copy:
 * @files: (element-type NemoFileInfo): the files to copy
 *
 * Returns: (element-type NemoFileInfo) (transfer full): a copy of @files.
 *  Use #nemo_file_info_list_free to free the list and unref its contents.
 */
GList *
nemo_file_info_list_copy (GList *files)
{
    GList *ret;
    GList *l;
    
    ret = g_list_copy (files);
    for (l = ret; l != NULL; l = l->next) {
        g_object_ref (G_OBJECT (l->data));
    }

    return ret;
}

/**
 * nemo_file_info_list_free:
 * @files: (element-type NemoFileInfo): a list created with
 *   #nemo_file_info_list_copy
 *
 */
void              
nemo_file_info_list_free (GList *files)
{
    GList *l;
    
    for (l = files; l != NULL; l = l->next) {
        g_object_unref (G_OBJECT (l->data));
    }
    
    g_list_free (files);
}

gboolean
nemo_file_info_is_gone (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), FALSE);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->is_gone != NULL, FALSE);
	
	return NEMO_FILE_INFO_GET_IFACE (file)->is_gone (file);
}

GFileType
nemo_file_info_get_file_type (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), G_FILE_TYPE_UNKNOWN);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_file_type != NULL, G_FILE_TYPE_UNKNOWN);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_file_type (file);
}

char *
nemo_file_info_get_name (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_name != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_name (file);
}

/**
 * nemo_file_info_get_location:
 * @file: a #NemoFileInfo
 *
 * Returns: (transfer full): a #GFile for the location of @file
 */
GFile *
nemo_file_info_get_location (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_location != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_location (file);
}
char *
nemo_file_info_get_uri (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_uri != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_uri (file);
}

char *
nemo_file_info_get_activation_uri (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_activation_uri != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_activation_uri (file);
}

/**
 * nemo_file_info_get_parent_location:
 * @file: a #NemoFileInfo
 *
 * Returns: (allow-none) (transfer full): a #GFile for the parent location of @file, 
 *   or %NULL if @file has no parent
 */
GFile *
nemo_file_info_get_parent_location (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_parent_location != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_parent_location (file);
}

char *
nemo_file_info_get_parent_uri (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_parent_uri != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_parent_uri (file);
}

/**
 * nemo_file_info_get_parent_info:
 * @file: a #NemoFileInfo
 *
 * Returns: (allow-none) (transfer full): a #NemoFileInfo for the parent of @file, 
 *   or %NULL if @file has no parent
 */
NemoFileInfo *
nemo_file_info_get_parent_info (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_parent_info != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_parent_info (file);
}

/**
 * nemo_file_info_get_mount:
 * @file: a #NemoFileInfo
 *
 * Returns: (allow-none) (transfer full): a #GMount for the mount of @file, 
 *   or %NULL if @file has no mount
 */
GMount *
nemo_file_info_get_mount (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_mount != NULL, NULL);
    
	return NEMO_FILE_INFO_GET_IFACE (file)->get_mount (file);
}

char *
nemo_file_info_get_uri_scheme (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_uri_scheme != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_uri_scheme (file);
}

char *
nemo_file_info_get_mime_type (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_mime_type != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_mime_type (file);
}

gboolean
nemo_file_info_is_mime_type (NemoFileInfo *file,
				 const char *mime_type)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), FALSE);
	g_return_val_if_fail (mime_type != NULL, FALSE);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->is_mime_type != NULL, FALSE);

	return NEMO_FILE_INFO_GET_IFACE (file)->is_mime_type (file,
								  mime_type);
}

gboolean
nemo_file_info_is_directory (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), FALSE);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->is_directory != NULL, FALSE);

	return NEMO_FILE_INFO_GET_IFACE (file)->is_directory (file);
}

gboolean
nemo_file_info_can_write (NemoFileInfo *file)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), FALSE);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->can_write != NULL, FALSE);

	return NEMO_FILE_INFO_GET_IFACE (file)->can_write (file);
}

void
nemo_file_info_add_emblem (NemoFileInfo *file,
			       const char *emblem_name)
{
	g_return_if_fail (NEMO_IS_FILE_INFO (file));
	g_return_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->add_emblem != NULL);

	NEMO_FILE_INFO_GET_IFACE (file)->add_emblem (file, emblem_name);
}

char *
nemo_file_info_get_string_attribute (NemoFileInfo *file,
					 const char *attribute_name)
{
	g_return_val_if_fail (NEMO_IS_FILE_INFO (file), NULL);
	g_return_val_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->get_string_attribute != NULL, NULL);
	g_return_val_if_fail (attribute_name != NULL, NULL);

	return NEMO_FILE_INFO_GET_IFACE (file)->get_string_attribute 
		(file, attribute_name);
}

void
nemo_file_info_add_string_attribute (NemoFileInfo *file,
					 const char *attribute_name,
					 const char *value)
{
	g_return_if_fail (NEMO_IS_FILE_INFO (file));
	g_return_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->add_string_attribute != NULL);
	g_return_if_fail (attribute_name != NULL);
	g_return_if_fail (value != NULL);
	
	NEMO_FILE_INFO_GET_IFACE (file)->add_string_attribute 
		(file, attribute_name, value);
}

/**
 * nemo_file_info_invalidate_extension_info:
 * @file: a #NemoFile
 *
 * Notifies nemo to re-run info provider extensions on the given file.
 *
 * This is useful if you have an extension that listens or responds to some external
 * interface for changes to local file metadata (such as a cloud drive changing file emblems.)
 *
 * When a change such as this occurs, call this on the file in question, and nemo will
 * schedule a call to extension->update_file_info to update its own internal metadata.
 *
 * NOTE: This does *not* need to be called on the tail end of a update_full/update_complete
 * asynchronous extension.  Prior to Nemo 3.6 this was indeed the case, however, due to a
 * recursion issue in nemo-directory-async.c (see nemo 9e67417f8f09.)
 */
void
nemo_file_info_invalidate_extension_info (NemoFileInfo *file)
{
	g_return_if_fail (NEMO_IS_FILE_INFO (file));
	g_return_if_fail (NEMO_FILE_INFO_GET_IFACE (file)->invalidate_extension_info != NULL);
	
	NEMO_FILE_INFO_GET_IFACE (file)->invalidate_extension_info (file);
}

/**
 * nemo_file_info_lookup:
 * @location: the location to lookup the file info for
 *
 * Returns: (transfer full): a #NemoFileInfo
 */
NemoFileInfo *
nemo_file_info_lookup (GFile *location)
{
	return nemo_file_info_getter (location, FALSE);
}

/**
 * nemo_file_info_create:
 * @location: the location to create the file info for
 *
 * Returns: (transfer full): a #NemoFileInfo
 */
NemoFileInfo *
nemo_file_info_create (GFile *location)
{
	return nemo_file_info_getter (location, TRUE);
}

/**
 * nemo_file_info_lookup_for_uri:
 * @uri: the URI to lookup the file info for
 *
 * Returns: (transfer full): a #NemoFileInfo
 */
NemoFileInfo *
nemo_file_info_lookup_for_uri (const char *uri)
{
	GFile *location;
	NemoFile *file;

	location = g_file_new_for_uri (uri);
	file = nemo_file_info_lookup (location);
	g_object_unref (location);

	return file;
}

/**
 * nemo_file_info_create_for_uri:
 * @uri: the URI to lookup the file info for
 *
 * Returns: (transfer full): a #NemoFileInfo
 */
NemoFileInfo *
nemo_file_info_create_for_uri (const char *uri)
{
	GFile *location;
	NemoFile *file;

	location = g_file_new_for_uri (uri);
	file = nemo_file_info_create (location);
	g_object_unref (location);

	return file;
}