-
Notifications
You must be signed in to change notification settings - Fork 436
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor bug fix for shell scripts like kill_tera.sh
, launch_tera.sh
and teracli
#1280
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,26 @@ | |
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#include "common/file/file_path.h" | ||
|
||
#include <dirent.h> | ||
#include <grp.h> | ||
#include <libgen.h> | ||
#include <linux/limits.h> | ||
#include <pwd.h> | ||
#include <sys/stat.h> | ||
#include <sys/types.h> | ||
#include <unistd.h> | ||
|
||
#include <stdint.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <sys/stat.h> | ||
#include <sys/types.h> | ||
#include <unistd.h> | ||
|
||
#include <gflags/gflags.h> | ||
|
||
#include "common/base/string_ext.h" | ||
#include "common/file/file_path.h" | ||
|
||
|
||
DECLARE_int32(file_op_retry_times); | ||
|
||
|
@@ -105,6 +110,23 @@ bool CreateDirWithRetry(const std::string& dir_path) { | |
} | ||
return is_success; | ||
} | ||
std::string GetCWD() { | ||
char buf[PATH_MAX]; | ||
if(getcwd(buf, PATH_MAX) == NULL){ | ||
return ""; | ||
} | ||
return buf; | ||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 代码风格:缩进不对,左大括号缺少空格 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 已修改 |
||
std::string GetProcessDir() { | ||
char buf[PATH_MAX]; | ||
ssize_t count = readlink("/proc/self/exe", buf, PATH_MAX); | ||
if(count == 0) { | ||
return ""; | ||
} else{ | ||
return dirname(buf); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. dirname返回一个char*,是否需要释放;如果不用释放,是否是线程安全的? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 不需要释放,线程安全的。dirname可能返回内部的static alloc的内存,也可能返回buf的内存。buf本身是局部变量,可以确保线程安全,dirname本身是线程安全函数。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 如果是内部的静态分配,为什么是线程安全的 |
||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 同上 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 如上 |
||
std::string UidToName(uid_t uid) { | ||
struct passwd *temp = NULL; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1189,13 +1189,13 @@ static int SpecifiedFlagfileCount(const std::string& confpath) { | |
|
||
static int InitFlags(const std::string& confpath, const std::string& log_prefix) { | ||
// search conf file, priority: | ||
// user-specified > ./tera.flag > ../conf/tera.flag | ||
// user-specified > ./tera.flag > ../conf/tera.flag > exeDir/tera.flag > exeDir/../tera.flag | ||
std::string flagfile; | ||
if (SpecifiedFlagfileCount(confpath) > 1) { | ||
LOG(ERROR) << "should specify no more than one config file"; | ||
return -1; | ||
} | ||
|
||
std::string exedir = GetProcessDir(); | ||
if (!confpath.empty() && IsExist(confpath)){ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tera.flag里面会配置logdir,路径不对的话,会导致日志不能输出,可以增加一下判断 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 增加了判断。 |
||
flagfile = confpath; | ||
} else if(!confpath.empty() && !IsExist(confpath)){ | ||
|
@@ -1211,6 +1211,10 @@ static int InitFlags(const std::string& confpath, const std::string& log_prefix) | |
flagfile = "./tera.flag"; | ||
} else if (IsExist("../conf/tera.flag")) { | ||
flagfile = "../conf/tera.flag"; | ||
} else if (IsExist(exedir + "/./tera.flag")) { | ||
flagfile = exedir + "/./tera.flag"; | ||
} else if (IsExist(exedir + "/../conf/tera.flag")) { | ||
flagfile = exedir + "/../conf/tera.flag"; | ||
} else if (IsExist(utils::GetValueFromEnv("TERA_CONF"))) { | ||
flagfile = utils::GetValueFromEnv("TERA_CONF"); | ||
} else { | ||
|
@@ -1220,6 +1224,11 @@ static int InitFlags(const std::string& confpath, const std::string& log_prefix) | |
|
||
utils::LoadFlagFile(flagfile); | ||
|
||
if(!IsDir(FLAGS_log_dir)) { | ||
LOG(ERROR) << "wrong log directory: "<<FLAGS_log_dir; | ||
return -1; | ||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 可以报warning,不应该直接new client失败; |
||
if (!g_is_glog_init) { | ||
::google::InitGoogleLogging(log_prefix.c_str()); | ||
utils::SetupLog(log_prefix); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果系统已经预装了readline,就不需要下载此tar包重新编译了
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已经增加了判断,我的是centos7.2的系统,但是并没有安装readline库。需要手动安装,其他预装库都正常,我认为其他人也会有相似的情况。