zephyr/subsys/fs/shell.c
Anas Nashif 7297f5db88 shell: move shell to its own subsystem
This moves the shell component into its own subsys and groups all
related files and options into a single place.

Additionally, one Kconfig option will now be required to enable the
shell:

 CONFIG_CONSOLE_SHELL=y

The header files was also moved to include/shell/shell.h and can be now
referenced with

 #include <shell/shell.h>

instead of

 #include <misc/shell.h>

Updated documentation as well.

Change-Id: Iffbba4acfa05408055e9fd28dffa213451351f94
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-12-25 19:35:11 +00:00

147 lines
2.9 KiB
C

/*
* Copyright (c) 2016 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <misc/printk.h>
#include <shell/shell.h>
#include <init.h>
#include <fs.h>
#define MAX_PATH_LEN 128
static char cwd[MAX_PATH_LEN] = "/";
static int cmd_ls(int argc, char *argv[])
{
char path[MAX_PATH_LEN];
fs_dir_t dir;
int err;
if (argc < 2) {
strcpy(path, cwd);
} else if (argv[1][0] == '/') {
strncpy(path, argv[1], sizeof(path) - 1);
path[MAX_PATH_LEN - 1] = '\0';
} else {
if (strcmp(cwd, "/") == 0) {
snprintf(path, sizeof(path), "/%s", argv[1]);
} else {
snprintf(path, sizeof(path), "%s/%s", cwd, argv[1]);
}
}
err = fs_opendir(&dir, path);
if (err) {
printk("Unable to open %s (err %d)\n", path, err);
return 0;
}
while (1) {
struct fs_dirent entry;
err = fs_readdir(&dir, &entry);
if (err) {
printk("Unable to read directory\n");
break;
}
/* Check for end of directory listing */
if (entry.name[0] == '\0') {
break;
}
if (entry.type == FS_DIR_ENTRY_DIR) {
printk("%s/\n", entry.name);
} else {
printk("%s\n", entry.name);
}
}
fs_closedir(&dir);
return 0;
}
static int cmd_pwd(int argc, char *argv[])
{
printk("%s\n", cwd);
return 0;
}
static int cmd_cd(int argc, char *argv[])
{
char path[MAX_PATH_LEN];
struct fs_dirent entry;
int err;
if (argc < 2) {
strcpy(cwd, "/");
return 0;
}
if (strcmp(argv[1], "..") == 0) {
char *prev = strrchr(cwd, '/');
if (!prev || prev == cwd) {
strcpy(cwd, "/");
} else {
*prev = '\0';
}
/* No need to test that a parent exists */
return 0;
}
if (argv[1][0] == '/') {
strncpy(path, argv[1], sizeof(path) - 1);
path[MAX_PATH_LEN - 1] = '\0';
} else {
if (strcmp(cwd, "/") == 0) {
snprintf(path, sizeof(path), "/%s", argv[1]);
} else {
snprintf(path, sizeof(path), "%s/%s", cwd, argv[1]);
}
}
err = fs_stat(path, &entry);
if (err) {
printk("%s doesn't exist\n", path);
return 0;
}
if (entry.type != FS_DIR_ENTRY_DIR) {
printk("%s is not a directory\n", path);
return 0;
}
strcpy(cwd, path);
return 0;
}
struct shell_cmd fs_commands[] = {
{ "ls", cmd_ls, "List files in current directory" },
{ "cd", cmd_cd, "Change working directory" },
{ "pwd", cmd_pwd, "Print current working directory" },
{ NULL, NULL }
};
SHELL_REGISTER("fs", fs_commands);