This commit is contained in:
Joey Hess 2016-11-17 21:04:35 -04:00
parent ae403be24b
commit 505d1df8ab
No known key found for this signature in database
GPG key ID: C910D9222512E3C7

View file

@ -104,16 +104,7 @@ auth myuuid t = do
return Nothing return Nothing
get :: Key -> Proto Bool get :: Key -> Proto Bool
get key = do get key = receiveContent key (`GET` key)
Len n <- keyFileSize key
let offset = Offset n
sendMessage (GET offset key)
r <- getMessage
case r of
DATA len -> receiveContent key offset len
_ -> do
sendMessage (PROTO_ERROR "expected DATA")
return False
put :: Key -> Proto Bool put :: Key -> Proto Bool
put key = do put key = do
@ -156,23 +147,17 @@ serve myuuid = go Nothing
_ -> do _ -> do
case autheduuid of case autheduuid of
Just theiruuid -> authed theiruuid r Just theiruuid -> authed theiruuid r
Nothing -> sendMessage (PROTO_ERROR "must AUTH first") Nothing -> sendMessage (PROTO_ERROR "must AUTH first")
go autheduuid go autheduuid
authed theiruuid r = case r of authed _theiruuid r = case r of
PUT key -> do PUT key -> do
(Len n) <- keyFileSize key ok <- receiveContent key PUT_FROM
let offset = Offset n when ok $
sendMessage (PUT_FROM offset) setPresent key myuuid
r' <- getMessage
case r' of
DATA len -> do
void $ receiveContent key offset len
setPresent key myuuid
_ -> sendMessage (PROTO_ERROR "expected DATA")
-- setPresent not called because the peer may have -- setPresent not called because the peer may have
-- requested the data but not permanatly stored it. -- requested the data but not permanatly stored it.
GET offset key -> sendContent key offset GET offset key -> void $ sendContent key offset
_ -> sendMessage (PROTO_ERROR "unexpected command") _ -> sendMessage (PROTO_ERROR "unexpected command")
sendContent :: Key -> Offset -> Proto Bool sendContent :: Key -> Offset -> Proto Bool
@ -188,12 +173,21 @@ sendContent key offset = do
sendMessage (PROTO_ERROR "expected SUCCESS or FAILURE") sendMessage (PROTO_ERROR "expected SUCCESS or FAILURE")
return False return False
receiveContent :: Key -> Offset -> Len -> Proto Bool receiveContent :: Key -> (Offset -> Message) -> Proto Bool
receiveContent key offset len = do receiveContent key mkmsg = do
content <- receiveBytes len Len n <- keyFileSize key
ok <- writeKeyFile key offset content let offset = Offset n
sendMessage $ if ok then SUCCESS else FAILURE sendMessage (mkmsg offset)
return ok r <- getMessage
case r of
DATA len -> do
content <- receiveBytes len
ok <- writeKeyFile key offset content
sendMessage $ if ok then SUCCESS else FAILURE
return ok
_ -> do
sendMessage (PROTO_ERROR "expected DATA")
return False
-- Reads key file from an offset. The Len should correspond to -- Reads key file from an offset. The Len should correspond to
-- the length of the ByteString, but to avoid buffering the content -- the length of the ByteString, but to avoid buffering the content