1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
use crate::command_args::EvaluatedWholeStreamCommandArgs; use crate::maybe_text_codec::StringOrBinary; use crate::shell::Shell; use futures::Stream; use nu_stream::OutputStream; use crate::shell::shell_args::{CdArgs, CopyArgs, LsArgs, MkdirArgs, MvArgs, RemoveArgs}; use encoding_rs::Encoding; use nu_errors::ShellError; use nu_source::{Span, Tag}; use parking_lot::Mutex; use std::path::{Path, PathBuf}; use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering}; use std::sync::Arc; #[derive(Clone, Debug)] pub struct ShellManager { pub current_shell: Arc<AtomicUsize>, pub shells: Arc<Mutex<Vec<Box<dyn Shell + Send>>>>, } impl ShellManager { pub fn insert_at_current(&self, shell: Box<dyn Shell + Send>) { self.shells.lock().push(shell); self.current_shell .store(self.shells.lock().len() - 1, Ordering::SeqCst); self.set_path(self.path()); } pub fn current_shell(&self) -> usize { self.current_shell.load(Ordering::SeqCst) } pub fn remove_at_current(&self) { { let mut shells = self.shells.lock(); if shells.len() > 0 { if self.current_shell() == shells.len() - 1 { shells.pop(); let new_len = shells.len(); if new_len > 0 { self.current_shell.store(new_len - 1, Ordering::SeqCst); } else { return; } } else { shells.remove(self.current_shell()); } } } self.set_path(self.path()) } pub fn is_empty(&self) -> bool { self.shells.lock().is_empty() } pub fn path(&self) -> String { self.shells.lock()[self.current_shell()].path() } pub fn pwd(&self, args: EvaluatedWholeStreamCommandArgs) -> Result<OutputStream, ShellError> { let env = self.shells.lock(); env[self.current_shell()].pwd(args) } pub fn set_path(&self, path: String) { self.shells.lock()[self.current_shell()].set_path(path) } pub fn open( &self, full_path: &Path, name: Span, with_encoding: Option<&'static Encoding>, ) -> Result<impl Stream<Item = Result<StringOrBinary, ShellError>> + Send + 'static, ShellError> { self.shells.lock()[self.current_shell()].open(full_path, name, with_encoding) } pub fn save( &self, full_path: &Path, save_data: &[u8], name: Span, ) -> Result<OutputStream, ShellError> { self.shells.lock()[self.current_shell()].save(full_path, save_data, name) } pub fn next(&self) { { let shell_len = self.shells.lock().len(); if self.current_shell() == (shell_len - 1) { self.current_shell.store(0, Ordering::SeqCst); } else { self.current_shell .store(self.current_shell() + 1, Ordering::SeqCst); } } self.set_path(self.path()) } pub fn prev(&self) { { let shell_len = self.shells.lock().len(); if self.current_shell() == 0 { self.current_shell.store(shell_len - 1, Ordering::SeqCst); } else { self.current_shell .store(self.current_shell() - 1, Ordering::SeqCst); } } self.set_path(self.path()) } pub fn homedir(&self) -> Option<PathBuf> { let env = self.shells.lock(); env[self.current_shell()].homedir() } pub fn ls( &self, args: LsArgs, name: Tag, ctrl_c: Arc<AtomicBool>, ) -> Result<OutputStream, ShellError> { let env = self.shells.lock(); env[self.current_shell()].ls(args, name, ctrl_c) } pub fn cd(&self, args: CdArgs, name: Tag) -> Result<OutputStream, ShellError> { let env = self.shells.lock(); env[self.current_shell()].cd(args, name) } pub fn cp(&self, args: CopyArgs, name: Tag) -> Result<OutputStream, ShellError> { let shells = self.shells.lock(); let path = shells[self.current_shell()].path(); shells[self.current_shell()].cp(args, name, &path) } pub fn rm(&self, args: RemoveArgs, name: Tag) -> Result<OutputStream, ShellError> { let shells = self.shells.lock(); let path = shells[self.current_shell()].path(); shells[self.current_shell()].rm(args, name, &path) } pub fn mkdir(&self, args: MkdirArgs, name: Tag) -> Result<OutputStream, ShellError> { let shells = self.shells.lock(); let path = shells[self.current_shell()].path(); shells[self.current_shell()].mkdir(args, name, &path) } pub fn mv(&self, args: MvArgs, name: Tag) -> Result<OutputStream, ShellError> { let shells = self.shells.lock(); let path = shells[self.current_shell()].path(); shells[self.current_shell()].mv(args, name, &path) } }