mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
422 lines
10 KiB
C++
422 lines
10 KiB
C++
/****************************************************************************
|
|
*
|
|
* Copyright (C) 2015 Mark Charlebois. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
/**
|
|
* @file main.cpp
|
|
* Basic shell to execute builtin "apps"
|
|
*
|
|
* @author Mark Charlebois <charlebm@gmail.com>
|
|
* @author Roman Bapst <bapstroman@gmail.com>
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <vector>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include "apps.h"
|
|
#include "px4_middleware.h"
|
|
#include "DriverFramework.hpp"
|
|
#include <termios.h>
|
|
|
|
namespace px4
|
|
{
|
|
void init_once(void);
|
|
}
|
|
|
|
using namespace std;
|
|
|
|
typedef int (*px4_main_t)(int argc, char *argv[]);
|
|
|
|
#define CMD_BUFF_SIZE 100
|
|
|
|
static bool _ExitFlag = false;
|
|
|
|
static struct termios orig_term;
|
|
|
|
extern "C" {
|
|
void _SigIntHandler(int sig_num);
|
|
void _SigIntHandler(int sig_num)
|
|
{
|
|
cout.flush();
|
|
cout << endl << "Exiting..." << endl;
|
|
cout.flush();
|
|
_ExitFlag = true;
|
|
}
|
|
void _SigFpeHandler(int sig_num);
|
|
void _SigFpeHandler(int sig_num)
|
|
{
|
|
cout.flush();
|
|
cout << endl << "floating point exception" << endl;
|
|
PX4_BACKTRACE();
|
|
cout.flush();
|
|
}
|
|
}
|
|
|
|
static void print_prompt()
|
|
{
|
|
cout.flush();
|
|
cout << "pxh> ";
|
|
cout.flush();
|
|
}
|
|
|
|
static void run_cmd(const vector<string> &appargs, bool exit_on_fail, bool silently_fail = false)
|
|
{
|
|
// command is appargs[0]
|
|
string command = appargs[0];
|
|
|
|
if (apps.find(command) != apps.end()) {
|
|
const char *arg[appargs.size() + 2];
|
|
|
|
unsigned int i = 0;
|
|
|
|
while (i < appargs.size() && appargs[i] != "") {
|
|
arg[i] = (char *)appargs[i].c_str();
|
|
++i;
|
|
}
|
|
|
|
arg[i] = (char *)0;
|
|
|
|
int retval = apps[command](i, (char **)arg);
|
|
|
|
if (retval) {
|
|
cout << "Command '" << command << "' failed, returned " << retval << endl;
|
|
|
|
if (exit_on_fail && retval) {
|
|
exit(retval);
|
|
}
|
|
}
|
|
|
|
} else if (command.compare("help") == 0) {
|
|
list_builtins();
|
|
|
|
} else if (command.length() == 0 || command[0] == '#') {
|
|
// Do nothing
|
|
|
|
} else if (!silently_fail) {
|
|
cout << "Invalid command: " << command << "\ntype 'help' for a list of commands" << endl;
|
|
|
|
}
|
|
}
|
|
|
|
static void usage()
|
|
{
|
|
|
|
cout << "./px4 [-d] [startup_config] -h" << std::endl;
|
|
cout << " -d - Optional flag to run the app in daemon mode and does not listen for user input." <<
|
|
std::endl;
|
|
cout << " This is needed if px4 is intended to be run as a upstart job on linux" << std::endl;
|
|
cout << "<startup_config> - config file for starting/stopping px4 modules" << std::endl;
|
|
cout << " -h - help/usage information" << std::endl;
|
|
}
|
|
|
|
static void process_line(string &line, bool exit_on_fail)
|
|
{
|
|
vector<string> appargs(10);
|
|
|
|
stringstream(line) >> appargs[0] >> appargs[1] >> appargs[2] >> appargs[3] >> appargs[4] >> appargs[5] >> appargs[6] >>
|
|
appargs[7] >> appargs[8] >> appargs[9];
|
|
run_cmd(appargs, exit_on_fail);
|
|
}
|
|
|
|
static void restore_term(void)
|
|
{
|
|
cout << "Restoring terminal\n";
|
|
tcsetattr(0, TCSANOW, &orig_term);
|
|
}
|
|
|
|
bool px4_exit_requested(void)
|
|
{
|
|
return _ExitFlag;
|
|
}
|
|
|
|
static void set_cpu_scaling()
|
|
{
|
|
#ifdef __PX4_POSIX_EAGLE
|
|
// On Snapdragon we miss updates in sdlog2 unless all 4 CPUs are run
|
|
// at the maximum frequency all the time.
|
|
// Interestingely, cpu0 and cpu3 set the scaling for all 4 CPUs on Snapdragon.
|
|
system("echo performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor");
|
|
system("echo performance > /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor");
|
|
|
|
// Alternatively we could also raise the minimum frequency to save some power,
|
|
// unfortunately this still lead to some drops.
|
|
//system("echo 1190400 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq");
|
|
#endif
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
bool daemon_mode = false;
|
|
bool chroot_on = false;
|
|
|
|
tcgetattr(0, &orig_term);
|
|
atexit(restore_term);
|
|
|
|
struct sigaction sig_int;
|
|
memset(&sig_int, 0, sizeof(struct sigaction));
|
|
sig_int.sa_handler = _SigIntHandler;
|
|
sig_int.sa_flags = 0;// not SA_RESTART!;
|
|
|
|
struct sigaction sig_fpe;
|
|
memset(&sig_fpe, 0, sizeof(struct sigaction));
|
|
sig_fpe.sa_handler = _SigFpeHandler;
|
|
sig_fpe.sa_flags = 0;// not SA_RESTART!;
|
|
|
|
sigaction(SIGINT, &sig_int, NULL);
|
|
//sigaction(SIGTERM, &sig_int, NULL);
|
|
sigaction(SIGFPE, &sig_fpe, NULL);
|
|
|
|
set_cpu_scaling();
|
|
|
|
int index = 1;
|
|
char *commands_file = nullptr;
|
|
|
|
while (index < argc) {
|
|
if (argv[index][0] == '-') {
|
|
// the arg starts with -
|
|
if (strcmp(argv[index], "-d") == 0) {
|
|
daemon_mode = true;
|
|
|
|
} else if (strcmp(argv[index], "-h") == 0) {
|
|
usage();
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[index], "-c") == 0) {
|
|
chroot_on = true;
|
|
|
|
} else {
|
|
PX4_WARN("Unknown/unhandled parameter: %s", argv[index]);
|
|
return 1;
|
|
}
|
|
|
|
} else {
|
|
// this is an argument that does not have '-' prefix; treat it like a file name
|
|
ifstream infile(argv[index]);
|
|
|
|
if (infile.good()) {
|
|
infile.close();
|
|
commands_file = argv[index];
|
|
|
|
} else {
|
|
PX4_WARN("Error opening file: %s", argv[index]);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
++index;
|
|
}
|
|
|
|
|
|
DriverFramework::Framework::initialize();
|
|
px4::init_once();
|
|
|
|
px4::init(argc, argv, "px4");
|
|
|
|
// if commandfile is present, process the commands from the file
|
|
if (commands_file != nullptr) {
|
|
ifstream infile(commands_file);
|
|
|
|
if (infile.is_open()) {
|
|
for (string line; getline(infile, line, '\n');) {
|
|
|
|
if (px4_exit_requested()) {
|
|
break;
|
|
}
|
|
|
|
// TODO: this should be true but for that we have to check all startup files
|
|
process_line(line, false);
|
|
}
|
|
|
|
} else {
|
|
PX4_WARN("Error opening file: %s", commands_file);
|
|
}
|
|
}
|
|
|
|
if (chroot_on) {
|
|
// Lock this application in the current working dir
|
|
// this is not an attempt to secure the environment,
|
|
// rather, to replicate a deployed file system.
|
|
|
|
#ifdef PATH_MAX
|
|
const unsigned path_max_len = PATH_MAX;
|
|
#else
|
|
const unsigned path_max_len = 1024;
|
|
#endif
|
|
|
|
char pwd_path[path_max_len];
|
|
const char *folderpath = "/rootfs/";
|
|
|
|
if (nullptr == getcwd(pwd_path, sizeof(pwd_path))) {
|
|
PX4_ERR("Failed acquiring working dir, abort.");
|
|
exit(1);
|
|
}
|
|
|
|
if (nullptr == strcat(pwd_path, folderpath)) {
|
|
PX4_ERR("Failed completing path, abort.");
|
|
exit(1);
|
|
}
|
|
|
|
if (chroot(pwd_path)) {
|
|
PX4_ERR("Failed chrooting application, path: %s, error: %s.", pwd_path, strerror(errno));
|
|
exit(1);
|
|
}
|
|
|
|
if (chdir("/")) {
|
|
PX4_ERR("Failed changing to root dir, path: %s, error: %s.", pwd_path, strerror(errno));
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
if (!daemon_mode) {
|
|
string mystr = "";
|
|
string string_buffer[CMD_BUFF_SIZE];
|
|
int buf_ptr_write = 0;
|
|
int buf_ptr_read = 0;
|
|
|
|
print_prompt();
|
|
|
|
// change input mode so that we can manage shell
|
|
struct termios term;
|
|
tcgetattr(0, &term);
|
|
term.c_lflag &= ~ICANON;
|
|
term.c_lflag &= ~ECHO;
|
|
tcsetattr(0, TCSANOW, &term);
|
|
setbuf(stdin, NULL);
|
|
|
|
while (!_ExitFlag) {
|
|
|
|
char c = getchar();
|
|
|
|
switch (c) {
|
|
case 127: // backslash
|
|
if (mystr.length() > 0) {
|
|
mystr.pop_back();
|
|
printf("%c[2K", 27); // clear line
|
|
cout << (char)13;
|
|
print_prompt();
|
|
cout << mystr;
|
|
}
|
|
|
|
break;
|
|
|
|
case'\n': // user hit enter
|
|
if (buf_ptr_write == CMD_BUFF_SIZE) {
|
|
buf_ptr_write = 0;
|
|
}
|
|
|
|
if (buf_ptr_write > 0) {
|
|
if (!mystr.empty() && mystr != string_buffer[buf_ptr_write - 1]) {
|
|
string_buffer[buf_ptr_write] = mystr;
|
|
buf_ptr_write++;
|
|
}
|
|
|
|
} else {
|
|
if (!mystr.empty() && mystr != string_buffer[CMD_BUFF_SIZE - 1]) {
|
|
string_buffer[buf_ptr_write] = mystr;
|
|
buf_ptr_write++;
|
|
}
|
|
}
|
|
|
|
cout << endl;
|
|
process_line(mystr, false);
|
|
mystr = "";
|
|
buf_ptr_read = buf_ptr_write;
|
|
|
|
print_prompt();
|
|
break;
|
|
|
|
case '\033': { // arrow keys
|
|
c = getchar(); // skip first one, does not have the info
|
|
c = getchar();
|
|
|
|
// arrow up
|
|
if (c == 'A') {
|
|
buf_ptr_read--;
|
|
// arrow down
|
|
|
|
} else if (c == 'B') {
|
|
if (buf_ptr_read < buf_ptr_write) {
|
|
buf_ptr_read++;
|
|
}
|
|
|
|
} else {
|
|
// TODO: Support editing current line
|
|
}
|
|
|
|
if (buf_ptr_read < 0) {
|
|
buf_ptr_read = 0;
|
|
}
|
|
|
|
string saved_cmd = string_buffer[buf_ptr_read];
|
|
printf("%c[2K", 27);
|
|
cout << (char)13;
|
|
mystr = saved_cmd;
|
|
print_prompt();
|
|
cout << mystr;
|
|
break;
|
|
}
|
|
|
|
default: // any other input
|
|
if (c > 3) {
|
|
cout << c;
|
|
mystr += c;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
while (!_ExitFlag) {
|
|
usleep(100000);
|
|
}
|
|
}
|
|
|
|
// TODO: Always try to stop muorb for QURT because px4_task_is_running doesn't seem to work.
|
|
if (true) {
|
|
//if (px4_task_is_running("muorb")) {
|
|
// sending muorb stop is needed if it is running to exit cleanly
|
|
vector<string> muorb_stop_cmd = { "muorb", "stop" };
|
|
run_cmd(muorb_stop_cmd, !daemon_mode, true);
|
|
}
|
|
|
|
vector<string> shutdown_cmd = { "shutdown" };
|
|
run_cmd(shutdown_cmd, true);
|
|
DriverFramework::Framework::shutdown();
|
|
|
|
return OK;
|
|
}
|