Luna/apps/edit.cpp

42 lines
1.2 KiB
C++
Raw Normal View History

#include <luna/String.h>
#include <os/ArgumentParser.h>
#include <os/File.h>
2023-08-22 13:17:13 +00:00
#include <os/FileSystem.h>
#include <os/Prompt.h>
using os::File;
2023-03-23 23:52:26 +00:00
2023-04-13 15:04:59 +00:00
Result<int> luna_main(int argc, char** argv)
2023-03-23 23:52:26 +00:00
{
StringView pathname;
2023-03-23 23:52:26 +00:00
os::ArgumentParser parser;
parser.add_description("Edit a file using basic line-based shell editing."_sv);
parser.add_system_program_info("edit"_sv);
parser.add_positional_argument(pathname, "path"_sv, true);
parser.parse(argc, argv);
2023-03-23 23:52:26 +00:00
2023-08-22 13:17:13 +00:00
if (os::FileSystem::exists(pathname))
{
String prompt = TRY(String::format("File %s already exists. Overwrite?"_sv, pathname.chars()));
bool overwrite = os::conditional_prompt(prompt.chars(), os::DefaultNo);
if (!overwrite) return 0;
}
auto file = TRY(File::open_or_create(pathname, File::WriteOnly));
2023-03-23 23:52:26 +00:00
auto input = File::standard_input();
2023-03-23 23:52:26 +00:00
2023-08-22 13:17:13 +00:00
os::println("- Editing %s. Press Enter to start a new line, or Ctrl+D at the start of a line to save and exit. -",
pathname.chars());
2023-03-23 23:52:26 +00:00
while (1)
{
String line = TRY(input->read_line());
if (line.is_empty()) break;
TRY(file->write(line.view()));
2023-03-23 23:52:26 +00:00
}
return 0;
}