Skip to content
Snippets Groups Projects
Verified Commit ebe1ed15 authored by Tom Almeida's avatar Tom Almeida
Browse files

Fix fgets

parent bf2973e8
No related branches found
No related tags found
1 merge request!136Fixing some things in stdio
...@@ -165,8 +165,12 @@ impl FILE { ...@@ -165,8 +165,12 @@ impl FILE {
return count as usize; return count as usize;
} }
// Adjust pointers // Adjust pointers
self.read = Some((self.unget + 1, self.unget + (count as usize))); if buf.len() > 0 {
buf[buf.len() - 1] = file_buf[0]; self.read = Some((self.unget + 1, self.unget + (count as usize)));
buf[buf.len() - 1] = file_buf[0];
} else {
self.read = Some((self.unget, self.unget + (count as usize)));
}
buf.len() buf.len()
} }
pub fn seek(&self, off: off_t, whence: c_int) -> off_t { pub fn seek(&self, off: off_t, whence: c_int) -> off_t {
...@@ -328,6 +332,8 @@ pub extern "C" fn fgets(s: *mut c_char, n: c_int, stream: &mut FILE) -> *mut c_c ...@@ -328,6 +332,8 @@ pub extern "C" fn fgets(s: *mut c_char, n: c_int, stream: &mut FILE) -> *mut c_c
flockfile(stream); flockfile(stream);
let st = unsafe { slice::from_raw_parts_mut(s, n as usize) }; let st = unsafe { slice::from_raw_parts_mut(s, n as usize) };
let mut len = n;
// We can only fit one or less chars in // We can only fit one or less chars in
if n <= 1 { if n <= 1 {
funlockfile(stream); funlockfile(stream);
...@@ -347,38 +353,30 @@ pub extern "C" fn fgets(s: *mut c_char, n: c_int, stream: &mut FILE) -> *mut c_c ...@@ -347,38 +353,30 @@ pub extern "C" fn fgets(s: *mut c_char, n: c_int, stream: &mut FILE) -> *mut c_c
} }
} }
let mut diff = 0; // TODO: Look at this later to determine correctness and efficiency
if let Some((rpos, rend)) = stream.read { 'outer: while stream.read(&mut []) == 0 && stream.flags & F_ERR == 0 {
for _ in (0..(n-1) as usize).take_while(|x| rpos + x < rend) { if let Some((rpos, rend)) = stream.read {
st[diff] = stream.buf[rpos + diff] as i8; let mut idiff = 0usize;
diff += 1; for _ in (0..(len-1) as usize).take_while(|x| rpos + x < rend) {
if st[diff-1] == b'\n' as i8 || st[diff-1] == stream.buf_char { let pos = (n - len) as usize;
break; st[pos] = stream.buf[rpos + idiff] as i8;
} idiff += 1;
} len -= 1;
stream.read = Some((rpos+diff, rend)); if st[pos] == b'\n' as i8 || st[pos] == stream.buf_char {
for i in diff..(n-1) as usize { break 'outer;
let mut c = [0u8];
let d = stream.read(&mut c);
if d != 1 {
if diff == 0 {
return ptr::null_mut();
} else {
break;
} }
} }
if c[0] as i8 == -1 { stream.read = Some((rpos+idiff, rend));
break; if len <= 1 {
}
st[i] = c[0] as i8;
diff += 1;
if c[0] == b'\n' || c[0] as i8 == stream.buf_char {
break; break;
} }
} }
// We can read, there's been no errors. We should have stream.read setbuf
// -- Tommoa (3/7/2018)
unreachable!()
} }
st[diff] = 0; st[(n - len) as usize] = 0;
funlockfile(stream); funlockfile(stream);
s s
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment