Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use powershell command for download #144

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 40 additions & 19 deletions src/WinRPM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,33 +46,54 @@ function __init__()
update(false, false)
end

if isunix()
function download(source::AbstractString)
x = HTTPC.get(source)
unsafe_string(x.body), x.http_code
if VERSION < v"0.7.0-DEV"
if isunix()
function download(source::AbstractString)
x = HTTPC.get(source)
unsafe_string(x.body), x.http_code
end
elseif iswindows()
function download(source::AbstractString; retry=5)
dest = Vector{UInt16}(261)
for i in 1:retry
res = ccall((:URLDownloadToCacheFileW, :urlmon), stdcall, Cuint,
(Ptr{Void}, Ptr{UInt16}, Ptr{UInt16}, Clong, Cint, Ptr{Void}),
C_NULL, transcode(UInt16, source), dest, sizeof(dest) >> 1, 0, C_NULL)
if res == 0
resize!(dest, findfirst(iszero, dest) - 1)
filename = transcode(String, dest)
if isfile(filename)
return read(filename, String), 200
end
else
warn("Unknown download failure, error code: $res")
end
warn("Retry $i/$retry downloading: $source")
end
return "", 0
end
else
error("Platform not supported: $(Sys.KERNEL)")
end
elseif iswindows()
function download(source::AbstractString; retry=5)
dest = Vector{UInt16}(261)
else
function download(source::AbstractString; retry=5)
for i in 1:retry
res = ccall((:URLDownloadToCacheFileW, :urlmon), stdcall, Cuint,
(Ptr{Void}, Ptr{UInt16}, Ptr{UInt16}, Clong, Cint, Ptr{Void}),
C_NULL, transcode(UInt16, source), dest, sizeof(dest) >> 1, 0, C_NULL)
if res == 0
resize!(dest, findfirst(iszero, dest) - 1)
filename = transcode(String, dest)
try
filename = joinpath(tempdir(), split(source, "/")[end])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this looks highly likely to have collisions

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So you'd rather not enforce the filename?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, don't drop most of source.

filename = Base.download(source, filename)
if isfile(filename)
return read(filename, String), 200
return readstring(filename), 200
end
catch ex
if i == retry
warn("download from $source failed: $ex")
return "", 0
end
else
warn("Unknown download failure, error code: $res")
end
warn("Retry $i/$retry downloading: $source")
end
end
return "", 0
end
else
error("Platform not supported: $(Sys.KERNEL)")
end

getcachedir(source) = getcachedir(cachedir, source)
Expand Down