source: trip-planner-front/node_modules/cacache/put.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.0 KB
Line 
1'use strict'
2
3const index = require('./lib/entry-index')
4const memo = require('./lib/memoization')
5const write = require('./lib/content/write')
6const Flush = require('minipass-flush')
7const { PassThrough } = require('minipass-collect')
8const Pipeline = require('minipass-pipeline')
9
10const putOpts = (opts) => ({
11 algorithms: ['sha512'],
12 ...opts,
13})
14
15module.exports = putData
16
17function putData (cache, key, data, opts = {}) {
18 const { memoize } = opts
19 opts = putOpts(opts)
20 return write(cache, data, opts).then((res) => {
21 return index
22 .insert(cache, key, res.integrity, { ...opts, size: res.size })
23 .then((entry) => {
24 if (memoize)
25 memo.put(cache, entry, data, opts)
26
27 return res.integrity
28 })
29 })
30}
31
32module.exports.stream = putStream
33
34function putStream (cache, key, opts = {}) {
35 const { memoize } = opts
36 opts = putOpts(opts)
37 let integrity
38 let size
39
40 let memoData
41 const pipeline = new Pipeline()
42 // first item in the pipeline is the memoizer, because we need
43 // that to end first and get the collected data.
44 if (memoize) {
45 const memoizer = new PassThrough().on('collect', data => {
46 memoData = data
47 })
48 pipeline.push(memoizer)
49 }
50
51 // contentStream is a write-only, not a passthrough
52 // no data comes out of it.
53 const contentStream = write.stream(cache, opts)
54 .on('integrity', (int) => {
55 integrity = int
56 })
57 .on('size', (s) => {
58 size = s
59 })
60
61 pipeline.push(contentStream)
62
63 // last but not least, we write the index and emit hash and size,
64 // and memoize if we're doing that
65 pipeline.push(new Flush({
66 flush () {
67 return index
68 .insert(cache, key, integrity, { ...opts, size })
69 .then((entry) => {
70 if (memoize && memoData)
71 memo.put(cache, entry, memoData, opts)
72
73 if (integrity)
74 pipeline.emit('integrity', integrity)
75
76 if (size)
77 pipeline.emit('size', size)
78 })
79 },
80 }))
81
82 return pipeline
83}
Note: See TracBrowser for help on using the repository browser.