Spaces:
Build error
Build error
File size: 14,330 Bytes
1dd0e3b | 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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | #ifdef _WIN32
#define NOMINMAX
#endif
#include "stl_parser.h"
#include <fstream>
#include <cstring>
#include <iostream>
#include <thread>
#include <vector>
#include <future>
#include <algorithm>
#include <chrono>
#include <sstream>
#ifdef _WIN32
#include <Windows.h>
#else
#include <sys/mman.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#endif
namespace hhb {
namespace core {
// Detect file format
bool StlParser::is_binary(const std::string& filename) {
try {
std::cout << "Checking if file is binary: " << filename << std::endl;
std::ifstream file(filename, std::ios::binary | std::ios::ate);
if (!file) {
std::cerr << "Failed to open file for binary check" << std::endl;
return false;
}
std::streampos size = file.tellg();
std::cout << "File size: " << size << " bytes" << std::endl;
file.seekg(0, std::ios::beg);
// Binary STL file minimum size: 80-byte header + 4-byte triangle count + 50 bytes per triangle
if (size < 80 + 4 + 50) {
std::cout << "File too small for binary STL" << std::endl;
return false;
}
// Read file header
char header[80];
file.read(header, 80);
if (!file) {
std::cerr << "Failed to read file header" << std::endl;
return false;
}
std::cout << "File header read successfully" << std::endl;
// Read triangle count
uint32_t triangle_count;
file.read(reinterpret_cast<char*>(&triangle_count), 4);
if (!file) {
std::cerr << "Failed to read triangle count" << std::endl;
return false;
}
std::cout << "Triangle count: " << triangle_count << std::endl;
// Verify file size matches triangle count
bool is_binary = (size == 80 + 4 + triangle_count * 50);
std::cout << "Is binary: " << (is_binary ? "yes" : "no") << std::endl;
return is_binary;
} catch (const std::exception& e) {
std::cerr << "Exception in is_binary: " << e.what() << std::endl;
return false;
}
}
// Check if file exists
bool file_exists(const std::string& filename) {
try {
std::cout << "Checking if file exists: " << filename << std::endl;
std::ifstream file(filename);
bool exists = file.good();
std::cout << "File exists: " << (exists ? "yes" : "no") << std::endl;
return exists;
} catch (const std::exception& e) {
std::cerr << "Exception in file_exists: " << e.what() << std::endl;
return false;
}
}
// Parse binary STL file
ParserResult StlParser::parse_binary(const std::string& filename, ObjectPool<Triangle>& pool) {
std::cout << "Parsing binary STL file: " << filename << std::endl;
ParserResult result;
result.success = false;
result.count = 0;
// Start timing for the entire parsing process
auto total_start = std::chrono::high_resolution_clock::now();
#ifdef _WIN32
// Windows memory mapping
std::cout << "Opening file with CreateFileA" << std::endl;
HANDLE hFile = CreateFileA(
filename.c_str(),
GENERIC_READ,
FILE_SHARE_READ,
NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL,
NULL
);
if (hFile == INVALID_HANDLE_VALUE) {
std::cerr << "Failed to open file: " << GetLastError() << std::endl;
result.error = "Failed to open file";
return result;
}
// Get file size
LARGE_INTEGER fileSize;
if (!GetFileSizeEx(hFile, &fileSize)) {
std::cerr << "Failed to get file size: " << GetLastError() << std::endl;
CloseHandle(hFile);
result.error = "Failed to get file size";
return result;
}
// Create file mapping
HANDLE hMapFile = CreateFileMappingA(
hFile,
NULL,
PAGE_READONLY,
0,
0,
NULL
);
if (hMapFile == NULL) {
std::cerr << "Failed to create file mapping: " << GetLastError() << std::endl;
CloseHandle(hFile);
result.error = "Failed to create file mapping";
return result;
}
// Map view of file
LPVOID lpMapAddress = MapViewOfFile(
hMapFile,
FILE_MAP_READ,
0,
0,
0
);
if (lpMapAddress == NULL) {
std::cerr << "Failed to map view of file: " << GetLastError() << std::endl;
CloseHandle(hMapFile);
CloseHandle(hFile);
result.error = "Failed to map view of file";
return result;
}
// Process the mapped file
const char* data = static_cast<const char*>(lpMapAddress);
size_t size = static_cast<size_t>(fileSize.QuadPart);
// Skip 80-byte header
size_t offset = 80;
// Read triangle count
uint32_t triangle_count;
memcpy(&triangle_count, data + offset, sizeof(uint32_t));
offset += sizeof(uint32_t);
std::cout << "Binary STL: Found " << triangle_count << " triangles" << std::endl;
// Process triangles in parallel
const size_t batch_size = 10000;
const size_t num_batches = (triangle_count + batch_size - 1) / batch_size;
std::vector<std::future<size_t>> futures;
for (size_t batch = 0; batch < num_batches; ++batch) {
size_t start = batch * batch_size;
size_t end = std::min(start + batch_size, static_cast<size_t>(triangle_count));
futures.push_back(std::async(std::launch::async, [&, start, end]() {
size_t local_count = 0;
for (size_t i = start; i < end; ++i) {
Triangle tri;
size_t triangle_offset = offset + i * 50;
// Read normal
memcpy(tri.normal, data + triangle_offset, 12);
// Read vertices
memcpy(tri.vertex1, data + triangle_offset + 12, 12);
memcpy(tri.vertex2, data + triangle_offset + 24, 12);
memcpy(tri.vertex3, data + triangle_offset + 36, 12);
// Read attribute count
memcpy(&tri.attribute_count, data + triangle_offset + 48, 2);
// Add to pool
Triangle* tri_ptr = pool.allocate();
new (tri_ptr) Triangle(tri);
local_count++;
}
return local_count;
}));
}
// Collect results
size_t total_triangles = 0;
for (auto& future : futures) {
total_triangles += future.get();
}
// Unmap view and close handles
UnmapViewOfFile(lpMapAddress);
CloseHandle(hMapFile);
CloseHandle(hFile);
#else
// POSIX memory mapping
int fd = open(filename.c_str(), O_RDONLY);
if (fd == -1) {
std::cerr << "Failed to open file: " << strerror(errno) << std::endl;
result.error = "Failed to open file";
return result;
}
struct stat sb;
if (fstat(fd, &sb) == -1) {
std::cerr << "Failed to get file size: " << strerror(errno) << std::endl;
close(fd);
result.error = "Failed to get file size";
return result;
}
size_t size = sb.st_size;
char* data = static_cast<char*>(mmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0));
if (data == MAP_FAILED) {
std::cerr << "Failed to map file: " << strerror(errno) << std::endl;
close(fd);
result.error = "Failed to map file";
return result;
}
// Process the mapped file
size_t offset = 80;
uint32_t triangle_count;
memcpy(&triangle_count, data + offset, sizeof(uint32_t));
offset += sizeof(uint32_t);
std::cout << "Binary STL: Found " << triangle_count << " triangles" << std::endl;
// Process triangles in parallel
const size_t batch_size = 10000;
const size_t num_batches = (triangle_count + batch_size - 1) / batch_size;
std::vector<std::future<size_t>> futures;
for (size_t batch = 0; batch < num_batches; ++batch) {
size_t start = batch * batch_size;
size_t end = std::min(start + batch_size, static_cast<size_t>(triangle_count));
futures.push_back(std::async(std::launch::async, [&, start, end]() {
size_t local_count = 0;
for (size_t i = start; i < end; ++i) {
Triangle tri;
size_t triangle_offset = offset + i * 50;
// Read normal
memcpy(tri.normal, data + triangle_offset, 12);
// Read vertices
memcpy(tri.vertex1, data + triangle_offset + 12, 12);
memcpy(tri.vertex2, data + triangle_offset + 24, 12);
memcpy(tri.vertex3, data + triangle_offset + 36, 12);
// Read attribute count
memcpy(&tri.attribute_count, data + triangle_offset + 48, 2);
// Add to pool
Triangle* tri_ptr = pool.allocate();
new (tri_ptr) Triangle(tri);
local_count++;
}
return local_count;
}));
}
// Collect results
size_t total_triangles = 0;
for (auto& future : futures) {
total_triangles += future.get();
}
// Unmap and close
munmap(data, size);
close(fd);
#endif
// End timing
auto total_end = std::chrono::high_resolution_clock::now();
std::chrono::duration<double, std::milli> total_duration = total_end - total_start;
result.success = true;
result.count = total_triangles;
std::cout << "Binary STL parsing completed, " << total_triangles << " triangles parsed" << std::endl;
std::cout << "Total parsing time: " << total_duration.count() << " ms" << std::endl;
return result;
}
// Parse ASCII STL file
ParserResult StlParser::parse_ascii(const std::string& filename, ObjectPool<Triangle>& pool) {
std::cout << "Parsing ASCII STL file: " << filename << std::endl;
ParserResult result;
result.success = false;
result.count = 0;
auto start = std::chrono::high_resolution_clock::now();
try {
std::ifstream file(filename);
if (!file) {
result.error = "Failed to open file";
return result;
}
std::string line;
size_t parsed_count = 0;
while (std::getline(file, line)) {
// Trim whitespace
line.erase(0, line.find_first_not_of(" \t\r\n"));
line.erase(line.find_last_not_of(" \t\r\n") + 1);
if (line.empty()) continue;
// Check for 'solid' keyword (start of file)
if (line.substr(0, 5) == "solid") {
// Found solid, start parsing triangles
while (std::getline(file, line)) {
// Trim whitespace
line.erase(0, line.find_first_not_of(" \t\r\n"));
line.erase(line.find_last_not_of(" \t\r\n") + 1);
if (line.empty()) continue;
// Check for 'endsolid' keyword (end of file)
if (line.substr(0, 8) == "endsolid") {
break;
}
// Check for 'facet normal' keyword (start of triangle)
if (line.substr(0, 12) == "facet normal") {
Triangle tri;
// Read normal
std::istringstream iss(line.substr(12));
iss >> tri.normal[0] >> tri.normal[1] >> tri.normal[2];
// Read 'outer loop'
std::getline(file, line);
line.erase(0, line.find_first_not_of(" \t\r\n"));
// Read three vertices
for (int i = 0; i < 3; ++i) {
std::getline(file, line);
line.erase(0, line.find_first_not_of(" \t\r\n"));
if (line.substr(0, 6) == "vertex") {
std::istringstream viss(line.substr(6));
if (i == 0) {
viss >> tri.vertex1[0] >> tri.vertex1[1] >> tri.vertex1[2];
} else if (i == 1) {
viss >> tri.vertex2[0] >> tri.vertex2[1] >> tri.vertex2[2];
} else if (i == 2) {
viss >> tri.vertex3[0] >> tri.vertex3[1] >> tri.vertex3[2];
}
}
}
// Read 'endloop' and 'endfacet'
std::getline(file, line); // endloop
std::getline(file, line); // endfacet
// Add to pool
Triangle* tri_ptr = pool.allocate();
new (tri_ptr) Triangle(tri);
parsed_count++;
}
}
}
}
result.success = true;
result.count = parsed_count;
std::cout << "ASCII STL parsing completed, " << parsed_count << " triangles parsed" << std::endl;
} catch (const std::exception& e) {
std::cerr << "Exception during ASCII parsing: " << e.what() << std::endl;
result.error = std::string("Exception during parsing: ") + e.what();
}
auto end = std::chrono::high_resolution_clock::now();
std::chrono::duration<double, std::milli> duration = end - start;
std::cout << "ASCII parsing time: " << duration.count() << " ms" << std::endl;
return result;
}
// Parse STL file (auto format detection)
ParserResult StlParser::parse(const std::string& filename, ObjectPool<Triangle>& pool) {
std::cout << "Starting to parse STL file: " << filename << std::endl;
if (!file_exists(filename)) {
ParserResult result;
result.success = false;
result.count = 0;
result.error = "File does not exist";
return result;
}
if (is_binary(filename)) {
return parse_binary(filename, pool);
} else {
return parse_ascii(filename, pool);
}
}
} // namespace core
} // namespace hhb |