|
| 1 | +use crate::filesystem::kernfs::callback::{KernCallbackData, KernFSCallback}; |
| 2 | +use crate::filesystem::vfs::PollStatus; |
| 3 | +use crate::libs::spinlock::SpinLock; |
| 4 | +use alloc::string::String; |
| 5 | +use alloc::vec::Vec; |
| 6 | +use core::fmt::Debug; |
| 7 | +use system_error::SystemError; |
| 8 | + |
| 9 | +static mut TRACE_PIPE: Option<TracePipe> = None; |
| 10 | + |
| 11 | +pub const TRACE_PIPE_MAX_RECORD: usize = 4096; |
| 12 | + |
| 13 | +pub fn init_trace_pipe() { |
| 14 | + unsafe { |
| 15 | + TRACE_PIPE = Some(TracePipe::new(TRACE_PIPE_MAX_RECORD)); |
| 16 | + } |
| 17 | +} |
| 18 | + |
| 19 | +pub fn trace_pipe() -> &'static TracePipe { |
| 20 | + unsafe { TRACE_PIPE.as_ref().unwrap() } |
| 21 | +} |
| 22 | + |
| 23 | +/// Push a record to trace pipe |
| 24 | +pub fn trace_pipe_push_record(record: String) { |
| 25 | + trace_pipe().push_record(record); |
| 26 | +} |
| 27 | + |
| 28 | +pub struct TracePipe { |
| 29 | + buf: SpinLock<TracePipeBuf>, |
| 30 | +} |
| 31 | + |
| 32 | +struct TracePipeBuf { |
| 33 | + size: usize, |
| 34 | + max_record: usize, |
| 35 | + buf: Vec<String>, |
| 36 | +} |
| 37 | + |
| 38 | +impl TracePipeBuf { |
| 39 | + pub const fn new(max_record: usize) -> Self { |
| 40 | + Self { |
| 41 | + max_record, |
| 42 | + size: 0, |
| 43 | + buf: Vec::new(), |
| 44 | + } |
| 45 | + } |
| 46 | + |
| 47 | + pub fn push_str(&mut self, record: String) { |
| 48 | + let record_size = record.len(); |
| 49 | + if self.size + record_size > self.max_record { |
| 50 | + let mut i = 0; |
| 51 | + while i < record_size { |
| 52 | + let t = self.buf.pop().unwrap(); |
| 53 | + self.size -= t.len(); |
| 54 | + i += t.len(); |
| 55 | + } |
| 56 | + } |
| 57 | + self.buf.push(record); |
| 58 | + self.size += record_size; |
| 59 | + } |
| 60 | + |
| 61 | + pub fn read_at(&self, buf: &mut [u8], offset: usize) -> Result<usize, SystemError> { |
| 62 | + if offset == self.size { |
| 63 | + return Ok(0); |
| 64 | + } |
| 65 | + if buf.len() < self.size { |
| 66 | + return Err(SystemError::EINVAL); |
| 67 | + } |
| 68 | + let mut count = 0; |
| 69 | + for line in self.buf.iter() { |
| 70 | + let line = line.as_bytes(); |
| 71 | + buf[count..count + line.len()].copy_from_slice(line); |
| 72 | + count += line.len(); |
| 73 | + } |
| 74 | + Ok(count) |
| 75 | + } |
| 76 | +} |
| 77 | + |
| 78 | +impl TracePipe { |
| 79 | + pub const fn new(max_record: usize) -> Self { |
| 80 | + Self { |
| 81 | + buf: SpinLock::new(TracePipeBuf::new(max_record)), |
| 82 | + } |
| 83 | + } |
| 84 | + pub fn push_record(&self, record: String) { |
| 85 | + self.buf.lock().push_str(record); |
| 86 | + } |
| 87 | + |
| 88 | + pub fn read_at(&self, buf: &mut [u8], offset: usize) -> Result<usize, SystemError> { |
| 89 | + self.buf.lock().read_at(buf, offset) |
| 90 | + } |
| 91 | +} |
| 92 | + |
| 93 | +#[derive(Debug)] |
| 94 | +pub struct TracePipeCallBack; |
| 95 | + |
| 96 | +impl KernFSCallback for TracePipeCallBack { |
| 97 | + fn open(&self, _data: KernCallbackData) -> Result<(), SystemError> { |
| 98 | + Ok(()) |
| 99 | + } |
| 100 | + |
| 101 | + fn read( |
| 102 | + &self, |
| 103 | + _data: KernCallbackData, |
| 104 | + buf: &mut [u8], |
| 105 | + offset: usize, |
| 106 | + ) -> Result<usize, SystemError> { |
| 107 | + let trace_pipe = trace_pipe(); |
| 108 | + trace_pipe.read_at(buf, offset) |
| 109 | + } |
| 110 | + |
| 111 | + fn write( |
| 112 | + &self, |
| 113 | + _data: KernCallbackData, |
| 114 | + _buf: &[u8], |
| 115 | + _offset: usize, |
| 116 | + ) -> Result<usize, SystemError> { |
| 117 | + Err(SystemError::EPERM) |
| 118 | + } |
| 119 | + |
| 120 | + fn poll(&self, _data: KernCallbackData) -> Result<PollStatus, SystemError> { |
| 121 | + Ok(PollStatus::READ) |
| 122 | + } |
| 123 | +} |
0 commit comments