nushell/src/context.rs

198 lines
5.1 KiB
Rust
Raw Normal View History

2019-07-24 00:22:11 +02:00
use crate::commands::command::{CallInfo, Sink, SinkCommandArgs, UnevaluatedCallInfo};
2019-07-24 06:10:48 +02:00
use crate::parser::{hir, registry, Span};
2019-05-15 18:12:38 +02:00
use crate::prelude::*;
2019-05-16 02:21:46 +02:00
2019-07-24 00:22:11 +02:00
use derive_new::new;
2019-05-26 08:54:41 +02:00
use indexmap::IndexMap;
2019-07-24 00:22:11 +02:00
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
2019-05-15 18:12:38 +02:00
use std::error::Error;
2019-05-22 09:12:03 +02:00
use std::sync::Arc;
2019-07-24 00:22:11 +02:00
use uuid::Uuid;
2019-05-15 18:12:38 +02:00
#[derive(Clone, Debug, Serialize, Deserialize)]
pub enum SpanSource {
Url(String),
File(String),
2019-07-24 00:22:11 +02:00
Source(Text),
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct SourceMap(HashMap<Uuid, SpanSource>);
impl SourceMap {
pub fn insert(&mut self, uuid: Uuid, span_source: SpanSource) {
self.0.insert(uuid, span_source);
}
pub fn get(&self, uuid: &Uuid) -> Option<&SpanSource> {
self.0.get(uuid)
}
pub fn new() -> SourceMap {
SourceMap(HashMap::new())
}
}
2019-07-24 00:22:11 +02:00
#[derive(Clone, new)]
pub struct CommandRegistry {
#[new(value = "Arc::new(Mutex::new(IndexMap::default()))")]
registry: Arc<Mutex<IndexMap<String, Arc<dyn Command>>>>,
}
impl CommandRegistry {
crate fn empty() -> CommandRegistry {
CommandRegistry {
registry: Arc::new(Mutex::new(IndexMap::default())),
}
}
fn get_command(&self, name: &str) -> Option<Arc<dyn Command>> {
let registry = self.registry.lock().unwrap();
registry.get(name).map(|c| c.clone())
}
fn has(&self, name: &str) -> bool {
let registry = self.registry.lock().unwrap();
registry.contains_key(name)
}
fn insert(&mut self, name: impl Into<String>, command: Arc<dyn Command>) {
let mut registry = self.registry.lock().unwrap();
registry.insert(name.into(), command);
}
crate fn names(&self) -> Vec<String> {
2019-07-24 06:10:48 +02:00
let registry = self.registry.lock().unwrap();
2019-07-24 00:22:11 +02:00
registry.keys().cloned().collect()
}
}
2019-06-07 08:34:42 +02:00
#[derive(Clone)]
2019-05-15 18:12:38 +02:00
pub struct Context {
2019-07-24 00:22:11 +02:00
registry: CommandRegistry,
2019-06-07 08:34:42 +02:00
sinks: IndexMap<String, Arc<dyn Sink>>,
crate source_map: SourceMap,
2019-05-24 06:34:43 +02:00
crate host: Arc<Mutex<dyn Host + Send>>,
2019-07-16 21:10:25 +02:00
crate env: Arc<Mutex<Environment>>,
2019-05-15 18:12:38 +02:00
}
impl Context {
2019-07-24 00:22:11 +02:00
crate fn registry(&self) -> &CommandRegistry {
&self.registry
}
crate fn basic() -> Result<Context, Box<dyn Error>> {
2019-05-15 18:12:38 +02:00
Ok(Context {
2019-07-24 00:22:11 +02:00
registry: CommandRegistry::new(),
2019-06-07 08:34:42 +02:00
sinks: indexmap::IndexMap::new(),
source_map: SourceMap::new(),
host: Arc::new(Mutex::new(crate::env::host::BasicHost)),
2019-07-16 21:10:25 +02:00
env: Arc::new(Mutex::new(Environment::basic()?)),
2019-05-15 18:12:38 +02:00
})
}
2019-05-28 08:45:18 +02:00
pub fn add_commands(&mut self, commands: Vec<Arc<dyn Command>>) {
for command in commands {
2019-07-24 00:22:11 +02:00
self.registry.insert(command.name().to_string(), command);
2019-05-15 18:12:38 +02:00
}
}
2019-06-07 08:34:42 +02:00
pub fn add_sinks(&mut self, sinks: Vec<Arc<dyn Sink>>) {
for sink in sinks {
self.sinks.insert(sink.name().to_string(), sink);
}
}
pub fn add_span_source(&mut self, uuid: Uuid, span_source: SpanSource) {
self.source_map.insert(uuid, span_source);
}
2019-06-07 08:34:42 +02:00
crate fn has_sink(&self, name: &str) -> bool {
self.sinks.contains_key(name)
}
crate fn get_sink(&self, name: &str) -> Arc<dyn Sink> {
self.sinks.get(name).unwrap().clone()
}
crate fn run_sink(
&mut self,
command: Arc<dyn Sink>,
2019-06-08 00:35:07 +02:00
name_span: Option<Span>,
2019-07-24 00:22:11 +02:00
args: registry::EvaluatedArgs,
2019-07-08 18:44:53 +02:00
input: Vec<Spanned<Value>>,
2019-06-07 08:34:42 +02:00
) -> Result<(), ShellError> {
let command_args = SinkCommandArgs {
ctx: self.clone(),
call_info: CallInfo {
name_span,
source_map: self.source_map.clone(),
args,
},
2019-06-07 08:34:42 +02:00
input,
};
command.run(command_args)
}
2019-07-24 00:22:11 +02:00
pub fn clone_commands(&self) -> CommandRegistry {
self.registry.clone()
2019-05-26 08:54:41 +02:00
}
2019-05-22 09:12:03 +02:00
crate fn has_command(&self, name: &str) -> bool {
2019-07-24 00:22:11 +02:00
self.registry.has(name)
2019-05-15 18:12:38 +02:00
}
2019-05-22 09:12:03 +02:00
crate fn get_command(&self, name: &str) -> Arc<dyn Command> {
2019-07-24 00:22:11 +02:00
self.registry.get_command(name).unwrap()
2019-05-22 09:12:03 +02:00
}
2019-05-16 02:21:46 +02:00
crate fn run_command(
2019-05-22 09:12:03 +02:00
&mut self,
command: Arc<dyn Command>,
2019-06-08 00:35:07 +02:00
name_span: Option<Span>,
source_map: SourceMap,
2019-07-24 00:22:11 +02:00
args: hir::Call,
source: Text,
input: InputStream,
) -> Result<OutputStream, ShellError> {
2019-07-24 00:22:11 +02:00
let command_args = self.command_args(args, input, source, source_map, name_span);
2019-05-16 02:21:46 +02:00
2019-07-24 00:22:11 +02:00
command.run(command_args, self.registry())
2019-05-15 18:12:38 +02:00
}
2019-06-22 05:43:37 +02:00
2019-07-24 00:22:11 +02:00
fn call_info(
&self,
args: hir::Call,
source: Text,
source_map: SourceMap,
name_span: Option<Span>,
) -> UnevaluatedCallInfo {
UnevaluatedCallInfo {
args,
source,
source_map,
name_span,
}
}
fn command_args(
&self,
args: hir::Call,
input: InputStream,
source: Text,
source_map: SourceMap,
name_span: Option<Span>,
) -> CommandArgs {
CommandArgs {
host: self.host.clone(),
env: self.env.clone(),
call_info: self.call_info(args, source, source_map, name_span),
input,
}
2019-06-22 05:43:37 +02:00
}
}