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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
2007-11-03 Paolo Borelli <pborelli@katamail.com>
* client/gdaemonvfs.c (get_mountspec_from_uri):
Do not leak the decoded uri.
2007-11-02 Sebastien Bacher <seb128@ubuntu.com>
* common/Makefile.am: use the correct gmountoperationdbus.h naming
2007-11-01 Christian Kellner <gicmo@gnome.org>
* client/*.[ch]:
* common/*.[ch]:
* daemon/*.[ch]:
* test/*.[ch]:
Add copyright information to source files.
2007-11-01 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfile.c:
* client/gdaemonvfs.[ch]:
Implement get_uri_scheme
* daemon/mount.c:
Add needed includes
2007-10-31 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfile.c:
Implement contains_file and get_relative_path
2007-10-31 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackend.[ch]:
Add g_vfs_backend_get_mount_spec
* daemon/gvfsjobqueryfsinfo.c:
Fix indentation
* daemon/gvfsjobqueryinfo.c:
Implement id:fs attribute
2007-10-31 Alexander Larsson <alexl@redhat.com>
* client/gdaemonvolume.c:
Remove get_platform_id
2007-10-31 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfile.c:
Implement find_enclosing_volume
* client/gdaemonvolume.[ch]:
* client/gdaemonvolumemonitor.c:
No need to pass volume monitor when
createing volumes
2007-10-31 Alexander Larsson <alexl@redhat.com>
* common/gmounttracker.[ch]:
Add all mount info to GMountInfo
Make it refcounted
* client/gdaemonvfs.[ch]:
* client/gdaemonfile.c:
* client/gdaemonvolumemonitor.c:
Remove GMountRef, replacing its use with
GMountInfo
2007-10-31 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsjobqueryfsinfo.c:
Remove volume name attribute
2007-10-31 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendtrash.c:
Update to new API
2007-10-30 Alexander Larsson <alexl@redhat.com>
* common/gmounttracker.c:
Handle threads not being initialized
* daemon/gvfsjobqueryfsinfo.c:
Set volume name
2007-10-26 Alexander Larsson <alexl@redhat.com>
* client/gdaemonvolumemonitor.c:
Don't show not user visible mounts
* daemon/mount.c:
Don't give fuse mounts for non visible mounts
(as they don't get mounted)
* daemon/gvfsbackendsmbbrowse.c:
* daemon/gvfsbackendtrash.c:
Mark as not user visible
2007-10-26 Alexander Larsson <alexl@redhat.com>
* common/gvfsdaemonprotocol.h:
Add registerFuse call
* client/gvfsfusedaemon.c:
Register with vfs daemon
Exit (and unmount) if daemon dies
* daemon/mount.c:
Hand out fuse mountpaths when availible.
* client/gdaemonvfs.[ch]:
* common/gmounttracker.c:
Handle sent fuse mountpath
* client/gdaemonfile.c:
Implement g_daemon_file_get_path using fuse
if availible.
2007-10-26 Alexander Larsson <alexl@redhat.com>
* client/Makefile.am:
* client/gvfsfusedaemon.c:
Update fuse daemon to use the giomodule instead of
linking to a copy of the code. The old way was
problematic with the module code being a dynamic
type in the module and not in the fuse daemon.
2007-10-25 Alexander Larsson <alexl@redhat.com>
* client/smburi.c:
* common/gvfsurimapper.[ch]:
Make to_uri_scheme return const string.
* client/gdaemonfile.[ch]:
* client/gdaemonvfs.[ch]:
Add _g_daemon_vfs_mountspec_has_uri_scheme and use it to
implement g_file_has_uri_scheme
2007-10-24 Alexander Larsson <alexl@redhat.com>
* common/gmountsource.c:
(g_mount_source_ask_password):
Increase password dialog timeout to 30 minutes
2007-10-24 Alexander Larsson <alexl@redhat.com>
* common/gmountspec.c:
(g_mount_spec_set_mount_prefix):
Actually assign the mount_prefix in the GMountSpec
2007-10-23 Sebastian Dröge <slomo@circular-chaos.org>
* client/Makefile.am:
Change the GIO module dir to $(libdir)/gio/modules as was
done in GIO.
2007-10-23 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfile.c:
* client/gdaemonvfs.c:
* common/gmountspec.[ch]:
Ensure GDaemonFile mount specs are actually unique.
When a non-unique mount spec was finalized any unique
version of the same was removed from the hashtable.
2007-10-23 Alexander Larsson <alexl@redhat.com>
* client/gdaemonvfs.c:
(_g_daemon_vfs_get_uri_for_mountspec):
Better handling for default types.
(Handle hostname, port and username)
2007-10-22 Alexander Larsson <alexl@redhat.com>
* client/gdaemonvfs.c:
* common/gvfsuriutils.[ch]:
* daemon/gvfsbackendtrash.c:
Update to use the gurifuncs.h from gio.
Fix filename parsing to handle ~/x
2007-10-19 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackend.[ch]:
Rename set_icon -> set_icon_name
Add getter for icon_name and display_name
* daemon/gvfsbackendsmb.c:
* daemon/gvfsbackendsmbbrowse.c:
Update for API changes
Set display name for in fileinfo
* daemon/gvfsbackendsftp.c:
* daemon/gvfsbackendtrash.c:
Update for API changes
2007-10-19 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfile.c:
(g_daemon_file_hash): Faster hash, since mount_spec is unique
(g_daemon_file_equal): Compare mount spec too
* daemon/gvfsbackendsmb.c:
* daemon/gvfsbackendsmbbrowse.c:
Set volume display names and icons
Set content type and icon for files
2007-10-19 Alexander Larsson <alexl@redhat.com>
* common/gmounttracker.[ch]:
* client/gdaemonvfs.c:
* daemon/mount.c:
Add user_visible to mount info
Reorder args so that new stuff comes at the end
* daemon/gvfsbackend.[ch]:
Add user_visible setting
Fix up various setters that set the wrong variable
* daemon/gvfsbackendtrash.c:
Add icon and better display name
2007-10-19 Alexander Larsson <alexl@redhat.com>
* client/gdaemonvfs.[ch]:
* client/gdaemonvolume.c:
* client/gdaemonvolumemonitor.[ch]:
Implement using DEFINE_DYNAMIC_TYPE
Actually register GDaemonVolumeMonitor in giomodule
* common/gmounttracker.c:
Update to the on-dbus format for mounts
2007-10-19 Alexander Larsson <alexl@redhat.com>
* client/smburi.c (smb_to_uri):
No port by default
2007-10-16 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfile.c:
(g_daemon_file_get_parent):
Fix get_parent to handle files that are in the root directory
2007-10-16 Alexander Larsson <alexl@redhat.com>
* common/gvfsdaemonprotocol.[ch]:
Make sending icons actually work
* daemon/gvfsbackendtrash.c:
Set icon for toplevel
* daemon/gvfsmonitor.c:
Initialize error before call
2007-10-12 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsdaemon.c:
Build fixes
Patch from Milosz Derezynski <internalerror@gmail.com>
2007-10-10 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendtrash.c:
Support file monitor on trash:/// (for icon)
2007-10-10 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendtrash.c:
Add support for directory monitor on root dir
2007-10-09 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendtrash.c:
Correctly handle len arg in unescape_pathname
2007-10-09 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendtrash.c:
Nicer filenames for things in the home trash.
This is the common case, so lets make them look nice.
2007-10-09 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendtrash.c:
Check for trash dirs in fork to avoid getting stuck
on e.g. hanged nfs dirs
2007-10-09 Alexander Larsson <alexl@redhat.com>
* client/Makefile.am:
* client/gdaemonfile.c:
* client/gdaemonfilemonitor.[ch]:
Implement file monitor in client
* common/gvfsdaemonprotocol.h:
* daemon/gvfsbackend.c:
Implement file monitor in daemon
* daemon/gvfsbackendtrash.c:
Implement file monitor in trash backend
Make trash filename escaping nicer
2007-10-09 Alexander Larsson <alexl@redhat.com>
* configure.ac:
Pull in gio-unix-2.0
* daemon/gvfsbackendtrash.c:
Use GUnixMounts instead of volume monitor
This shows *all* mounts and avoids unnecessary stuff
2007-10-08 Alexander Larsson <alexl@redhat.com>
* common/gvfsdaemonprotocol.h:
Add defines for monitoring
* client/Makefile.am:
* client/gdaemondirectorymonitor.[ch]:
* client/gdaemonfilemonitor.[ch]:
* client/gdaemonfile.c:
Add daemon directory monitor and initial work on file monitor
* client/gdaemonfileenumerator.c:
Make path_counter private
Return DBUS_HANDLER_RESULT_HANDLED when handling messages.
* client/gdaemonvfs.[ch]:
Make _g_mount_ref_ref "public"
* client/gvfsdaemondbus.c:
Handle NULL callbacks for async calls
* daemon/Makefile.am:
* daemon/gvfsbackend.[ch]:
* daemon/gvfsjobcreatemonitor.[ch]:
Add create_dir_monitor and create_file_monitor.
Add g_vfs_backend_get_daemon
* daemon/gvfsmonitor.[ch]:
Helper code for monitors
* daemon/gvfsbackendtrash.c:
Implement directory monitor for trash dirs
2007-10-08 Sebastian Dröge <slomo@circular-chaos.org>
* client/gdaemonvfs.c: (g_daemon_vfs_finalize),
(g_daemon_vfs_init), (fill_supported_uri_schemes),
(g_daemon_vfs_get_supported_uri_schemes),
(g_daemon_vfs_class_init):
* client/smburi.c: (smb_to_uri_scheme),
(g_vfs_uri_mapper_smb_class_init):
* common/gvfsdaemonprotocol.h:
* common/gvfsurimapper.c: (g_vfs_uri_mapper_to_uri_scheme):
* common/gvfsurimapper.h:
* daemon/mount.c: (list_mount_types), (dbus_message_function):
Implement get_supported_uri_schemes method and add a GVfsUriMapper
method to map a mount spec to an URI scheme.
2007-10-05 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendtrash.c:
Add delete support to trash
2007-10-04 Alexander Larsson <alexl@redhat.com>
* common/gvfsuriutils.c:
(g_uri_unescape_string):
Allow NULL end pointer
* daemon/gvfsjob.[ch]:
Add cancellable to GVfsJob for backends that want one
* daemon/gvfsjobenumerate.[ch]:
* daemon/gvfsjobqueryinfo.[ch]:
Also store attribute in string form.
Needed if you want to pass it on into gio.
* daemon/Makefile.am:
* daemon/gvfsbackendtrash.[ch]:
* daemon/trash.mount.in: Added.
Added trash backend
2007-10-04 Alexander Larsson <alexl@redhat.com>
* TODO:
* client/gdaemonfile.c:
* client/gvfsfusedaemon.c:
* daemon/gvfsbackend.h:
* daemon/gvfsbackendftp.c:
* daemon/gvfsbackendsftp.c:
* daemon/gvfsbackendsmb.c:
* daemon/gvfsjobopenforwrite.[ch]:
* test/benchmark-gvfs-big-files.c:
* test/benchmark-gvfs-small-files.c:
Add GFileCreateFlags flag to open for write.
No actual backend support yet though.
2007-10-02 Sebastian Dröge <slomo@circular-chaos.org>
* client/gdaemonfile.c: (g_daemon_file_append_to),
(g_daemon_file_create), (g_daemon_file_replace):
* test/benchmark-gvfs-big-files.c: (create_file):
* test/benchmark-gvfs-small-files.c: (create_file): Update to API
changes in gio.
* daemon/gvfschannel.c:
* daemon/gvfsreadchannel.c:
* daemon/gvfswritechannel.c:
* daemon/main.c:
Drop unecessary includes.
2007-09-29 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac: Revert accidentally included local change.
2007-09-29 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac: Update to the new pkg-config filename.
* gio-standalone.pc.in: Remove pkg-config file that belongs to gio.
2007-09-27 Sebastian Dröge <slomo@circular-chaos.org>
* daemon/gvfsbackendftp.c: (do_replace), (do_query_info),
(do_query_fs_info), (do_enumerate):
Update signatures for API changes in gio.
2007-09-25 Alexander Larsson <alexl@redhat.com>
* client/gvfsdaemondbus.c:
Clear VfsConnectionData on creation
(fixes read of uninitialized data on thread shutdown)
* daemon/sftp.mount.in:
Correct the type to "sftp"
2007-09-25 Alexander Larsson <alexl@redhat.com>
* daemon/mount.c:
Return NOT_SUPPORTED error for unsupported uri types
2007-09-25 Alexander Larsson <alexl@redhat.com>
* client/gvfsfusedaemon.c:
* daemon/gvfsbackendsmbbrowse.c:
Update for G_IO_ERROR_NOT_MOUNTABLE_FILE name change
2007-09-25 Alexander Larsson <alexl@redhat.com>
* common/gmountoperationdbus.[ch]:
* common/gmounttracker.[ch]:
Pass in DBusConnection to use instead of using default one
* client/gdaemonfile.c:
* client/gdaemonvfs.[ch]:
* client/gvfsdaemondbus.c:
Use private dbus connection even for async calls, since the
mainloop integration is conflicting with dbus-glib.
This is a temporary measure until this is solved in a better way.
* client/gdaemonvolumemonitor.c:
* client/gvfsfusedaemon.c:
* daemon/gvfsbackendsmbbrowse.c:
Update to the API changes
2007-09-25 Sebastian Dröge <slomo@circular-chaos.org>
* client/gdaemonvfs.c: (g_daemon_vfs_finalize):
Don't unref wrapped_vfs as it's just a pointer to the single instance
return value of g_vfs_get_local().
2007-09-25 Sebastian Dröge <slomo@circular-chaos.org>
* client/gdaemonfile.c: (g_daemon_file_resolve_relative_path),
(g_daemon_file_file_iface_init):
* test/benchmark-gvfs-big-files.c: (create_file):
* test/benchmark-gvfs-small-files.c: (create_file):
Update for API change in GIO. g_file_resolve_relative was renamed
to g_file_resolve_relative_path.
2007-09-25 Sebastian Dröge <slomo@circular-chaos.org>
* common/gmountspec.c: (g_mount_spec_to_dbus_with_path):
* common/gvfsdaemonprotocol.c: (_g_dbus_append_file_attribute),
(_g_dbus_append_file_info), (_g_dbus_append_attribute_info_list):
* daemon/mount.c: (vfs_mount_to_dbus):
Don't pass the contained signature when creating a DBus struct. Since
DBus 1.1.0 this will lead to an assertion. The signature will filled
automatically while adding values to the struct.
2007-09-17 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfile.c:
* client/gdaemonfileinputstream.c:
* client/gdaemonfileoutputstream.c:
* client/gvfsfusedaemon.c:
* common/gvfsdaemonprotocol.h:
* daemon/Makefile.am:
* daemon/gvfsbackend.[ch]:
* daemon/gvfsbackendftp.c:
* daemon/gvfsbackendsftp.c:
* daemon/gvfsbackendsmb.c:
* daemon/gvfsbackendsmbbrowse.c:
* daemon/gvfsbackendtest.c:
* daemon/gvfsjobenumerate.h:
* daemon/gvfsjobgetfsinfo.[ch]: Removed.
* daemon/gvfsjobgetinfo.[ch]: Removed.
* daemon/gvfsjobqueryfsinfo.[ch]: Added.
* daemon/gvfsjobqueryinfo.[ch]: Added.
* daemon/gvfsjobsetattribute.[ch]:
* test/benchmark-gvfs-big-files.c:
* test/benchmark-gvfs-small-files.c:
Update with the get_info -> query_info rename in gio
2007-09-17 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendsftp.c:
Update to new GDataInputStream function names
2007-09-14 Alexander Larsson <alexl@redhat.com>
* client/gdaemonfileoutputstream.c:
(g_daemon_file_output_stream_get_etag):
Update to new get_etag API.
2007-09-14 Alexander Larsson <alexl@redhat.com>
* daemon/gvfsbackendsftp.c:
Add etag support for close on write
I stopped tracked changes here. Look at "git log" instead.
2006-09-28 Alexander Larsson <alexl@redhat.com>
* gfilesimple.[ch]:
Move GFileSimple struct into c file
2006-09-28 Alexander Larsson <alexl@redhat.com>
* gfile.[ch]:
Add follow_symlinks argument to get_info
* gfileinfo.[ch]:
Some mask fixes
* gfilesimple.c:
More implementation work
* glocalfileoutputstream.[ch]:
Implement set_original_mtime and set_create_backup
2006-09-28 Alexander Larsson <alexl@redhat.com>
* Makefile:
Add gfilesimple
* gfile.[ch]:
Add g_file_copy()
Finish rename to parse_name
Remove set_keep_open for now
* gfilesimple.[ch]:
Initial skeleton for GFileSimple
Handle parse names
* gvfssimple.c:
Handle parse names
2006-09-28 Alexander Larsson <alexl@redhat.com>
* gfileenumerator.c:
* gfileinfo.c:
* gfileinputstream.c:
* gfileoutputstream.c:
* ginputstream.c:
* glocalfileinputstream.c:
* glocalfileoutputstream.c:
* goutputstream.c:
* gvfssimple.c:
Use macro-created parent_class
2006-09-28 Alexander Larsson <alexl@redhat.com>
* gfile.c:
* gvfs.[ch]:
* gvfssimple.c:
Clean up parse_name names.
2006-09-28 Alexander Larsson <alexl@redhat.com>
* gfile.[ch]:
Add request flags & attributes
Use FileStreams
* gfileinputstream.h:
* gfileoutputstream.h:
Fix G_TYPE_... defines
* glocalfileoutputstream.c:
Small cleanups and mention gedit.
2006-09-27 Alexander Larsson <alexl@redhat.com>
* gfileinfo.[ch]:
Added g_file_info_new, g_file_info_set_from_stat
* glocalfileinputstream.c:
* glocalfileoutputstream.c:
Implemented get_file_info.
2006-09-27 Alexander Larsson <alexl@redhat.com>
* glocalfileoutputstream.c:
Update implementation of final mtime
2006-09-27 Alexander Larsson <alexl@redhat.com>
* gfileinfo.h:
* gfileinputstream.[ch]:
* gfileoutputstream.[ch]:
Flags & attributes in get_file_info
2006-09-27 Alexander Larsson <alexl@redhat.com>
* Makefile:
* ginputstreamfile.[ch]:
* goutputstreamfile.[ch]:
* glocalfileinputstream.[ch]:
* glocalfileoutputstream.[ch]:
Rename local file streams and make them
inherit from FileInput/OutputStream
* test.c:
Update
2006-09-27 Alexander Larsson <alexl@redhat.com>
* Makefile:
* gfileinputstream.[ch]:
* gfileoutputstream.[ch]:
Add new classes.
* gfileinfo.[ch]:
Add flags, symlink_target and edit_name
* ginputstream.[ch]
* goutputstream.[ch]:
Export close/pending state a bit
* gvfserror.h:
Add NOT_SUPPORTED
2006-09-27 Alexander Larsson <alexl@redhat.com>
* ginputstream.c:
* goutputstream.c:
Wrap async callback to automatically handle
setting of pending, closed and ref/unref of the stream.
2006-09-27 Alexander Larsson <alexl@redhat.com>
reviewed by: <delete if not using a buddy>
* ginputstream.c: (read_async_callback_wrapper),
(g_input_stream_read_async), (skip_async_callback_wrapper),
(g_input_stream_skip_async), (close_async_callback_wrapper),
(g_input_stream_close_async), (read_op_report), (read_op_free),
(g_input_stream_real_read_async), (skip_op_report), (skip_op_free),
(g_input_stream_real_skip_async), (close_op_report),
(close_op_free), (g_input_stream_real_close_async):
* goutputstream.c: (write_async_callback_wrapper),
(g_output_stream_write_async), (flush_async_callback_wrapper),
(g_output_stream_flush_async), (close_async_callback_wrapper),
(g_output_stream_close_async):
2006-09-27 Alexander Larsson <alexl@redhat.com>
* ginputstream.[ch]:
Update of close and pending handling.
* goutputstream.[ch]:
Implement default async version
2006-09-27 Alexander Larsson <alexl@redhat.com>
* Makefile:
Add output file streams
* ginputstream.c: (g_input_stream_is_cancelled):
Cleanup
* ginputstreamfile.[ch]:
remove get_fd.
* goutputstream.[ch]:
Add g_output_stream_is_cancelled
Add padding
Add cancel_async
* goutputstreamfile.[ch]:
Add new class
* gvfserror.h:
Add new errors
* test.c:
Some tests
2006-09-26 Alexander Larsson <alexl@redhat.com>
* Makefile:
Add gthread-2.0
* ginputstream.h:
add async_skip and is_cancelled.
* ginputstream.c:
Implement async fallbacks using thread
* ginputstreamfile.c:
Handle cancellation
* gioscheduler.c:
Schedule cancelled jobs first
Fix out-of-lock reads of job
Add g_io_job_mark_done().
* gioscheduler.h:
Add g_io_job_mark_done().
* test.c:
Add some stream tests
|