ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/Changes
Revision: 1.78
Committed: Mon Oct 23 14:49:51 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.77: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 Revision history for IO::AIO
2
3 TODO: better autoconf.pm that can return LIBS etc.
4 TODO: use feeder for aio_scandir.
5 TODO: -lock/unlock, +callback/etc.
6
7 2.0
8 - aio requests can be cancelled.
9 - callbacks can be set later.
10 - add aio_group: aio requests can be grouped.
11 - implement generator interface for groups.
12 - major documentation improvements.
13 - very minor bugfixes.
14 - add aio_nop for dummy requests.
15 - add aio_sleep mainly for benchmarking and debugging.
16 - deprecated max_outstanding.
17
18 1.8 Sat Jun 24 22:20:44 CEST 2006
19 - add and/or document aio_rename, aio_link, aio_symlink and aio_move.
20
21 1.73 Wed Mar 1 22:49:32 CET 2006
22 - codename "jost"
23 - AIX/Solaris(?) aren't being helpful again, hardcode a value
24 for NAME_MAX and drive with your eyes closed (reported by
25 wcooley@nakedape.cc).
26
27 1.72 Thu Feb 2 00:40:44 CET 2006
28 - another minor bug in aio_scandir, again, the callback was called
29 twice when the directory can't be stat'ed.
30
31 1.71 Mon Dec 26 20:20:03 CET 2005
32 - grr, another minor bug in aio_scandir, this time resulting
33 in a runtime error.
34
35 1.7 Mon Dec 26 19:29:48 CET 2005
36 - aio_scandir errornously called callback twice in some cases.
37 - added AnyEvent example.
38
39 1.61 Wed Sep 7 19:40:42 CEST 2005
40 - no longer include $Config{libs}, as distros include too much
41 garbage in there that is not installed on typical systems
42 (for example, debian links perl against -lgdbm and many more
43 libraries despite perl not needing it, slowing down startup and
44 wasting memory).
45
46 1.6 Tue Aug 30 17:44:44 CEST 2005
47 - added aio_readdir, aio_scandir.
48 - added aio_sendfile, including sendfile emulation when sendfile
49 isn't available. Linux, FreeBSD and HP-UX might work (sendfilev
50 support is unavailable on my solaris 8 machine, but preliminary
51 code is there. What's lacking is configury stuff and testing...).
52
53 1.5 Sat Aug 20 02:32:19 CEST 2005
54 - create the aio threads on demand only (good after forking).
55 - somebody nagged about C89 compatibility, so this release should
56 be C89 compatible, but no guarantees for future ones.
57 - abort when the configure script fails.
58
59 1.4 Wed Aug 17 08:07:27 CEST 2005
60 - forget to recreate the pipe after forking, this could cause
61 deadlocks.
62
63 1.3 Wed Aug 17 07:25:54 CEST 2005
64 - properly propagate exceptions from callbacks, instead of silently
65 eating them.
66 - use a different fork algorithm that avoids recursive callback
67 invocations and reduces fork latency in busy processes.
68 - fix a bug where the buffer scalar in aio_read got assigned the wrong
69 length after reading.
70 - fix a bug where the child would process some outstanding requests
71 from the parent.
72 - make a copy of the callback scalar, to avoid some very uncommon
73 (but valid) usages where the callback scalar changes.
74 - the callback was never freed in aio_read/aio_write.
75 - aio_read/aio_write will now set the readonly flag on the data
76 scalar for better error reporting.
77
78 1.2 Wed Aug 17 01:22:58 CEST 2005
79 - verified on cygwin, linux/amd64+ia32+alpha, solaris.
80 - use SvPVbyte for filenames now. You *need* to encode your strings to
81 the external filename encoding first.
82 - fix the bug where filehandles could leak (again).
83 - clarify freebsd situation: make it work and tell me how, or go away
84 with your underdocumented, broken and outdated OS.
85 - fork'ing should now be officially supported (where linux and
86 posix contradict each other, I followed posix).
87 - only call read() once per poll, not twice (speedup).
88 - new functions: aio_rmdir, aio_symlink.
89 - force callback arguments to be undef or a reference, for better
90 error catching.
91
92 1.1 Sun Aug 7 05:27:23 CEST 2005
93 - added configure script to detect availability of some calls.
94 (imperfect, as we cannot detect things like -lrt due to missing
95 feedback yet).
96 - emulate fdatasync via fsync, pread/pwrite via unsafe read/write
97 and readahead via manual reading on platforms lacking those.
98 - ported t/03_errors.t+framework by Brad Fitzpatrick
99 from Linux::AIO.
100 - removed XOPEN_SOURCE because stupid solaris 9 doesn't
101 compile with it enabled. Probably breaks others. Oh well.
102 - try to be more careful with errno on non-threaded perls.
103 - cygwins perl insisted on a matching open mode when morphing
104 the fd to an fh.
105 - convert sv's to "byte" encoding in aio_read/aio_write. Might
106 do that for pathnames, too, in the future, so make sure you
107 properly encode your pathnames.
108
109 1.0 Fri Jul 22 10:43:30 CEST 2005
110 - aio_open did not reliably deliver (open) filehandles.
111 - all aio_*-functions keep a reference to the filehandle so
112 it doesn't go away while the aio requests is working on it.
113 - disable warnings in AIO.pm.
114
115 0.9 Wed Jul 20 23:55:04 CEST 2005
116 - allow recursive calls to poll_cb, use less locking calls, too.
117 - fix the Gtk2-example in the SYNOPSIS.
118 - use pread/pwrite not pread64/pwrite64. this was simply a leftover
119 from Linux::AIO.
120 (found by compiling on cygwin. Unfortunately, cygwin declares but
121 does not implement pread/pwrite).
122 - only include <sys/syscall.h> on linux.
123
124 0.5 Tue Jul 12 13:03:09 CEST 2005
125 - removed #include <endian.h>, it's not portable, and we don't
126 need it anyway.
127 - link against -lrt, as it might contain goodies such as fdatasync,
128 and often aio_read, which we do not use yet, but it shouldn't hurt.
129
130 0.4 Mon Jul 11 05:28:25 CEST 2005
131 - added IO::AIO::flush, IO::AIO::poll.
132 - make callback argument optional for all calls.
133
134 0.3 Mon Jul 11 01:42:37 CEST 2005
135 - restructured manpage.
136 - added SYNOPSIS with examples for Event, Glib, Tk.
137 - remove explicit context support so I don't have to maintain
138 it for threaded perls (i.e. it should work now :).
139
140 0.2 Sun Jul 10 22:57:12 CEST 2005
141 - return immediately from poll_wait if nreqs==0.
142 - get rid of the request pipe and use faster thread-thread
143 communications for most requests and responses.
144
145 0.1
146 - cloned from Linux::AIO, which is very similar.
147