diff options
Diffstat (limited to 'src/VBox/Runtime/testcase/tstMove.cpp')
-rw-r--r-- | src/VBox/Runtime/testcase/tstMove.cpp | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/src/VBox/Runtime/testcase/tstMove.cpp b/src/VBox/Runtime/testcase/tstMove.cpp new file mode 100644 index 00000000..2644520b --- /dev/null +++ b/src/VBox/Runtime/testcase/tstMove.cpp @@ -0,0 +1,156 @@ +/* $Id: tstMove.cpp $ */ +/** @file + * IPRT - RTFileMove & RTDirMove test program. + */ + +/* + * Copyright (C) 2006-2023 Oracle and/or its affiliates. + * + * This file is part of VirtualBox base platform packages, as + * available from https://www.virtualbox.org. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, in version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <https://www.gnu.org/licenses>. + * + * The contents of this file may alternatively be used under the terms + * of the Common Development and Distribution License Version 1.0 + * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included + * in the VirtualBox distribution, in which case the provisions of the + * CDDL are applicable instead of those of the GPL. + * + * You may elect to license modified versions of this file under the + * terms and conditions of either the GPL or the CDDL or both. + * + * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 + */ + + +/********************************************************************************************************************************* +* Header Files * +*********************************************************************************************************************************/ +#include <iprt/file.h> +#include <iprt/path.h> +#include <iprt/dir.h> +#include <iprt/errcore.h> +#include <iprt/initterm.h> +#include <iprt/stream.h> + + +/** + * Checks if there is one of the typical help options in the argument list. + */ +static bool HasHelpOption(int argc, char **argv) +{ + for (int argi = 1; argi < argc; argi++) + if ( argv[argi][0] == '-' + && ( argv[argi][1] == 'h' + || argv[argi][1] == 'H' + || argv[argi][1] == '?' + || argv[argi][1] == '-') + ) + return true; + return false; +} + + +int main(int argc, char **argv) +{ + RTR3InitExe(argc, &argv, 0); + + /* + * Arguments or any -? or --help? + */ + if (argc <= 1 || HasHelpOption(argc, argv)) + { + RTPrintf("usage: tstMove [-efdr] <src> <dst>\n" + "\n" + " -f File only.\n" + " -d Directory only.\n" + " -m Use move operation instead of rename. (implies -f)\n" + " -r Replace existing destination.\n" + ); + return 1; + } + + /* + * Parse args. + */ + const char *pszNew = NULL; + const char *pszOld = NULL; + bool fDir = false; + bool fFile = false; + bool fReplace = false; + bool fMoveFile = false; + for (int argi = 1; argi < argc; argi++) + { + if (argv[argi][0] == '-') + { + const char *psz = &argv[argi][1]; + do + { + switch (*psz) + { + case 'd': + fDir = true; + fMoveFile = false; + break; + case 'f': + fFile = true; + break; + case 'm': + fMoveFile = true; + fDir = false; + fFile = true; + break; + case 'r': + fReplace = true; + break; + default: + RTPrintf("tstRTFileMove: syntax error: Unknown option '%c' in '%s'!\n", *psz, argv[argi]); + return 1; + } + } while (*++psz); + } + else if (!pszOld) + pszOld = argv[argi]; + else if (!pszNew) + pszNew = argv[argi]; + else + { + RTPrintf("tstRTFileMove: syntax error: too many filenames!\n"); + return 1; + } + } + if (!pszNew || !pszOld) + { + RTPrintf("tstRTFileMove: syntax error: too few filenames!\n"); + return 1; + } + + /* + * Do the operation. + */ + int rc; + if (!fDir && !fFile) + rc = RTPathRename(pszOld, pszNew, fReplace ? RTPATHRENAME_FLAGS_REPLACE : 0); + else if (fDir) + rc = RTDirRename( pszOld, pszNew, fReplace ? RTPATHRENAME_FLAGS_REPLACE : 0); + else if (!fMoveFile) + rc = RTFileRename(pszOld, pszNew, fReplace ? RTPATHRENAME_FLAGS_REPLACE : 0); + else + rc = RTFileMove( pszOld, pszNew, fReplace ? RTFILEMOVE_FLAGS_REPLACE : 0); + + RTPrintf("The API returned %Rrc\n", rc); + return !RT_SUCCESS(rc); +} + |