ファイルを開いて内容を 1 行ずつ検索し、一致する各行に対して何かを実行する大きなコード ブロックがありました。これを、ファイルへのパスを取得して一致する行を提供する独自の関数に分解したいのですが、これを正しく分解する方法がわかりません。
これは私が近いと思うものですが、コンパイルエラーが発生します:
/// get matching lines from a path
fn matching_lines(p: PathBuf, pattern: &Regex) -> Vec<String> {
let mut buffer = String::new();
// TODO: maybe move this side effect out, hand it a
// stream of lines or otherwise opened file
let mut f = File::open(&p).unwrap();
match f.read_to_string(&mut buffer) {
Ok(yay_read) => yay_read,
Err(_) => 0,
};
let m_lines: Vec<String> = buffer.lines()
.filter(|&x| pattern.is_match(x)).collect();
return m_lines;
}
そしてコンパイラエラー:
src/main.rs:109:43: 109:52 error: the trait `core::iter::FromIterator<&str>` is not implemented for the type `collections::vec::Vec<collections::string::String>` [E0277]
src/main.rs:109 .filter(|&x| pattern.is_match(x)).collect();
^~~~~~~~~
src/main.rs:109:43: 109:52 help: run `rustc --explain E0277` to see a detailed explanation
src/main.rs:109:43: 109:52 note: a collection of type `collections::vec::Vec<collections::string::String>` cannot be built from an iterator over elements of type `&str`
src/main.rs:109 .filter(|&x| pattern.is_match(x)).collect();
^~~~~~~~~
error: aborting due to previous error
String
代わりに使用すると、&str
代わりにこのエラーが発生します。
src/main.rs:108:30: 108:36 error: `buffer` does not live long enough
src/main.rs:108 let m_lines: Vec<&str> = buffer.lines()
^~~~~~
どのような意味がありますか。行は関数の最後で範囲外になる内にとどまると思うbuffer
ので、文字列への参照のベクトルを収集してもあまり役に立ちません。
行のコレクションを返すにはどうすればよいですか?