20
20
PollingFileWatcher,
21
21
FDWatcher
22
22
23
- import Base: @handle_as , wait, close, eventloop, notify_error, stream_wait,
24
- _sizeof_uv_poll, _sizeof_uv_fs_poll, _sizeof_uv_fs_event, _uv_hook_close, uv_error, UVError ,
23
+ import Base: @handle_as , wait, close, eventloop, notify_error, stream_wait, IOError,
24
+ _sizeof_uv_poll, _sizeof_uv_fs_poll, _sizeof_uv_fs_event, _uv_hook_close, uv_error, _UVError ,
25
25
associate_julia_struct, disassociate_julia_struct, isreadable, iswritable, |
26
26
import Base. Filesystem. StatStruct
27
27
if Sys. iswindows ()
@@ -85,7 +85,7 @@ mutable struct FileMonitor
85
85
err = ccall (:uv_fs_event_init , Cint, (Ptr{Cvoid}, Ptr{Cvoid}), eventloop (), handle)
86
86
if err != 0
87
87
Libc. free (handle)
88
- throw (UVError (" FileMonitor" , err))
88
+ throw (_UVError (" FileMonitor" , err))
89
89
end
90
90
finalizer (uvfinalize, this)
91
91
return this
95
95
96
96
mutable struct FolderMonitor
97
97
handle:: Ptr{Cvoid}
98
- notify:: Channel{Any} # eltype = Union{Pair{String, FileEvent}, UVError }
98
+ notify:: Channel{Any} # eltype = Union{Pair{String, FileEvent}, IOError }
99
99
open:: Bool
100
100
FolderMonitor (folder:: AbstractString ) = FolderMonitor (String (folder))
101
101
function FolderMonitor (folder:: String )
@@ -105,7 +105,7 @@ mutable struct FolderMonitor
105
105
err = ccall (:uv_fs_event_init , Cint, (Ptr{Cvoid}, Ptr{Cvoid}), eventloop (), handle)
106
106
if err != 0
107
107
Libc. free (handle)
108
- throw (UVError (" FolderMonitor" , err))
108
+ throw (_UVError (" FolderMonitor" , err))
109
109
end
110
110
this. open = true
111
111
finalizer (uvfinalize, this)
@@ -132,7 +132,7 @@ mutable struct PollingFileWatcher
132
132
err = ccall (:uv_fs_poll_init , Int32, (Ptr{Cvoid}, Ptr{Cvoid}), eventloop (), handle)
133
133
if err != 0
134
134
Libc. free (handle)
135
- throw (UVError (" PollingFileWatcher" , err))
135
+ throw (_UVError (" PollingFileWatcher" , err))
136
136
end
137
137
finalizer (uvfinalize, this)
138
138
return this
@@ -180,7 +180,7 @@ mutable struct _FDWatcher
180
180
err = ccall (:uv_poll_init , Int32, (Ptr{Cvoid}, Ptr{Cvoid}, RawFD), eventloop (), handle, fd)
181
181
if err != 0
182
182
Libc. free (handle)
183
- throw (UVError (" FDWatcher" , err))
183
+ throw (_UVError (" FDWatcher" , err))
184
184
end
185
185
finalizer (uvfinalize, this)
186
186
FDWatchers[fdnum] = this
@@ -229,7 +229,7 @@ mutable struct _FDWatcher
229
229
eventloop (), handle, fd)
230
230
if err != 0
231
231
Libc. free (handle)
232
- throw (UVError (" FDWatcher" , err))
232
+ throw (_UVError (" FDWatcher" , err))
233
233
end
234
234
finalizer (uvfinalize, this)
235
235
return this
314
314
function uv_fseventscb_file (handle:: Ptr{Cvoid} , filename:: Ptr , events:: Int32 , status:: Int32 )
315
315
t = @handle_as handle FileMonitor
316
316
if status != 0
317
- notify_error (t. notify, UVError (" FileMonitor" , status))
317
+ notify_error (t. notify, _UVError (" FileMonitor" , status))
318
318
else
319
319
t. events |= events
320
320
notify (t. notify, FileEvent (events))
325
325
function uv_fseventscb_folder (handle:: Ptr{Cvoid} , filename:: Ptr , events:: Int32 , status:: Int32 )
326
326
t = @handle_as handle FolderMonitor
327
327
if status != 0
328
- put! (t. notify, UVError (" FolderMonitor" , status))
328
+ put! (t. notify, _UVError (" FolderMonitor" , status))
329
329
else
330
330
fname = (filename == C_NULL ) ? " " : unsafe_string (convert (Cstring, filename))
331
331
put! (t. notify, fname => FileEvent (events))
336
336
function uv_pollcb (handle:: Ptr{Cvoid} , status:: Int32 , events:: Int32 )
337
337
t = @handle_as handle _FDWatcher
338
338
if status != 0
339
- notify_error (t. notify, UVError (" FDWatcher" , status))
339
+ notify_error (t. notify, _UVError (" FDWatcher" , status))
340
340
else
341
341
t. events |= events
342
342
if t. active[1 ] || t. active[2 ]
@@ -491,7 +491,7 @@ function wait(pfw::PollingFileWatcher)
491
491
if pfw. handle == C_NULL
492
492
return prevstat, EOFError ()
493
493
elseif pfw. curr_error != 0
494
- return prevstat, UVError (" PollingFileWatcher" , pfw. curr_error)
494
+ return prevstat, _UVError (" PollingFileWatcher" , pfw. curr_error)
495
495
else
496
496
return prevstat, pfw. curr_stat
497
497
end
@@ -685,7 +685,7 @@ function poll_file(s::AbstractString, interval_seconds::Real=5.007, timeout_s::R
685
685
@async (sleep (timeout_s); close (pfw))
686
686
end
687
687
statdiff = wait (pfw)
688
- if isa (statdiff[2 ], UVError )
688
+ if isa (statdiff[2 ], IOError )
689
689
# file didn't initially exist, continue watching for it to be created (or the error to change)
690
690
statdiff = wait (pfw)
691
691
end
0 commit comments