Class ClsfSegmenter
- Namespace
- Hi.Numerical.ClsfParsers
- Assembly
- HiMech.dll
Segments an NX CLSF (cutter location source file) stream for the
SoftNcRunner pipeline. A record normally occupies one
physical line; a line whose text (after stripping the $$ comment)
ends with a single $ continues on the next line, so continued
lines are joined into one multi-line Sentence for
ClsfRecordSyntax to parse.
public class ClsfSegmenter : ISegmenter, IToXElement
- Inheritance
-
ClsfSegmenter
- Implements
- Inherited Members
- Extension Methods
Properties
Name
Display name of this segmenter.
public string Name { get; }
Property Value
XName
XML element name for Generators registration.
public static string XName { get; }
Property Value
Methods
GetSentences(LazyLinkedList<IndexedFileLine>, List<INcDependency>, NcDiagnosticProgress)
Segments the indexed file lines into Sentences.
public IEnumerable<Sentence> GetSentences(LazyLinkedList<IndexedFileLine> indexedFileLines, List<INcDependency> ncDependencyList, NcDiagnosticProgress ncDiagnosticProgress)
Parameters
indexedFileLinesLazyLinkedList<IndexedFileLine>The lazy linked list of indexed file lines.
ncDependencyListList<INcDependency>Dependency list of the owning runner; segmenters that consume header rows (e.g. CsvSegmenter) read host-wired dependencies from here. May be null in lightweight test fixtures — implementations that need a dependency must null-check.
ncDiagnosticProgressNcDiagnosticProgressDiagnostic progress reporter.
Returns
- IEnumerable<Sentence>
A sequence of Sentences.
Reg(XFactory)
Registers this type's deserializer with the given XFactory
(or Default when factory is
null). Idempotent.
public static void Reg(XFactory factory = null)
Parameters
factoryXFactory
ToXElement()
Get the XElement to represent the object.
public XElement ToXElement()