Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
51c9ffba
milvus
项目概览
BaiXuePrincess
/
milvus
与 Fork 源项目一致
从无法访问的项目Fork
通知
7
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
milvus
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
51c9ffba
编写于
6月 10, 2019
作者:
G
groot
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix license check bug
Former-commit-id: 69114c03a3482ab0835e209b7c680d9b2a0f684c
上级
a2d7a407
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
47 addition
and
43 deletion
+47
-43
cpp/src/license/LicenseCheck.cpp
cpp/src/license/LicenseCheck.cpp
+23
-24
cpp/src/license/LicenseCheck.h
cpp/src/license/LicenseCheck.h
+21
-14
cpp/src/server/Server.cpp
cpp/src/server/Server.cpp
+3
-5
未找到文件。
cpp/src/license/LicenseCheck.cpp
浏览文件 @
51c9ffba
...
...
@@ -9,25 +9,18 @@
#include <boost/filesystem/path.hpp>
#include <boost/serialization/map.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/thread.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
namespace
zilliz
{
namespace
vecwise
{
namespace
server
{
using
IO_SERVICE
=
boost
::
asio
::
io_service
;
LicenseCheck
::
LicenseCheck
()
{
namespace
{
IO_SERVICE
&
GetIOService
()
{
static
IO_SERVICE
io
;
return
io
;
}
}
// Part 1: Legality check
ServerError
LicenseCheck
::
LegalityCheck
(
const
std
::
string
&
license_file_path
)
{
...
...
@@ -81,14 +74,16 @@ LicenseCheck::AlterFile(const std::string &license_file_path,
const
boost
::
system
::
error_code
&
ec
,
boost
::
asio
::
deadline_timer
*
pt
)
{
ServerError
err
=
LegalityCheck
(
license_file_path
);
if
(
err
!=
SERVER_SUCCESS
)
{
ServerError
err
=
L
icenseCheck
::
L
egalityCheck
(
license_file_path
);
if
(
err
!=
SERVER_SUCCESS
)
{
printf
(
"license file check error
\n
"
);
exit
(
1
);
}
printf
(
"---runing---
\n
"
);
pt
->
expires_at
(
pt
->
expires_at
()
+
boost
::
posix_time
::
hours
(
1
));
pt
->
async_wait
(
boost
::
bind
(
AlterFile
,
license_file_path
,
boost
::
asio
::
placeholders
::
error
,
pt
));
pt
->
async_wait
(
boost
::
bind
(
LicenseCheck
::
AlterFile
,
license_file_path
,
boost
::
asio
::
placeholders
::
error
,
pt
));
return
SERVER_SUCCESS
;
}
...
...
@@ -102,22 +97,26 @@ LicenseCheck::StartCountingDown(const std::string &license_file_path) {
}
//create a thread to run AlterFile
std
::
thread
io_thread
([
&
](
)
{
boost
::
asio
::
io_service
&
io
=
GetIOService
();
boost
::
asio
::
deadline_timer
t
(
io
,
boost
::
posix_time
::
hours
(
1
));
t
.
async_wait
(
boost
::
bind
(
AlterFile
,
license_file_path
,
boost
::
asio
::
placeholders
::
error
,
&
t
));
io
.
run
();
//this thread will block here
if
(
counting_thread_
==
nullptr
)
{
counting_thread_
=
std
::
make_shared
<
std
::
thread
>
([
&
]()
{
boost
::
asio
::
deadline_timer
t
(
io_service_
,
boost
::
posix_time
::
hours
(
1
));
t
.
async_wait
(
boost
::
bind
(
LicenseCheck
::
AlterFile
,
license_file_path
,
boost
::
asio
::
placeholders
::
error
,
&
t
));
io_service_
.
run
();
//this thread will block here
});
io_thread
.
detach
();
}
return
SERVER_SUCCESS
;
}
ServerError
LicenseCheck
::
StopCountingDown
()
{
boost
::
asio
::
io_service
&
io
=
GetIOService
();
if
(
!
io
.
stopped
())
{
io
.
stop
();
if
(
!
io_service_
.
stopped
())
{
io_service_
.
stop
();
}
if
(
counting_thread_
!=
nullptr
)
{
counting_thread_
->
join
();
counting_thread_
=
nullptr
;
}
return
SERVER_SUCCESS
;
...
...
cpp/src/license/LicenseCheck.h
浏览文件 @
51c9ffba
...
...
@@ -4,36 +4,43 @@
#include "LicenseLibrary.h"
#include <boost/asio.hpp>
#include <boost/thread.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <thread>
#include <memory>
namespace
zilliz
{
namespace
vecwise
{
namespace
server
{
class
LicenseCheck
{
public:
// Part 1: Legality check
static
ServerError
LegalityCheck
(
const
std
::
string
&
license_file_path
);
private:
LicenseCheck
();
public:
static
LicenseCheck
&
GetInstance
()
{
static
LicenseCheck
instance
;
return
instance
;
};
// Part 2: Timing check license
static
ServerError
AlterFile
(
const
std
::
string
&
license_file_path
,
const
boost
::
system
::
error_code
&
ec
,
boost
::
asio
::
deadline_timer
*
pt
);
LegalityCheck
(
const
std
::
string
&
license_file_path
);
static
ServerError
ServerError
StartCountingDown
(
const
std
::
string
&
license_file_path
);
static
ServerError
ServerError
StopCountingDown
();
private:
private:
static
ServerError
AlterFile
(
const
std
::
string
&
license_file_path
,
const
boost
::
system
::
error_code
&
ec
,
boost
::
asio
::
deadline_timer
*
pt
);
private:
boost
::
asio
::
io_service
io_service_
;
std
::
shared_ptr
<
std
::
thread
>
counting_thread_
;
};
...
...
cpp/src/server/Server.cpp
浏览文件 @
51c9ffba
...
...
@@ -159,15 +159,13 @@ Server::Start() {
ConfigNode
license_config
=
config
.
GetConfig
(
CONFIG_LICENSE
);
std
::
string
license_file_path
=
license_config
.
GetValue
(
CONFIG_LICENSE_PATH
);
SERVER_LOG_INFO
<<
"License path: "
<<
license_file_path
;
if
(
server
::
LicenseCheck
::
LegalityCheck
(
license_file_path
)
!=
SERVER_SUCCESS
)
{
SERVER_LOG_ERROR
<<
"License check failed"
;
exit
(
1
);
}
if
(
server
::
LicenseCheck
::
StartCountingDown
(
license_file_path
)
!=
SERVER_SUCCESS
)
{
SERVER_LOG_ERROR
<<
"License counter start error"
;
exit
(
1
);
}
server
::
LicenseCheck
::
GetInstance
().
StartCountingDown
(
license_file_path
);
#endif
// Handle Signal
...
...
@@ -218,7 +216,7 @@ Server::Stop() {
StopService
();
#ifdef ENABLE_LICENSE
server
::
LicenseCheck
::
StopCountingDown
();
server
::
LicenseCheck
::
GetInstance
().
StopCountingDown
();
#endif
SERVER_LOG_INFO
<<
"Vecwise server closed"
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录