@@ -7,6 +7,7 @@ use std::process;
7
7
use std:: thread;
8
8
//use std::time as stdtime;
9
9
use std:: time:: Duration ;
10
+ use std:: time:: SystemTime ;
10
11
11
12
use kafka:: client:: { FetchOffset , GroupOffsetStorage , KafkaClient } ;
12
13
@@ -45,7 +46,7 @@ fn run(cfg: Config) -> Result<()> {
45
46
let ts = client. topics ( ) ;
46
47
let num_topics = ts. len ( ) ;
47
48
if num_topics == 0 {
48
- return Err ( "no topics available" ) ;
49
+ return Err ( Error :: from ( "no topics available" ) ) ;
49
50
}
50
51
let mut names: Vec < & str > = Vec :: with_capacity ( ts. len ( ) ) ;
51
52
names. extend ( ts. names ( ) ) ;
@@ -55,12 +56,12 @@ fn run(cfg: Config) -> Result<()> {
55
56
for name in names {
56
57
let _ = writeln ! ( buf, "topic: {}" , name) ;
57
58
}
58
- return Err ( "choose a topic" ) ;
59
+ return Err ( Error :: from ( "choose a topic" ) ) ;
59
60
}
60
61
61
62
// ~ otherwise let's loop over the topic partition offsets
62
63
let num_partitions = match client. topics ( ) . partitions ( & cfg. topic ) {
63
- None => return Err ( format ! ( "no such topic: {}" , & cfg. topic) ) ,
64
+ None => return Err ( Error :: from ( format ! ( "no such topic: {}" , & cfg. topic) ) ) ,
64
65
Some ( partitions) => partitions. len ( ) ,
65
66
} ;
66
67
let mut state = State :: new ( num_partitions, cfg. commited_not_consumed ) ;
@@ -70,7 +71,7 @@ fn run(cfg: Config) -> Result<()> {
70
71
// ~ initialize the state
71
72
let mut first_time = true ;
72
73
loop {
73
- let t = time :: Time :: now ( ) ;
74
+ let t = SystemTime :: now ( ) ;
74
75
state. update_partitions ( & mut client, & cfg. topic , & cfg. group ) ?;
75
76
if first_time {
76
77
state. curr_to_prev ( ) ;
@@ -225,14 +226,14 @@ impl<W: Write> Printer<W> {
225
226
}
226
227
}
227
228
228
- fn print_offsets ( & mut self , time : & time :: Time , partitions : & [ Partition ] ) -> Result < ( ) > {
229
+ fn print_offsets ( & mut self , time : & SystemTime , partitions : & [ Partition ] ) -> Result < ( ) > {
229
230
self . out_buf . clear ( ) ;
230
231
{
231
232
// ~ format
232
233
use std:: fmt:: Write ;
233
234
234
235
self . fmt_buf . clear ( ) ;
235
- let _ = write ! ( self . fmt_buf, "{}" , time. format ( & self . timefmt ) ) ;
236
+ let _ = write ! ( self . fmt_buf, "{}" , time. elapsed ( ) . unwrap ( ) . as_secs ( ) ) ;
236
237
let _ = write ! ( self . out_buf, "{1:<0$}" , self . time_width, self . fmt_buf) ;
237
238
if self . print_summary {
238
239
let mut prev_latest = 0 ;
@@ -323,11 +324,11 @@ impl Config {
323
324
324
325
let m = match opts. parse ( & args[ 1 ..] ) {
325
326
Ok ( m) => m,
326
- Err ( e) => return Err ( e ) ,
327
+ Err ( e) => return Err ( Error :: from ( e ) ) ,
327
328
} ;
328
329
if m. opt_present ( "help" ) {
329
330
let brief = format ! ( "{} [options]" , args[ 0 ] ) ;
330
- return Err ( opts. usage ( & brief) ) ;
331
+ return Err ( Error :: from ( opts. usage ( & brief) ) ) ;
331
332
}
332
333
let mut offset_storage = GroupOffsetStorage :: Zookeeper ;
333
334
if let Some ( s) = m. opt_str ( "storage" ) {
@@ -336,14 +337,14 @@ impl Config {
336
337
} else if s. eq_ignore_ascii_case ( "kafka" ) {
337
338
offset_storage = GroupOffsetStorage :: Kafka ;
338
339
} else {
339
- return Err ( format ! ( "unknown offset store: {}" , s) ) ;
340
+ return Err ( Error :: from ( format ! ( "unknown offset store: {}" , s) ) ) ;
340
341
}
341
342
}
342
343
let mut period = Duration :: from_secs ( 5 ) ;
343
344
if let Some ( s) = m. opt_str ( "sleep" ) {
344
345
match s. parse :: < u64 > ( ) {
345
346
Ok ( n) if n != 0 => period = Duration :: from_secs ( n) ,
346
- _ => return Err ( format ! ( "not a number greater than zero: {}" , s) ) ,
347
+ _ => return Err ( Error :: from ( format ! ( "not a number greater than zero: {}" , s) ) ) ,
347
348
}
348
349
}
349
350
Ok ( Config {
0 commit comments