Compare commits
5
Commits
b4bdcc160e
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7f3beebe85 | ||
|
|
1d4f64726b | ||
|
|
85f6a50f1a | ||
|
|
5e0856b5d1 | ||
|
|
9fcc9df209 |
@@ -0,0 +1,4 @@
|
|||||||
|
**/.git
|
||||||
|
**/obj
|
||||||
|
**/bin
|
||||||
|
*.md
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
name: Build PepApi image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
paths:
|
||||||
|
- "PepApi.Core/**"
|
||||||
|
- "PepLib.Core/**"
|
||||||
|
- "Dockerfile"
|
||||||
|
- ".gitea/workflows/build-pepapi.yml"
|
||||||
|
workflow_dispatch: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-push:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Log in to Gitea container registry
|
||||||
|
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.thecozycat.net -u "${{ gitea.actor }}" --password-stdin
|
||||||
|
|
||||||
|
- name: Build image
|
||||||
|
run: docker build -t git.thecozycat.net/${{ gitea.repository_owner }}/pepapi:latest -t git.thecozycat.net/${{ gitea.repository_owner }}/pepapi:${{ gitea.sha }} .
|
||||||
|
|
||||||
|
- name: Push image
|
||||||
|
run: |
|
||||||
|
docker push git.thecozycat.net/${{ gitea.repository_owner }}/pepapi:latest
|
||||||
|
docker push git.thecozycat.net/${{ gitea.repository_owner }}/pepapi:${{ gitea.sha }}
|
||||||
+19
@@ -0,0 +1,19 @@
|
|||||||
|
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
||||||
|
WORKDIR /src
|
||||||
|
|
||||||
|
COPY PepApi.Core/PepApi.Core.csproj PepApi.Core/
|
||||||
|
COPY PepLib.Core/PepLib.Core.csproj PepLib.Core/
|
||||||
|
RUN dotnet restore PepApi.Core/PepApi.Core.csproj
|
||||||
|
|
||||||
|
COPY PepApi.Core/ PepApi.Core/
|
||||||
|
COPY PepLib.Core/ PepLib.Core/
|
||||||
|
|
||||||
|
RUN dotnet publish PepApi.Core/PepApi.Core.csproj -c Release -o /app/publish
|
||||||
|
|
||||||
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=build /app/publish .
|
||||||
|
|
||||||
|
ENV ASPNETCORE_URLS=http://+:8085
|
||||||
|
|
||||||
|
ENTRYPOINT ["dotnet", "PepApi.Core.dll"]
|
||||||
@@ -4,4 +4,5 @@ public class PepSettings
|
|||||||
{
|
{
|
||||||
public string NestDirectory { get; set; } = string.Empty;
|
public string NestDirectory { get; set; } = string.Empty;
|
||||||
public string MaterialsFile { get; set; } = string.Empty;
|
public string MaterialsFile { get; set; } = string.Empty;
|
||||||
|
public string DrawingsDirectory { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.Extensions.Options;
|
||||||
|
using PepApi.Core.Configuration;
|
||||||
using PepApi.Core.Models;
|
using PepApi.Core.Models;
|
||||||
using PepLib.Data;
|
using PepLib.Data;
|
||||||
using PepLib.IO;
|
using PepLib.IO;
|
||||||
@@ -11,10 +13,12 @@ namespace PepApi.Core.Controllers;
|
|||||||
public class DrawingsController : ControllerBase
|
public class DrawingsController : ControllerBase
|
||||||
{
|
{
|
||||||
private readonly PepDB _db;
|
private readonly PepDB _db;
|
||||||
|
private readonly PepSettings _settings;
|
||||||
|
|
||||||
public DrawingsController(PepDB db)
|
public DrawingsController(PepDB db, IOptions<PepSettings> settings)
|
||||||
{
|
{
|
||||||
_db = db;
|
_db = db;
|
||||||
|
_settings = settings.Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -81,7 +85,7 @@ public class DrawingsController : ControllerBase
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get a drawing by exact name.
|
/// Get a drawing by exact name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[HttpGet("name/{name}")]
|
[HttpGet("by-name/{name}")]
|
||||||
public async Task<ActionResult<DrawingDetails>> GetDrawingByName(string name)
|
public async Task<ActionResult<DrawingDetails>> GetDrawingByName(string name)
|
||||||
{
|
{
|
||||||
var drawing = await _db.Drawings
|
var drawing = await _db.Drawings
|
||||||
@@ -161,10 +165,13 @@ public class DrawingsController : ControllerBase
|
|||||||
if (drawing == null)
|
if (drawing == null)
|
||||||
return NotFound(new { message = "Drawing not found in database" });
|
return NotFound(new { message = "Drawing not found in database" });
|
||||||
|
|
||||||
var filePath = drawing.Path + drawing.File;
|
if (string.IsNullOrEmpty(_settings.DrawingsDirectory))
|
||||||
|
return StatusCode(503, new { message = "DrawingsDirectory is not configured" });
|
||||||
|
|
||||||
|
var filePath = Path.Combine(_settings.DrawingsDirectory, drawing.File);
|
||||||
|
|
||||||
if (!System.IO.File.Exists(filePath))
|
if (!System.IO.File.Exists(filePath))
|
||||||
return NotFound(new { message = "Drawing file not found on disk" });
|
return NotFound(new { message = $"Drawing file not found: {drawing.File}" });
|
||||||
|
|
||||||
PepLib.Models.Drawing pep;
|
PepLib.Models.Drawing pep;
|
||||||
try
|
try
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ public class NestsController : ControllerBase
|
|||||||
return File(bytes, mimeType, fileName);
|
return File(bytes, mimeType, fileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("{nestName}/download")]
|
[HttpGet("{nestName:regex(^(?!\\d{{4}}$).+)}/download")]
|
||||||
public async Task<IActionResult> DownloadFile(string nestName)
|
public async Task<IActionResult> DownloadFile(string nestName)
|
||||||
{
|
{
|
||||||
var filePath = await GetNestPathAsync(nestName);
|
var filePath = await GetNestPathAsync(nestName);
|
||||||
@@ -131,7 +131,7 @@ public class NestsController : ControllerBase
|
|||||||
return Ok(combined);
|
return Ok(combined);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("{nestName}/plates")]
|
[HttpGet("{nestName:regex(^(?!\\d{{4}}$).+)}/plates")]
|
||||||
public async Task<ActionResult<List<Plate>>> GetPlates(string nestName)
|
public async Task<ActionResult<List<Plate>>> GetPlates(string nestName)
|
||||||
{
|
{
|
||||||
var nestFile = await GetNestPathAsync(nestName);
|
var nestFile = await GetNestPathAsync(nestName);
|
||||||
@@ -346,13 +346,22 @@ public class NestsController : ControllerBase
|
|||||||
var pepPath = Path.Combine(_nestDirectory, nestName + ".pep");
|
var pepPath = Path.Combine(_nestDirectory, nestName + ".pep");
|
||||||
if (System.IO.File.Exists(pepPath))
|
if (System.IO.File.Exists(pepPath))
|
||||||
return pepPath;
|
return pepPath;
|
||||||
|
|
||||||
|
var pepMatch = FindFileByPrefix(_nestDirectory, nestName, ".pep");
|
||||||
|
if (pepMatch != null)
|
||||||
|
return pepMatch;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Older nests use .zip in year subdirectory
|
// Older nests use .zip in year subdirectory
|
||||||
var zipPath = Path.Combine(_nestDirectory, year.Value.ToString(), nestName + ".zip");
|
var yearDir = Path.Combine(_nestDirectory, year.Value.ToString());
|
||||||
|
var zipPath = Path.Combine(yearDir, nestName + ".zip");
|
||||||
if (System.IO.File.Exists(zipPath))
|
if (System.IO.File.Exists(zipPath))
|
||||||
return zipPath;
|
return zipPath;
|
||||||
|
|
||||||
|
var zipMatch = FindFileByPrefix(yearDir, nestName, ".zip");
|
||||||
|
if (zipMatch != null)
|
||||||
|
return zipMatch;
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -361,33 +370,51 @@ public class NestsController : ControllerBase
|
|||||||
if (System.IO.File.Exists(flatPepPath))
|
if (System.IO.File.Exists(flatPepPath))
|
||||||
return flatPepPath;
|
return flatPepPath;
|
||||||
|
|
||||||
|
var flatPepMatch = FindFileByPrefix(_nestDirectory, nestName, ".pep");
|
||||||
|
if (flatPepMatch != null)
|
||||||
|
return flatPepMatch;
|
||||||
|
|
||||||
// Fall back to year-based directory lookup for older nests
|
// Fall back to year-based directory lookup for older nests
|
||||||
|
var upperName = nestName.ToUpper();
|
||||||
var nestHeader = await _db.NestHeaders
|
var nestHeader = await _db.NestHeaders
|
||||||
.Where(n => n.NestName.ToUpper() == nestName.ToUpper() && n.DateProgrammed != null)
|
.Where(n => (n.NestName.ToUpper() == upperName || n.NestName.ToUpper().StartsWith(upperName + "-"))
|
||||||
|
&& n.DateProgrammed != null)
|
||||||
.OrderByDescending(n => n.DateProgrammed)
|
.OrderByDescending(n => n.DateProgrammed)
|
||||||
.FirstOrDefaultAsync();
|
.FirstOrDefaultAsync();
|
||||||
|
|
||||||
if (nestHeader == null)
|
if (nestHeader == null)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
var fullName = nestHeader.NestName;
|
||||||
var dbYear = nestHeader.DateProgrammed!.Value.Year;
|
var dbYear = nestHeader.DateProgrammed!.Value.Year;
|
||||||
|
|
||||||
// Older nests used .zip extension
|
// Older nests used .zip extension
|
||||||
var yearZipPath = Path.Combine(_nestDirectory, dbYear.ToString(), nestName + ".zip");
|
var yearZipPath = Path.Combine(_nestDirectory, dbYear.ToString(), fullName + ".zip");
|
||||||
if (System.IO.File.Exists(yearZipPath))
|
if (System.IO.File.Exists(yearZipPath))
|
||||||
return yearZipPath;
|
return yearZipPath;
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static string? FindFileByPrefix(string directory, string prefix, string extension)
|
||||||
|
{
|
||||||
|
if (!Directory.Exists(directory))
|
||||||
|
return null;
|
||||||
|
|
||||||
|
var pattern = prefix + "-*" + extension;
|
||||||
|
var matches = Directory.GetFiles(directory, pattern);
|
||||||
|
return matches.Length > 0 ? matches.Order().First() : null;
|
||||||
|
}
|
||||||
|
|
||||||
private async Task<NestDetails> GetNestDetailsAsync(string nestFilePath)
|
private async Task<NestDetails> GetNestDetailsAsync(string nestFilePath)
|
||||||
{
|
{
|
||||||
var nest = Nest.Load(nestFilePath);
|
var nest = Nest.Load(nestFilePath);
|
||||||
var dir = Path.GetDirectoryName(nestFilePath) + "\\";
|
|
||||||
var name = Path.GetFileNameWithoutExtension(nestFilePath).ToUpper();
|
var name = Path.GetFileNameWithoutExtension(nestFilePath).ToUpper();
|
||||||
|
|
||||||
var info = await _db.NestHeaders
|
var info = await _db.NestHeaders
|
||||||
.FirstOrDefaultAsync(n => n.NestName.ToUpper() == name && dir == n.Path);
|
.Where(n => n.NestName.ToUpper() == name)
|
||||||
|
.OrderByDescending(n => n.DateProgrammed)
|
||||||
|
.FirstOrDefaultAsync();
|
||||||
|
|
||||||
if (info == null)
|
if (info == null)
|
||||||
throw new Exception("Nest header not found in database");
|
throw new Exception("Nest header not found in database");
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ namespace PepApi.Core.Models
|
|||||||
nests = nests.Where(n => n.DateCreated <= this.EndDate);
|
nests = nests.Where(n => n.DateCreated <= this.EndDate);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.Status != null)
|
if (this.Status != null && !this.Status.Equals("All", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
var x = this.Status.ToUpper();
|
var x = this.Status.ToUpper();
|
||||||
nests = nests.Where(n => n.Status.ToUpper() == x);
|
nests = nests.Where(n => n.Status.ToUpper() == x);
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
using PepLib.IO;
|
||||||
|
using Xunit;
|
||||||
|
|
||||||
|
namespace PepLib.Core.Tests.IO;
|
||||||
|
|
||||||
|
public class NestReaderTests
|
||||||
|
{
|
||||||
|
[Fact]
|
||||||
|
public void Read_ReadOnlyFile_DoesNotRequestWriteAccess()
|
||||||
|
{
|
||||||
|
// Arrange: a file on a read-only mount denies write-access opens (EROFS on Linux,
|
||||||
|
// UnauthorizedAccessException on Windows when the read-only attribute is set).
|
||||||
|
// NestReader only ever reads nest files, so it must never request FileAccess.Write.
|
||||||
|
var path = Path.GetTempFileName();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
File.SetAttributes(path, FileAttributes.ReadOnly);
|
||||||
|
|
||||||
|
var reader = new NestReader();
|
||||||
|
|
||||||
|
// Act / Assert: opening must succeed (i.e. not throw because of the read-only
|
||||||
|
// attribute). Parsing the empty/invalid content is expected to fail separately.
|
||||||
|
var ex = Record.Exception(() => reader.Read(path));
|
||||||
|
|
||||||
|
Assert.IsNotType<UnauthorizedAccessException>(ex);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
File.SetAttributes(path, FileAttributes.Normal);
|
||||||
|
File.Delete(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
using ACadSharp;
|
using ACadSharp;
|
||||||
using ACadSharp.IO;
|
using ACadSharp.IO;
|
||||||
using ACadSharp.Tables;
|
using ACadSharp.Tables;
|
||||||
using CSMath;
|
using CSMath;
|
||||||
@@ -17,76 +17,29 @@ public static class DrawingDxfExporter
|
|||||||
public static Stream Export(Drawing drawing)
|
public static Stream Export(Drawing drawing)
|
||||||
{
|
{
|
||||||
var doc = new CadDocument();
|
var doc = new CadDocument();
|
||||||
|
doc.Header.Version = ACadVersion.AC1018;
|
||||||
|
|
||||||
|
// Collect loop IDs that are called as subprograms so we skip drawing them as top-level
|
||||||
|
var subprogramIds = new HashSet<int>();
|
||||||
|
foreach (var loop in drawing.Loops)
|
||||||
|
{
|
||||||
|
foreach (var code in loop)
|
||||||
|
{
|
||||||
|
if (code.CodeType() == CodeType.SubProgramCall)
|
||||||
|
subprogramIds.Add(((SubProgramCall)code).LoopId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
foreach (var loop in drawing.Loops)
|
foreach (var loop in drawing.Loops)
|
||||||
{
|
{
|
||||||
|
var loopNumber = GetLoopNumber(loop.Name);
|
||||||
|
if (subprogramIds.Contains(loopNumber))
|
||||||
|
continue; // drawn inline at SubProgramCall positions
|
||||||
|
|
||||||
var layer = new Layer(loop.Name);
|
var layer = new Layer(loop.Name);
|
||||||
doc.Layers.Add(layer);
|
doc.Layers.Add(layer);
|
||||||
|
|
||||||
var pos = new Vector();
|
DrawLoop(doc, drawing, loop, layer, new Vector());
|
||||||
|
|
||||||
foreach (var code in loop)
|
|
||||||
{
|
|
||||||
switch (code.CodeType())
|
|
||||||
{
|
|
||||||
case CodeType.RapidMove:
|
|
||||||
pos = Advance(pos, ((RapidMove)code).EndPoint, loop.Mode);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case CodeType.LinearMove:
|
|
||||||
var lm = (LinearMove)code;
|
|
||||||
var lineEnd = Advance(pos, lm.EndPoint, loop.Mode);
|
|
||||||
doc.Entities.Add(new AcadLine
|
|
||||||
{
|
|
||||||
StartPoint = ToXYZ(pos),
|
|
||||||
EndPoint = ToXYZ(lineEnd),
|
|
||||||
Layer = layer
|
|
||||||
});
|
|
||||||
pos = lineEnd;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case CodeType.CircularMove:
|
|
||||||
var cm = (CircularMove)code;
|
|
||||||
var arcEnd = Advance(pos, cm.EndPoint, loop.Mode);
|
|
||||||
var arcCenter = Advance(pos, cm.CenterPoint, loop.Mode);
|
|
||||||
|
|
||||||
var dx = pos.X - arcCenter.X;
|
|
||||||
var dy = pos.Y - arcCenter.Y;
|
|
||||||
var radius = Math.Sqrt(dx * dx + dy * dy);
|
|
||||||
|
|
||||||
var startAngle = Math.Atan2(pos.Y - arcCenter.Y, pos.X - arcCenter.X);
|
|
||||||
var endAngle = Math.Atan2(arcEnd.Y - arcCenter.Y, arcEnd.X - arcCenter.X);
|
|
||||||
|
|
||||||
if (cm.Rotation == RotationType.CW)
|
|
||||||
{
|
|
||||||
(startAngle, endAngle) = (endAngle, startAngle);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Math.Abs(startAngle - endAngle) < 1e-10) // full circle
|
|
||||||
{
|
|
||||||
doc.Entities.Add(new AcadCircle
|
|
||||||
{
|
|
||||||
Center = ToXYZ(arcCenter),
|
|
||||||
Radius = radius,
|
|
||||||
Layer = layer
|
|
||||||
});
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
doc.Entities.Add(new AcadArc
|
|
||||||
{
|
|
||||||
Center = ToXYZ(arcCenter),
|
|
||||||
Radius = radius,
|
|
||||||
StartAngle = startAngle * (180.0 / Math.PI),
|
|
||||||
EndAngle = endAngle * (180.0 / Math.PI),
|
|
||||||
Layer = layer
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
pos = arcEnd;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var buffer = new MemoryStream();
|
var buffer = new MemoryStream();
|
||||||
@@ -95,8 +48,97 @@ public static class DrawingDxfExporter
|
|||||||
writer.Write();
|
writer.Write();
|
||||||
}
|
}
|
||||||
|
|
||||||
var stream = new MemoryStream(buffer.ToArray());
|
return new MemoryStream(buffer.ToArray());
|
||||||
return stream;
|
}
|
||||||
|
|
||||||
|
private static Vector DrawLoop(CadDocument doc, Drawing drawing, Loop loop, Layer layer, Vector startPos)
|
||||||
|
{
|
||||||
|
var pos = startPos;
|
||||||
|
|
||||||
|
foreach (var code in loop)
|
||||||
|
{
|
||||||
|
switch (code.CodeType())
|
||||||
|
{
|
||||||
|
case CodeType.RapidMove:
|
||||||
|
pos = Advance(pos, ((RapidMove)code).EndPoint, loop.Mode);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case CodeType.LinearMove:
|
||||||
|
var lm = (LinearMove)code;
|
||||||
|
if (lm.Type == EntityType.Cut)
|
||||||
|
{
|
||||||
|
var lineEnd = Advance(pos, lm.EndPoint, loop.Mode);
|
||||||
|
doc.Entities.Add(new AcadLine
|
||||||
|
{
|
||||||
|
StartPoint = ToXYZ(pos),
|
||||||
|
EndPoint = ToXYZ(lineEnd),
|
||||||
|
Layer = layer
|
||||||
|
});
|
||||||
|
pos = lineEnd;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
pos = Advance(pos, lm.EndPoint, loop.Mode);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case CodeType.CircularMove:
|
||||||
|
var cm = (CircularMove)code;
|
||||||
|
var arcEnd = Advance(pos, cm.EndPoint, loop.Mode);
|
||||||
|
var arcCenter = Advance(pos, cm.CenterPoint, loop.Mode);
|
||||||
|
|
||||||
|
var dx = pos.X - arcCenter.X;
|
||||||
|
var dy = pos.Y - arcCenter.Y;
|
||||||
|
var radius = Math.Sqrt(dx * dx + dy * dy);
|
||||||
|
|
||||||
|
var startAngle = Math.Atan2(pos.Y - arcCenter.Y, pos.X - arcCenter.X);
|
||||||
|
var endAngle = Math.Atan2(arcEnd.Y - arcCenter.Y, arcEnd.X - arcCenter.X);
|
||||||
|
|
||||||
|
if (cm.Rotation == RotationType.CW)
|
||||||
|
(startAngle, endAngle) = (endAngle, startAngle);
|
||||||
|
|
||||||
|
if (Math.Abs(startAngle - endAngle) < 1e-10)
|
||||||
|
{
|
||||||
|
doc.Entities.Add(new AcadCircle
|
||||||
|
{
|
||||||
|
Center = ToXYZ(arcCenter),
|
||||||
|
Radius = radius,
|
||||||
|
Layer = layer
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
doc.Entities.Add(new AcadArc
|
||||||
|
{
|
||||||
|
Center = ToXYZ(arcCenter),
|
||||||
|
Radius = radius,
|
||||||
|
StartAngle = startAngle,
|
||||||
|
EndAngle = endAngle,
|
||||||
|
Layer = layer
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
pos = arcEnd;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case CodeType.SubProgramCall:
|
||||||
|
var call = (SubProgramCall)code;
|
||||||
|
var subLoop = drawing.Loops.FirstOrDefault(l => l.Name == drawing.GetLoopName(call.LoopId));
|
||||||
|
if (subLoop != null)
|
||||||
|
DrawLoop(doc, drawing, subLoop, layer, pos);
|
||||||
|
// pos unchanged — subprograms are closed shapes that return to start
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int GetLoopNumber(string loopName)
|
||||||
|
{
|
||||||
|
var idx = loopName.LastIndexOf(".loop-", StringComparison.OrdinalIgnoreCase);
|
||||||
|
if (idx < 0) return -1;
|
||||||
|
return int.TryParse(loopName.Substring(idx + 6), out var n) ? n : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Vector Advance(Vector current, Vector offset, ProgrammingMode mode) =>
|
private static Vector Advance(Vector current, Vector offset, ProgrammingMode mode) =>
|
||||||
@@ -104,4 +146,3 @@ public static class DrawingDxfExporter
|
|||||||
|
|
||||||
private static XYZ ToXYZ(Vector v) => new XYZ(v.X, v.Y, 0);
|
private static XYZ ToXYZ(Vector v) => new XYZ(v.X, v.Y, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,8 @@ namespace PepLib.IO
|
|||||||
|
|
||||||
stream.Seek(0x9, SeekOrigin.Current);
|
stream.Seek(0x9, SeekOrigin.Current);
|
||||||
|
|
||||||
Info.MaterialNumber = int.Parse(ReadString(0x40, ref stream));
|
int.TryParse(ReadString(0x40, ref stream), out var materialNumber);
|
||||||
|
Info.MaterialNumber = materialNumber;
|
||||||
Info.MaterialGrade = ReadString(0x10, ref stream);
|
Info.MaterialGrade = ReadString(0x10, ref stream);
|
||||||
Info.ProgrammedBy = ReadString(0x40, ref stream);
|
Info.ProgrammedBy = ReadString(0x40, ref stream);
|
||||||
Info.CreatedBy = ReadString(0x40, ref stream);
|
Info.CreatedBy = ReadString(0x40, ref stream);
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using PepLib.Models;
|
using PepLib.Models;
|
||||||
using System.Diagnostics;
|
|
||||||
using System.IO.Compression;
|
using System.IO.Compression;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
@@ -38,6 +37,11 @@ namespace PepLib.IO
|
|||||||
LoadInfo(memstream);
|
LoadInfo(memstream);
|
||||||
memstream.Close();
|
memstream.Close();
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
case ".loop-info":
|
||||||
|
case ".cadsnapshot":
|
||||||
|
memstream.Close();
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Regex.IsMatch(extension, "loop-\\d\\d\\d"))
|
if (Regex.IsMatch(extension, "loop-\\d\\d\\d"))
|
||||||
@@ -47,6 +51,9 @@ namespace PepLib.IO
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Drawing.Info == null)
|
||||||
|
Drawing.Info = DeriveInfoFromLoops();
|
||||||
|
|
||||||
Drawing.ResolveLoops();
|
Drawing.ResolveLoops();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,7 +69,7 @@ namespace PepLib.IO
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
stream = new FileStream(nestFile, FileMode.Open);
|
stream = new FileStream(nestFile, FileMode.Open, FileAccess.Read, FileShare.Read);
|
||||||
Read(stream);
|
Read(stream);
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
@@ -74,15 +81,22 @@ namespace PepLib.IO
|
|||||||
|
|
||||||
private void LoadInfo(Stream stream)
|
private void LoadInfo(Stream stream)
|
||||||
{
|
{
|
||||||
try
|
Drawing.Info = DrawingInfo.Load(stream);
|
||||||
|
}
|
||||||
|
|
||||||
|
private DrawingInfo DeriveInfoFromLoops()
|
||||||
|
{
|
||||||
|
var info = new DrawingInfo();
|
||||||
|
|
||||||
|
if (Drawing.Loops.Count > 0)
|
||||||
{
|
{
|
||||||
Drawing.Info = DrawingInfo.Load(stream);
|
// Loop names follow the pattern "{DrawingName}.loop-XXX"
|
||||||
}
|
var loopName = Drawing.Loops[0].Name;
|
||||||
catch (Exception exception)
|
var suffix = loopName.LastIndexOf(".loop-", StringComparison.OrdinalIgnoreCase);
|
||||||
{
|
info.Name = suffix >= 0 ? loopName.Substring(0, suffix) : loopName;
|
||||||
Debug.WriteLine(exception.Message);
|
|
||||||
Debug.WriteLine(exception.StackTrace);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return info;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Loop ReadLoop(string name, Stream stream)
|
private Loop ReadLoop(string name, Stream stream)
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ namespace PepLib.IO
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
stream = new FileStream(nestFile, FileMode.Open);
|
stream = new FileStream(nestFile, FileMode.Open, FileAccess.Read, FileShare.Read);
|
||||||
Read(stream);
|
Read(stream);
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ namespace PepLib.Models
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private string GetLoopName(int loopId)
|
public string GetLoopName(int loopId)
|
||||||
{
|
{
|
||||||
return string.Format("{0}.loop-{1}", Info.Name, loopId.ToString().PadLeft(3, '0'));
|
return string.Format("{0}.loop-{1}", Info.Name, loopId.ToString().PadLeft(3, '0'));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ namespace PepLib.Utilities
|
|||||||
var nameList = new List<string>();
|
var nameList = new List<string>();
|
||||||
var streamList = new List<Stream>();
|
var streamList = new List<Stream>();
|
||||||
|
|
||||||
using (var fileStream = new FileStream(file, FileMode.Open, FileAccess.Read))
|
using (var fileStream = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.Read))
|
||||||
using (var zip = new ZipArchive(fileStream, ZipArchiveMode.Read))
|
using (var zip = new ZipArchive(fileStream, ZipArchiveMode.Read))
|
||||||
{
|
{
|
||||||
foreach (var entry in zip.Entries)
|
foreach (var entry in zip.Entries)
|
||||||
@@ -52,7 +52,7 @@ namespace PepLib.Utilities
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static bool ExtractByExtension(string file, string extension, out string name, out Stream stream)
|
public static bool ExtractByExtension(string file, string extension, out string name, out Stream stream)
|
||||||
{
|
{
|
||||||
using (var fileStream = new FileStream(file, FileMode.Open, FileAccess.Read))
|
using (var fileStream = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.Read))
|
||||||
using (var zip = new ZipArchive(fileStream, ZipArchiveMode.Read))
|
using (var zip = new ZipArchive(fileStream, ZipArchiveMode.Read))
|
||||||
{
|
{
|
||||||
foreach (var entry in zip.Entries)
|
foreach (var entry in zip.Entries)
|
||||||
|
|||||||
+1
-1
@@ -533,7 +533,7 @@ public class PepTools
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await _httpClient.GetAsync($"/drawings/name/{Uri.EscapeDataString(name)}");
|
var response = await _httpClient.GetAsync($"/drawings/by-name/{Uri.EscapeDataString(name)}");
|
||||||
|
|
||||||
if (!response.IsSuccessStatusCode)
|
if (!response.IsSuccessStatusCode)
|
||||||
return $"Error: {response.StatusCode} - {await response.Content.ReadAsStringAsync()}";
|
return $"Error: {response.StatusCode} - {await response.Content.ReadAsStringAsync()}";
|
||||||
|
|||||||
Reference in New Issue
Block a user