-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
105 lines (91 loc) · 2.58 KB
/
index.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
"use strict";
var fs = require('fs')
var storage = require('./storage');
var path = require('path')
var program = require('commander');
var stackup = require('pcb-stackup');
var unzip = require('unzip');
// A function to list all files in a path
const listFilesInPath = (dir, filelist) => {
var files = fs.readdirSync(dir);
filelist = filelist || [];
files.forEach(function(file) {
if (fs.statSync(path.join(dir, file)).isDirectory()) {
filelist = listFilesInPath(path.join(dir, file), filelist);
}
else {
filelist.push(path.join(dir, file));
}
});
return filelist;
}
// A function to count the layers of a specific type
const countLayers = (layers, types) => {
var count = 0;
layers.forEach(layer => {
if (types.indexOf(layer.type) > -1) {
count++;
}
})
return count;
}
const main = (filename, output) => {
new Promise((resolve, reject) => {
// Get the file and extract it -- use `storage` as it returns a stream
// and it can handle both local as remote files (e.g. s3) in the future
var file = storage.open(filename)
file.pipe(
unzip.Extract({path: output})
).on('close', () => {
resolve()
});
})
.then(() => {
// Inspect the gerber files
var gerbers = listFilesInPath(output);
var layers = gerbers.map(path => {
return { gerber: fs.createReadStream(path), filename: path }
})
return new Promise((resolve, reject) => {
stackup(layers, (error, stackup) => {
if (error) {
reject(error);
}
// Board attributes
var board_width = stackup.top.width;
var board_length = stackup.top.height;
// Convert to mm
if (stackup.top.units == 'in') {
board_width = board_width * 25.4;
board_length = board_length * 25.4;
}
const board = {
'board_width': board_width.toFixed(2),
'board_length': board_length.toFixed(2),
'board_layers': countLayers(stackup.layers, ['icu', 'bcu', 'tcu'])
}
console.dir(board);
// Generate images
storage.save('pcb-top.svg', stackup.top.svg);
storage.save('pcb-bottom.svg', stackup.bottom.svg);
// Create png thumbnails (or at least a small version)
resolve();
});
});
})
.then(() => {
// Upload files
// Save entry in database
})
.catch(error => {
console.error(error);
})
}
program
.arguments('<file>')
.action(function(file) {
var filename = file;
var output = `tmp/${filename}/`
main(filename, output);
}
).parse(process.argv);