/* * Copyright (c) 2020, Emanuel Sprung * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include enum class BinaryFileMode { Binary, Text, Skip, }; template void fail(StringView format, Ts... args) { fprintf(stderr, "\x1b[31m"); warnln(format, forward(args)...); fprintf(stderr, "\x1b[0m"); abort(); } int main(int argc, char** argv) { if (pledge("stdio rpath", nullptr) < 0) { perror("pledge"); return 1; } Vector files; bool recursive { false }; bool use_ere { true }; const char* pattern = nullptr; BinaryFileMode binary_mode { BinaryFileMode::Binary }; bool case_insensitive = false; Core::ArgsParser args_parser; args_parser.add_option(recursive, "Recursively scan files starting in working directory", "recursive", 'r'); args_parser.add_option(use_ere, "Extended regular expressions (default)", "extended-regexp", 'E'); args_parser.add_option(pattern, "Pattern", "regexp", 'e', "Pattern"); args_parser.add_option(case_insensitive, "Make matches case-insensitive", nullptr, 'i'); args_parser.add_option(Core::ArgsParser::Option { .requires_argument = true, .help_string = "Action to take for binary files ([binary], text, skip)", .long_name = "binary-mode", .accept_value = [&](auto* str) { if (StringView { "text" } == str) binary_mode = BinaryFileMode::Text; else if (StringView { "binary" } == str) binary_mode = BinaryFileMode::Binary; else if (StringView { "skip" } == str) binary_mode = BinaryFileMode::Skip; else return false; return true; }, }); args_parser.add_option(Core::ArgsParser::Option { .requires_argument = false, .help_string = "Treat binary files as text (same as --binary-mode text)", .long_name = "text", .short_name = 'a', .accept_value = [&](auto) { binary_mode = BinaryFileMode::Text; return true; }, }); args_parser.add_option(Core::ArgsParser::Option { .requires_argument = false, .help_string = "Ignore binary files (same as --binary-mode skip)", .long_name = nullptr, .short_name = 'I', .accept_value = [&](auto) { binary_mode = BinaryFileMode::Skip; return true; }, }); args_parser.add_positional_argument(files, "File(s) to process", "file", Core::ArgsParser::Required::No); args_parser.parse(argc, argv); if (!use_ere) return 0; // mock grep behaviour: if -e is omitted, use first positional argument as pattern if (pattern == nullptr && files.size()) pattern = files.take_first(); PosixOptions options {}; if (case_insensitive) options |= PosixFlags::Insensitive; Regex re(pattern, options); if (re.parser_result.error != Error::NoError) { return 1; } auto matches = [&](StringView str, StringView filename = "", bool print_filename = false, bool is_binary = false) { size_t last_printed_char_pos { 0 }; if (is_binary && binary_mode == BinaryFileMode::Skip) return false; auto result = re.match(str, PosixFlags::Global); if (result.success) { if (is_binary && binary_mode == BinaryFileMode::Binary) { outln("binary file \x1B[34m{}\x1B[0m matches", filename); } else { if (result.matches.size() && print_filename) { out("\x1B[34m{}:\x1B[0m", filename); } for (auto& match : result.matches) { out("{}\x1B[32m{}\x1B[0m", StringView(&str[last_printed_char_pos], match.global_offset - last_printed_char_pos), match.view.to_string()); last_printed_char_pos = match.global_offset + match.view.length(); } outln("{}", StringView(&str[last_printed_char_pos], str.length() - last_printed_char_pos)); } return true; } return false; }; auto handle_file = [&matches, binary_mode](StringView filename, bool print_filename) -> bool { auto file = Core::File::construct(filename); if (!file->open(Core::IODevice::ReadOnly)) { warnln("Failed to open {}: {}", filename, file->error_string()); return false; } while (file->can_read_line()) { auto line = file->read_line(); auto is_binary = memchr(line.characters(), 0, line.length()) != nullptr; if (matches(line, filename, print_filename, is_binary) && is_binary && binary_mode == BinaryFileMode::Binary) return true; } return true; }; auto add_directory = [&handle_file](String base, Optional recursive, auto handle_directory) -> void { Core::DirIterator it(recursive.value_or(base), Core::DirIterator::Flags::SkipDots); while (it.has_next()) { auto path = it.next_full_path(); if (!Core::File::is_directory(path)) { auto key = path.substring_view(base.length() + 1, path.length() - base.length() - 1); handle_file(key, true); } else { handle_directory(base, path, handle_directory); } } }; if (!files.size() && !recursive) { auto stdin_file = Core::File::standard_input(); while (!stdin_file->eof()) { auto line = stdin_file->read_line(); bool is_binary = line.bytes().contains_slow(0); if (is_binary && binary_mode == BinaryFileMode::Skip) return 1; if (matches(line, "stdin", false, is_binary) && is_binary && binary_mode == BinaryFileMode::Binary) return 0; } } else { if (recursive) { add_directory(".", {}, add_directory); } else { bool print_filename { files.size() > 1 }; for (auto& filename : files) { if (!handle_file(filename, print_filename)) return 1; } } } return 0; }