swab(1): minimum viable program
This commit is contained in:
		
							parent
							
								
									90de1bf9a4
								
							
						
					
					
						commit
						3f0d95fe8f
					
				
							
								
								
									
										7
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								Makefile
									
									
									
									
									
								
							@ -101,6 +101,13 @@ strcmp: build/bin/strcmp
 | 
				
			|||||||
build/bin/strcmp: src/strcmp.c build
 | 
					build/bin/strcmp: src/strcmp.c build
 | 
				
			||||||
	$(CC) $(CFLAGS) -o $@ src/strcmp.c
 | 
						$(CC) $(CFLAGS) -o $@ src/strcmp.c
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.PHONY: swab
 | 
				
			||||||
 | 
					swab: build/bin/swab
 | 
				
			||||||
 | 
					build/bin/swab: src/swab.rs build build/o/libsysexits.rlib
 | 
				
			||||||
 | 
						$(RUSTC) $(RUSTFLAGS) \
 | 
				
			||||||
 | 
							--extern sysexits=build/o/libsysexits.rlib \
 | 
				
			||||||
 | 
							-o $@ src/swab.rs
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.PHONY: true
 | 
					.PHONY: true
 | 
				
			||||||
true: build/bin/true
 | 
					true: build/bin/true
 | 
				
			||||||
build/bin/true: src/true.c build
 | 
					build/bin/true: src/true.c build
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										47
									
								
								src/swab.rs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								src/swab.rs
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,47 @@
 | 
				
			|||||||
 | 
					use std::{
 | 
				
			||||||
 | 
						env::args,
 | 
				
			||||||
 | 
						io::{ stdin, stdout, Error, ErrorKind, Read, Write },
 | 
				
			||||||
 | 
						process::ExitCode,
 | 
				
			||||||
 | 
						vec::Vec
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern crate sysexits;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use sysexits::{ EX_OK, EX_OSERR };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fn oserr(s: &str, e: Error) -> ExitCode {
 | 
				
			||||||
 | 
						eprintln!("{}: {}", s, e);
 | 
				
			||||||
 | 
						ExitCode::from(EX_OSERR as u8)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fn main() -> ExitCode {
 | 
				
			||||||
 | 
						let argv = args().collect::<Vec<String>>();
 | 
				
			||||||
 | 
						let mut buf: Vec<u8> = Vec::new();
 | 
				
			||||||
 | 
						let mut input = stdin();
 | 
				
			||||||
 | 
						let mut output = stdout().lock();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						let wordsize: usize = 2;
 | 
				
			||||||
 | 
						let force = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						buf.resize(wordsize, 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						loop {
 | 
				
			||||||
 | 
							match input.read(&mut buf) {
 | 
				
			||||||
 | 
								Ok(0) => break ExitCode::from(EX_OK as u8),
 | 
				
			||||||
 | 
								Ok(v) if v == wordsize => {
 | 
				
			||||||
 | 
									let (left, right) = buf.split_at(v/2);
 | 
				
			||||||
 | 
									if let Err(e) = output.write(&right)
 | 
				
			||||||
 | 
											.and_then(|_| output.write(&left)) {
 | 
				
			||||||
 | 
										break oserr(&argv[0], e)
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
								Ok(v) => {
 | 
				
			||||||
 | 
									if let Err(e) = output.write(&buf[..v]) {
 | 
				
			||||||
 | 
										break oserr(&argv[0], e)
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
								Err(e) if e.kind() == ErrorKind::Interrupted && force => continue,
 | 
				
			||||||
 | 
								Err(e) => break oserr(&argv[0], e)
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user