-
Notifications
You must be signed in to change notification settings - Fork 13
/
split-file.js
224 lines (190 loc) · 5.87 KB
/
split-file.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*!
* Split File
* MIT License
* Tom Valk
*/
/**
* Require Modules
*/
var Promise = require("bluebird");
var fs = require("fs");
const { basename, resolve } = require("path");
/**
* Split File module.
*/
var SplitFile = function () {};
/**
* Split file into number of parts
* @param {string} file
* @param {number} parts
*
* @returns {Promise}
*/
SplitFile.prototype.splitFile = function (file, parts, dest) {
var self = this;
// Validate parameters.
if (parts < 1) {
return Promise.reject(new Error("Parameter 'parts' is invalid, must contain an integer value."));
}
return Promise.promisify(fs.stat)(file).then(function (stat) {
if (!stat.isFile) {
return Promise.reject(new Error("Given file is not valid"));
}
if (!stat.size) {
return Promise.reject(new Error("File is empty"));
}
var totalSize = stat.size;
var splitSize = Math.floor(totalSize / parts);
// If size of the parts is 0 then you have more parts than bytes.
if (splitSize < 1) {
return Promise.reject(new Error("Too many parts, or file too small!"));
}
// Get last split size, this is different from the others because it uses scrap value.
var lastSplitSize = splitSize + (totalSize % parts);
// Capture the partinfo in here:
var partInfo = [];
// Iterate the parts
for (var i = 0; i < parts; i++) {
partInfo[i] = {
number: i + 1,
// Set buffer read start position
start: i * splitSize,
// Set total ending position
end: i * splitSize + splitSize,
};
if (i === parts - 1) {
partInfo[i].end = i * splitSize + lastSplitSize;
}
}
return self.__splitFile(file, partInfo, dest);
});
};
/**
* Split file into multiple parts based on max part size given
* @param {string} file
* @param {string} maxSize max part size in BYTES!
* @returns {Promise}
*/
SplitFile.prototype.splitFileBySize = function (file, maxSize, dest) {
var self = this;
return Promise.promisify(fs.stat)(file).then(function (stat) {
if (!stat.isFile) {
return Promise.reject(new Error("Given file is not valid"));
}
if (!stat.size) {
return Promise.reject(new Error("File is empty"));
}
var totalSize = stat.size;
// Number of parts (exclusive last part!)
var parts = Math.ceil(totalSize / maxSize);
var splitSize = Math.round(maxSize);
// If size of the parts is 0 then you have more parts than bytes.
if (splitSize < 1) {
return Promise.reject(new Error("Too many parts, or file too small!"));
}
// Capture the partinfo in here:
var partInfo = [];
// Iterate the parts
for (var i = 0; i < parts; i++) {
partInfo[i] = {
number: i + 1,
// Set buffer read start position
start: i * splitSize,
// Set total ending position
end: i * splitSize + splitSize,
};
}
// recalculate the size of the last chunk
partInfo[partInfo.length - 1].end = totalSize;
return self.__splitFile(file, partInfo, dest);
});
};
/**
* Merge input files to output file.
* @param {string[]} inputFiles
* @param {string} outputFile
*
* @returns {Promise}
*/
SplitFile.prototype.mergeFiles = function (inputFiles, outputFile) {
// Validate parameters.
if (inputFiles.length <= 0) {
return Promise.reject(new Error("Make sure you input an array with files as first parameter!"));
}
var writer = fs.createWriteStream(outputFile, {
encoding: null,
});
return Promise.mapSeries(inputFiles, function (file) {
return new Promise(function (resolve, reject) {
var reader = fs.createReadStream(file, { encoding: null });
reader.pipe(writer, { end: false });
reader.on("error", reject);
reader.on("end", resolve);
});
}).then(function () {
writer.close();
return Promise.resolve(outputFile);
});
};
/**
* Split the file, given by partinfos and filepath
* @access private
* @param {string} file
* @param {object} partInfo
*
* @returns {Promise}
*/
SplitFile.prototype.__splitFile = function (file, partInfo, dest) {
// Now the magic. Read buffers with length..
var partFiles = [];
return Promise.mapSeries(partInfo, function (info) {
return new Promise(function (resolve, reject) {
// Open up a reader
var reader = fs.createReadStream(file, {
encoding: null,
start: info.start,
end: info.end - 1,
});
// Part name (file name of part)
// get the max number of digits to generate for part number
// ex. if original file is split into 4 files, then it will be 1
// ex. if original file is split into 14 files, then it will be 2
// etc.
var maxPaddingCount = String(partInfo.length).length;
// initial part number
// ex. '0', '00', '000', etc.
var currentPad = "";
for (var i = 0; i < maxPaddingCount; i++) {
currentPad += "0";
}
// construct part number for current file part
// <file>.sf-part01
// ...
// <file>.sf-part14
var unpaddedPartNumber = "" + info.number;
var partNumber = currentPad.substring(0, currentPad.length - unpaddedPartNumber.length) + unpaddedPartNumber;
var partName = file + ".sf-part" + partNumber;
const outputFile = (filename) => {
const writer = fs.createWriteStream(filename);
const pipe = reader.pipe(writer);
pipe.on("error", reject);
pipe.on("finish", resolve);
};
if (dest) {
const filename = basename(partName);
if (dest.charAt(dest.length - 1) !== "/") {
dest += "/";
}
outputFile(dest + filename);
partFiles.push(dest + filename);
} else {
outputFile(partName);
partFiles.push(partName);
}
// Pipe reader to writer
});
}).then(function () {
return Promise.resolve(partFiles);
});
};
module.exports = new SplitFile();