Skip to main content

ScriptParser

Struct ScriptParser 

Source
pub struct ScriptParser {
    pub parser_name: String,
    pub file_filter: Option<GlobSet>,
    pub command: String,
    pub timeout_ms: u64,
    pub scope_dir: PathBuf,
    pub options: Option<Value>,
}
Expand description

Script-based parser. Runs an external command that receives a JSON options envelope on line 1, then file paths (one per line) on stdin, and emits NDJSON links on stdout.

Fields§

§parser_name: String§file_filter: Option<GlobSet>

File routing filter. None = receives all File nodes.

§command: String§timeout_ms: u64§scope_dir: PathBuf§options: Option<Value>

Parser options from [parsers.<name>.options]. Sent as JSON on stdin line 1.

Trait Implementations§

Source§

impl Parser for ScriptParser

Source§

fn name(&self) -> &str

Parser name — used as provenance on edges.
Source§

fn matches(&self, path: &str) -> bool

Check if this parser should run on a given file path.
Source§

fn parse(&self, path: &str, _content: &str) -> ParseResult

Parse a file’s content and return discovered links + optional metadata.
Source§

fn parse_batch(&self, files: &[(&str, &str)]) -> HashMap<String, ParseResult>

Parse multiple files in one call. Default falls back to per-file parsing. Script parsers override this to spawn one process for all files.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.