Skip to content

Commit 0805fff

Browse files
committed
Use Compat.uuid5
1 parent 8c135cd commit 0805fff

File tree

2 files changed

+3
-25
lines changed

2 files changed

+3
-25
lines changed

Project.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ uuid = "33c8b6b6-d38a-422a-b730-caa89a2f386c"
33
version = "0.1.0"
44

55
[deps]
6+
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
67
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
7-
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"
88
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
99

1010
[compat]
11+
Compat = "3.2"
1112
julia = "0.7, 1"
1213

1314
[extras]

src/ProgressLogging.jl

+1-24
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,10 @@ module ProgressLogging
66
export @progress, @progressid, @withprogress, @logprogress
77

88
using Base.Meta: isexpr
9+
using Compat: uuid5 # for Julia 1.0
910
using UUIDs: UUID, uuid4
1011
using Logging: Logging, @logmsg, LogLevel
1112

12-
if VERSION >= v"1.1-"
13-
using UUIDs: uuid5
14-
else
15-
import SHA
16-
function uuid5(ns::UUID, name::String)
17-
nsbytes = zeros(UInt8, 16)
18-
nsv = ns.value
19-
for idx in Base.OneTo(16)
20-
nsbytes[idx] = nsv >> 120
21-
nsv = nsv << 8
22-
end
23-
hash_result = SHA.sha1(append!(nsbytes, convert(Vector{UInt8}, codeunits(unescape_string(name)))))
24-
# set version number to 5
25-
hash_result[7] = (hash_result[7] & 0x0F) | (0x50)
26-
hash_result[9] = (hash_result[9] & 0x3F) | (0x80)
27-
v = zero(UInt128)
28-
#use only the first 16 bytes of the SHA1 hash
29-
for idx in Base.OneTo(16)
30-
v = (v << 0x08) | hash_result[idx]
31-
end
32-
return UUID(v)
33-
end
34-
end
35-
3613
const ProgressLevel = LogLevel(-1)
3714

3815
"""

0 commit comments

Comments
 (0)