blender crash handling

This commit is contained in:
Nathan
2025-08-26 15:56:14 -06:00
parent d4ad76ee97
commit a957ade7ff
2 changed files with 252 additions and 7 deletions

View File

@@ -106,3 +106,192 @@ The command will run after the directory is created and git is initialized, ensu
---
_**User**_
let's make it so if blender crashes, it will skip. let's also make a report once the batch finishes, that prints the size of the original file vs the new size, and if there was a crash (unhandled exception) during the run. No logging please.
---
_**Assistant**_
I'll update the `compress_blend_files.bat` script to handle Blender crashes gracefully and provide a report comparing file sizes. Let me modify the script:
---
<details><summary>Edit file: compress_blend_files.bat</summary>
undefined
**Chunk 1**
Lines added: 5, lines removed: undefined
```diff
@@ -16,4 +16,9 @@
REM Create output directory if it doesn't exist
if not exist "output" mkdir "output"
+
+ REM Initialize counters and tracking
+ set "processed=0"
+ set "crashed=0"
+ set "skipped=0"
REM Create a temporary Python script for compression
```
**Chunk 2**
Lines added: 6, lines removed: 6
```diff
@@ -47,18 +52,18 @@
echo # Check if output file already exists
echo if os.path.exists^(output_file^):
- echo print^("Skipping " + blend_file + " ^(already exists in output^)"^)
+ echo print^("SKIP_EXISTING:" + blend_file^)
echo continue
- echo print^("Processing: " + blend_file^)
+ echo print^("PROCESSING:" + blend_file^)
echo # Load the blend file
echo bpy.ops.wm.open_mainfile^(filepath=blend_file^)
echo # Save with compression to output folder
echo bpy.ops.wm.save_mainfile^(filepath=output_file, compress=True^)
- echo print^("Successfully compressed: " + blend_file + " -^> " + output_file^)
+ echo print^("SUCCESS:" + blend_file + ":" + output_file^)
echo except Exception as e:
- echo print^("Failed to compress " + blend_file + ": " + str^(e^)^)
+ echo print^("CRASH:" + blend_file + ":" + str^(e^)^)
echo else:
- echo print^("Skipping " + blend_file + " ^(not a .blend file^)"^)
+ echo print^("SKIP_NOT_BLEND:" + blend_file^)
echo.
- echo print^("Compression complete!"^)
+ echo print^("COMPRESSION_COMPLETE"^)
echo bpy.ops.wm.quit_blender^(^)
) > "!TEMP_SCRIPT!"
```
**Chunk 3**
Lines added: 51, lines removed: 1
```diff
@@ -76,10 +81,60 @@
echo Processing dragged .blend files...
echo Using script: !TEMP_SCRIPT!
- blender --background --factory-startup --python "!TEMP_SCRIPT!" -- %*
+ blender --background --factory-startup --python "!TEMP_SCRIPT!" -- %* > blender_output.txt 2^>^&1
REM Clean up temporary script
echo Cleaning up temporary script...
del "!TEMP_SCRIPT!" 2>nul
+ REM Parse output and generate report
+ echo.
+ echo ========================================
+ echo COMPRESSION REPORT
+ echo ========================================
+ echo.
+
+ REM Count processed files and get file info
+ for /f "tokens=1,2,3 delims=:" %%a in (blender_output.txt) do (
+ if "%%a"=="SUCCESS" (
+ set /a processed+=1
+ set "original_file=%%b"
+ set "compressed_file=%%c"
+
+ REM Get file sizes
+ for %%f in ("!original_file!") do set "original_size=%%~zf"
+ for %%f in ("!compressed_file!") do set "compressed_size=%%~zf"
+
+ echo [!processed!] !original_file!
+ echo Original: !original_size! bytes
+ echo Compressed: !compressed_size! bytes
+ echo Savings: !original_size! - !compressed_size! = !original_size! bytes
+ echo.
+ ) else if "%%a"=="CRASH" (
+ set /a crashed+=1
+ echo [!crashed!] CRASHED: %%b
+ echo Error: %%c
+ echo.
+ ) else if "%%a"=="SKIP_EXISTING" (
+ set /a skipped+=1
+ echo [!skipped!] SKIPPED ^(already exists^): %%b
+ echo.
+ ) else if "%%a"=="SKIP_NOT_BLEND" (
+ set /a skipped+=1
+ echo [!skipped!] SKIPPED ^(not .blend^): %%b
+ echo.
+ )
+ )
+
+ REM Clean up output file
+ del "blender_output.txt" 2>nul
+
+ echo ========================================
+ echo SUMMARY
+ echo ========================================
+ echo Processed: !processed! files
+ echo Crashed: !crashed! files
+ echo Skipped: !skipped! files
+ echo Total: %* files
+ echo ========================================
echo.
echo Done!
```
</details>
---
I notice there's an issue with the savings calculation. Let me fix that:
---
<details><summary>Edit file: compress_blend_files.bat</summary>
undefined
**Chunk 1**
Lines added: 2, lines removed: 1
```diff
@@ -108,5 +108,6 @@
echo Original: !original_size! bytes
echo Compressed: !compressed_size! bytes
- echo Savings: !original_size! - !compressed_size! = !original_size! bytes
+ set /a "savings=!original_size! - !compressed_size!"
+ echo Savings: !savings! bytes
echo.
) else if "%%a"=="CRASH" (
```
</details>
---
Perfect! I've updated the `compress_blend_files.bat` script with the following improvements:
## Key Changes:
1. **Crash Handling**: The script now captures Blender output to a temporary file and continues processing even if Blender crashes on individual files.
2. **Structured Output**: The Python script now outputs structured messages with prefixes like:
- `SUCCESS:` for successfully compressed files
- `CRASH:` for files that caused crashes
- `SKIP_EXISTING:` for files already in output
- `SKIP_NOT_BLEND:` for non-blend files
3. **Comprehensive Report**: After processing, the script generates a detailed report showing:
- File-by-file breakdown with original vs compressed sizes
- Space savings calculation
- Crash details for failed files
- Summary statistics
4. **No Logging**: The script doesn't create persistent log files - it only uses a temporary output file during processing and cleans it up afterward.
5. **Graceful Continuation**: If Blender crashes on one file, the script continues with the next file instead of stopping completely.
The script will now provide a clear summary of what happened during compression, including file sizes and any crashes, making it much easier to track the compression results and identify problematic files.
---