我使用下面的代码来解析Ascii Stl文件(具有顶点坐标)和每个顶点的输出坐标。虽然Stl文件大约只有30M,但是当节点脚本运行时,系统上的控制台上还剩下大约600M内存
roofe@localhost:~/node$ ls -l DNA_mit_Anhnger.stl
-rw-r--r-- 1 roofe roofe 34964929 Sep 27 09:50 DNA_mit_Anhnger.stl
~/node$ node test.js DNA_mit_Anhnger.stl
vertex 4.893074e-001 8.750000e+000 2.695633e-001
free mem:: 557mb
vertex 5.357143e-001 8.750000e+000 3.077444e-001
free mem:: 557mb
当运行mem的脚本将耗尽时,系统会杀死脚本
Killed
roofe@localhost:~/node$
当脚本运行时,我还使用另一个终端来检查系统mem,(这里是2GB Mem Ubuntu16 Server LTS VMvare Machine)
roofe@localhost:~/node$ ps v
PID TTY STAT TIME MAJFL TRS DRS RSS %MEM COMMAND
1064 tty1 S+ 0:00 1 975 21492 4 0.0 -bash
18623 pts/1 Ss+ 0:00 715 975 21612 4 0.0 -bash
19140 pts/2 Ss 0:00 1352 975 21604 16 0.0 -bash
19482 pts/3 Ss 0:00 2594 975 21596 1124 0.1 -bash
77681 pts/2 Rl+ 0:19 120131 10894 2090529 737716 73.9 node
这是脚本,
var fs = require("fs");
var os = require('os');
var data = fs.readFileSync(process.argv[2]);
var parseAscii = function(data) {
var offset = 0;
var str = '';
while(offset = data.indexOf('vertex', ++offset)) {
str = data.substr(offset, data.indexOf('\n', offset) - offset);
console.log(str);
console.log('free mem:: ' + Math.ceil(os.freemem()/(1024*1024)) + 'mb');
}
console.log('finish');
}
parseAscii(data.toString());
Ascii Stl文件格式是这样的,
solid ascii facet normal -6.343656e-001 -5.556834e-002 7.710334e-001 outer loop vertex 4.893074e-001 8.750000e+000 2.695633e-001 vertex 5.357143e-001 8.750000e+000 3.077444e-001 vertex 5.077149e-001 8.785503e+000 2.872667e-001 endloop endfacet facet normal -7.010786e-001 -9.853018e-002 7.062440e-001 outer loop vertex 4.616061e-001 8.782279e+000 2.410454e-001 vertex 5.077149e-001 8.785503e+000 2.872667e-001 vertex 4.526215e-001 8.846208e+000 2.410454e-001 endloop endfacet
我整个下午一直在研究这个问题,但什么都没发现,这几乎让我发疯。
答案 0 :(得分:2)
你的循环在任何条件下都不会破坏。处理完最后一次vertex
时,indexOf
会返回-1
,如果它找不到任何内容。因此offset设置为-1,while循环无限期迭代。您只需要添加一个检查来比较-1
while((offset = data.indexOf('vertex', ++offset))!=-1)