source: mainline/uspace/app/bdsh/cmds/builtins/cd/cd.c@ 163fc09

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 163fc09 was 6afc9d7, checked in by Jiri Svoboda <jiri@…>, 10 years ago

UNIX-like I/O functions should use errno to return error code for many reasons.

  • Property mode set to 100644
File size: 4.5 KB
Line 
1/*
2 * Copyright (c) 2008 Tim Post
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <str.h>
33#include <errno.h>
34
35#include "util.h"
36#include "errors.h"
37#include "entry.h"
38#include "cmds.h"
39#include "cd.h"
40
41static const char *cmdname = "cd";
42
43/* Previous directory variables.
44 *
45 * Declaring them static to avoid many "== NULL" checks.
46 * PATH_MAX is not that big to cause any problems with memory overhead.
47 */
48static char previous_directory[PATH_MAX] = "";
49static char previous_directory_tmp[PATH_MAX];
50static bool previous_directory_valid = true;
51static bool previous_directory_set = false;
52
53static int chdir_and_remember(const char *new_dir) {
54
55 char *ok = getcwd(previous_directory_tmp, PATH_MAX);
56 previous_directory_valid = ok != NULL;
57 previous_directory_set = true;
58
59 if (chdir(new_dir) != 0)
60 return errno;
61
62 str_cpy(previous_directory, PATH_MAX, previous_directory_tmp);
63 return EOK;
64}
65
66void help_cmd_cd(unsigned int level)
67{
68 if (level == HELP_SHORT) {
69 printf("`%s' changes the current working directory.\n", cmdname);
70 } else {
71 printf(
72 " %s <directory>\n"
73 " Change directory to <directory>, e.g `%s /sbin'\n",
74 cmdname, cmdname);
75 }
76
77 return;
78}
79
80
81/* This is a very rudamentary 'cd' command. It is not 'link smart' (yet) */
82
83int cmd_cd(char **argv, cliuser_t *usr)
84{
85 int argc, rc = 0;
86
87 argc = cli_count_args(argv);
88
89 /* Handle cd -- -. Override to switch to a directory named '-' */
90 bool hyphen_override = false;
91 char *target_directory = argv[1];
92 if (argc == 3) {
93 if (!str_cmp(argv[1], "--")) {
94 hyphen_override = true;
95 argc--;
96 target_directory = argv[2];
97 }
98 }
99
100 /* We don't yet play nice with whitespace, a getopt implementation should
101 * protect "quoted\ destination" as a single argument. Its not our job to
102 * look for && || or redirection as the tokenizer should have done that
103 * (currently, it does not) */
104
105 if (argc > 2) {
106 cli_error(CL_EFAIL, "Too many arguments to `%s'", cmdname);
107 return CMD_FAILURE;
108 }
109
110 if (argc < 2) {
111 printf("%s - no directory specified. Try `help %s extended'\n",
112 cmdname, cmdname);
113 return CMD_FAILURE;
114 }
115
116 /* We have the correct # of arguments */
117 // TODO: handle tidle (~) expansion? */
118
119 /* Handle 'cd -' first. */
120 if (!str_cmp(target_directory, "-") && !hyphen_override) {
121 if (!previous_directory_valid) {
122 cli_error(CL_EFAIL, "Cannot switch to previous directory");
123 return CMD_FAILURE;
124 }
125 if (!previous_directory_set) {
126 cli_error(CL_EFAIL, "No previous directory to switch to");
127 return CMD_FAILURE;
128 }
129 char *prev_dup = str_dup(previous_directory);
130 if (prev_dup == NULL) {
131 cli_error(CL_ENOMEM, "Cannot switch to previous directory");
132 return CMD_FAILURE;
133 }
134 rc = chdir_and_remember(prev_dup);
135 free(prev_dup);
136 } else {
137 rc = chdir_and_remember(target_directory);
138 }
139
140 if (rc == 0) {
141 cli_set_prompt(usr);
142 return CMD_SUCCESS;
143 } else {
144 switch (rc) {
145 case ENOMEM:
146 cli_error(CL_EFAIL, "Destination path too long");
147 break;
148 case ENOENT:
149 cli_error(CL_ENOENT, "Invalid directory `%s'", target_directory);
150 break;
151 default:
152 cli_error(CL_EFAIL, "Unable to change to `%s'", target_directory);
153 break;
154 }
155 }
156
157 return CMD_FAILURE;
158}
Note: See TracBrowser for help on using the repository browser.