mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:44:58 +00:00

The LexicalPath instance methods dirname(), basename(), title() and extension() will be changed to return StringView const& in a further commit. Due to this, users creating temporary LexicalPath objects just to call one of those getters will recieve a StringView const& pointing to a possible freed buffer. To avoid this, static methods for those APIs have been added, which will return a String by value to avoid those problems. All cases where temporary LexicalPath objects have been used as described above haven been changed to use the static APIs.
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/LexicalPath.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (pledge("stdio cpath", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
bool symbolic = false;
|
|
const char* target = nullptr;
|
|
const char* path = nullptr;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_option(symbolic, "Create a symlink", "symbolic", 's');
|
|
args_parser.add_positional_argument(target, "Link target", "target");
|
|
args_parser.add_positional_argument(path, "Link path", "path", Core::ArgsParser::Required::No);
|
|
args_parser.parse(argc, argv);
|
|
|
|
String path_buffer;
|
|
if (!path) {
|
|
path_buffer = LexicalPath::basename(target);
|
|
path = path_buffer.characters();
|
|
}
|
|
|
|
if (symbolic) {
|
|
int rc = symlink(target, path);
|
|
if (rc < 0) {
|
|
perror("symlink");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int rc = link(target, path);
|
|
if (rc < 0) {
|
|
perror("link");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|