Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go-fuse
Commits
bf30f7b8
Commit
bf30f7b8
authored
May 25, 2012
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle EOF when splicing.
parent
ce49cdd4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
11 deletions
+44
-11
fuse/loopback_test.go
fuse/loopback_test.go
+3
-2
fuse/mountstate.go
fuse/mountstate.go
+30
-8
fuse/read.go
fuse/read.go
+3
-1
splice/pair.go
splice/pair.go
+8
-0
No files found.
fuse/loopback_test.go
View file @
bf30f7b8
...
...
@@ -139,7 +139,8 @@ func TestReadLarge(t *testing.T) {
ts
:=
NewTestCase
(
t
)
defer
ts
.
Cleanup
()
content
:=
make
([]
byte
,
1024
*
1024
)
// Add a bit more to test the splicing at the end.
content
:=
make
([]
byte
,
1024
*
1024
+
43
)
for
i
:=
range
content
{
content
[
i
]
=
byte
(
i
)
}
...
...
fuse/mountstate.go
View file @
bf30f7b8
...
...
@@ -3,6 +3,7 @@ package fuse
import
(
"fmt"
"log"
"io"
"os"
"strings"
"sync"
...
...
@@ -364,6 +365,7 @@ func (ms *MountState) write(req *request) Status {
if
err
:=
ms
.
TrySplice
(
header
,
req
);
err
==
nil
{
return
OK
}
else
{
log
.
Println
(
"Splice error"
,
err
)
buf
:=
ms
.
AllocOut
(
req
,
uint32
(
req
.
flatData
.
FdSize
))
req
.
flatData
.
Read
(
buf
)
header
=
req
.
serializeHeader
()
...
...
@@ -391,19 +393,39 @@ func (ms *MountState) TrySplice(header []byte, req *request) error {
return
err
}
n
,
err
:=
finalSplice
.
LoadFromAt
(
req
.
flatData
.
Fd
,
req
.
flatData
.
FdSize
,
req
.
flatData
.
FdOff
)
var
n
int
if
req
.
flatData
.
FdOff
<
0
{
n
,
err
=
finalSplice
.
LoadFrom
(
req
.
flatData
.
Fd
,
req
.
flatData
.
FdSize
)
}
else
{
n
,
err
=
finalSplice
.
LoadFromAt
(
req
.
flatData
.
Fd
,
req
.
flatData
.
FdSize
,
req
.
flatData
.
FdOff
)
}
if
err
==
io
.
EOF
||
(
err
==
nil
&&
n
<
req
.
flatData
.
FdSize
&&
n
>
0
)
{
discard
:=
make
([]
byte
,
len
(
header
))
_
,
err
=
finalSplice
.
Read
(
discard
)
if
err
!=
nil
{
return
err
}
// TODO - fix debug output.
req
.
flatData
.
FdSize
=
n
req
.
flatData
.
Fd
=
finalSplice
.
ReadFd
()
req
.
flatData
.
FdOff
=
-
1
header
=
req
.
serializeHeader
()
return
ms
.
TrySplice
(
header
,
req
)
}
if
err
!=
nil
{
// TODO - handle EOF.
// TODO - extract the data from splice.
return
err
}
if
n
!=
req
.
flatData
.
FdSize
{
return
fmt
.
Errorf
(
"
Size mismatch %d %d"
,
n
,
req
.
flatData
.
FdSize
)
return
fmt
.
Errorf
(
"
splice: wrote %d, want %d"
,
n
,
req
.
flatData
.
FdSize
)
}
_
,
err
=
finalSplice
.
WriteTo
(
ms
.
mountFile
.
Fd
(),
total
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"
Splice write
%v"
,
err
)
return
fmt
.
Errorf
(
"
splice write:
%v"
,
err
)
}
return
nil
}
...
...
fuse/read.go
View file @
bf30f7b8
...
...
@@ -12,6 +12,8 @@ type ReadResult struct {
// If Data is nil and Status OK, splice from the following
// file.
Fd
uintptr
// Offset within Fd, or -1 to use current offset.
FdOff
int64
FdSize
int
}
...
...
splice/pair.go
View file @
bf30f7b8
...
...
@@ -52,6 +52,14 @@ func (p *Pair) Read(d []byte) (n int, err error) {
return
p
.
r
.
Read
(
d
)
}
func
(
p
*
Pair
)
ReadFd
()
uintptr
{
return
p
.
r
.
Fd
()
}
func
(
p
*
Pair
)
WriteFd
()
uintptr
{
return
p
.
w
.
Fd
()
}
func
(
p
*
Pair
)
Write
(
d
[]
byte
)
(
n
int
,
err
error
)
{
return
p
.
w
.
Write
(
d
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment