Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
manager-app-sz
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
manager-app-sz
Commits
f2e8bb59
提交
f2e8bb59
authored
11月 29, 2017
作者:
吴强
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
ssh://192.168.1.116:29418/bolan-root/frontend/manager-app-sz
into wq
上级
e6d40b8f
62e3f3d0
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
37 行增加
和
34 行删除
+37
-34
Updater.java
...c/main/java/com/bolan/android/modules/update/Updater.java
+11
-6
Updater.js
src/native/Updater.js
+26
-28
没有找到文件。
android/app/src/main/java/com/bolan/android/modules/update/Updater.java
浏览文件 @
f2e8bb59
...
...
@@ -3,6 +3,7 @@ package com.bolan.android.modules.update;
import
android.content.Context
;
import
android.content.Intent
;
import
android.net.Uri
;
import
android.os.Process
;
import
android.util.Log
;
import
com.bolan.android.modules.Utils
;
...
...
@@ -74,17 +75,21 @@ public class Updater extends ReactContextBaseJavaModule {
is
=
connection
.
getInputStream
();
fos
=
new
FileOutputStream
(
apkFile
);
int
count
=
0
;
int
lastProgress
=
-
1
;
byte
buf
[]
=
new
byte
[
1024
*
64
];
WritableMap
event
;
do
{
int
numRead
=
is
.
read
(
buf
);
count
+=
numRead
;
int
progress
=
(
int
)
(((
float
)
count
/
length
)
*
100
);
event
=
Arguments
.
createMap
();
event
.
putInt
(
"progress"
,
progress
);
event
.
putInt
(
"current"
,
count
);
event
.
putInt
(
"all"
,
length
);
emit
(
"Updater/downloading"
,
event
);
if
(
progress
!=
lastProgress
)
{
lastProgress
=
progress
;
event
=
Arguments
.
createMap
();
event
.
putInt
(
"progress"
,
progress
);
event
.
putInt
(
"current"
,
count
);
event
.
putInt
(
"all"
,
length
);
emit
(
"Updater/downloading"
,
event
);
}
if
(
numRead
<=
0
)
{
event
=
Arguments
.
createMap
();
event
.
putInt
(
"progress"
,
progress
);
...
...
@@ -107,7 +112,7 @@ public class Updater extends ReactContextBaseJavaModule {
return
;
}
getCurrentActivity
().
startActivity
(
i
);
android
.
os
.
Process
.
killProcess
(
android
.
os
.
Process
.
myPid
());
Process
.
killProcess
(
Process
.
myPid
());
promise
.
resolve
(
null
);
}
catch
(
MalformedURLException
e
)
{
promise
.
reject
(
"ERROR_UPDATE"
,
"invalid url: "
+
sUrl
);
...
...
src/native/Updater.js
浏览文件 @
f2e8bb59
...
...
@@ -5,6 +5,7 @@ const { Updater } = NativeModules;
/**
* @typedef {Object} UpdateEvent 下载事件
* @property {string} status 事件类型,downloading或downloaded
* @property {number} progress 下载进度,0到100的整数
* @property {number} current 已下载字节数
* @property {number} all 总字节数
...
...
@@ -15,39 +16,36 @@ const { Updater } = NativeModules;
* @param {UpdateEvent} event 下载事件
*/
/**
* @typedef {Object} CallbackHandle
*/
/**
* @member {Function} CallbackHandle~remove
*/
/**
*
* @param {UpdateCallback} cb 下载回调
* @return {CallbackHandle} 回调具柄,用以删除回调
*/
export
const
addUpdaterDownloadingCallback
=
(
cb
)
=>
{
return
DeviceEventEmitter
.
addListener
(
'Updater/downloading'
,
cb
);
};
/**
*
* @param {UpdateCallback} cb 下载回调
* @return {CallbackHandle} 回调具柄,用以删除回调
*/
export
const
addUpdaterDownloadedCallback
=
(
cb
)
=>
{
return
DeviceEventEmitter
.
addListener
(
'Updater/downloaded'
,
cb
);
};
/**
* 下载更新包并自动安装, 下载过程中会发送Updater/downloading事件,下载完成时会发送Updater/downloaded事件
* @param {string} url 更新地址
* @param {UpdateCallback} cb 下载回调
* @returns {Promise.<void>}
*/
export
const
update
=
async
(
url
)
=>
{
return
Updater
.
update
(
url
);
export
const
update
=
async
(
url
,
cb
)
=>
{
let
handle1
;
let
handle2
;
if
(
cb
)
{
handle1
=
DeviceEventEmitter
.
addListener
(
'Updater/downloading'
,
(
event
)
=>
{
cb
({
...
event
,
status
:
'downloading'
,
});
});
handle2
=
DeviceEventEmitter
.
addListener
(
'Updater/downloaded'
,
(
event
)
=>
{
cb
({
...
event
,
status
:
'downloaded'
,
});
});
}
await
Updater
.
update
(
url
);
if
(
handle1
)
{
handle1
.
remove
();
}
if
(
handle2
)
{
handle2
.
remove
();
}
};
/**
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论