Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
crawl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ale
crawl
Commits
98e2528f
Commit
98e2528f
authored
6 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Use a buffered Writer for WARC output
parent
ee1a3d8e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
warc/warc.go
+11
-5
11 additions, 5 deletions
warc/warc.go
with
11 additions
and
5 deletions
warc/warc.go
+
11
−
5
View file @
98e2528f
...
...
@@ -3,6 +3,7 @@
package
warc
import
(
"bufio"
"fmt"
"io"
"time"
...
...
@@ -73,9 +74,10 @@ func NewHeader() Header {
// Writer can write records to a file in WARC format. It is safe
// for concurrent access, since writes are serialized internally.
type
Writer
struct
{
writer
io
.
WriteCloser
gzwriter
*
gzip
.
Writer
lockCh
chan
bool
writer
io
.
WriteCloser
bufwriter
*
bufio
.
Writer
gzwriter
*
gzip
.
Writer
lockCh
chan
bool
}
type
recordWriter
struct
{
...
...
@@ -101,7 +103,7 @@ func (w *Writer) NewRecord(hdr Header) (io.WriteCloser, error) {
w
.
gzwriter
.
Close
()
// nolint
}
var
err
error
w
.
gzwriter
,
err
=
gzip
.
NewWriterLevel
(
w
.
writer
,
gzip
.
BestCompression
)
w
.
gzwriter
,
err
=
gzip
.
NewWriterLevel
(
w
.
buf
writer
,
gzip
.
BestCompression
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -118,13 +120,17 @@ func (w *Writer) Close() error {
if
err
:=
w
.
gzwriter
.
Close
();
err
!=
nil
{
return
err
}
if
err
:=
w
.
bufwriter
.
Flush
();
err
!=
nil
{
return
err
}
return
w
.
writer
.
Close
()
}
// NewWriter initializes a new Writer and returns it.
func
NewWriter
(
w
io
.
WriteCloser
)
*
Writer
{
return
&
Writer
{
writer
:
w
,
writer
:
w
,
bufwriter
:
bufio
.
NewWriter
(
w
),
// Buffering is important here since we're using this
// channel as a semaphore.
lockCh
:
make
(
chan
bool
,
1
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment