v3.6.6
parent
15978cd2b6
commit
a7d3f149a1
@ -0,0 +1,4 @@ |
||||
package com.arialyy.aria.core.command.normal; |
||||
|
||||
public class ReStartCmd { |
||||
} |
@ -0,0 +1,4 @@ |
||||
package com.arialyy.aria.core.common.ftp; |
||||
|
||||
public class FtpInterceptHandler { |
||||
} |
@ -0,0 +1,49 @@ |
||||
/* |
||||
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
||||
* |
||||
* 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. |
||||
*/ |
||||
package com.arialyy.aria.core.inf; |
||||
|
||||
import com.arialyy.aria.core.upload.UploadEntity; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* FTP文件上传拦截器,如果远端已有同名文件,可使用该拦截器控制覆盖文件或修改该文件上传到服务器端端文件名 |
||||
*/ |
||||
public interface IFtpUploadInterceptor { |
||||
|
||||
/** |
||||
* 如果ftp服务器端已经有同名文件,控制是否覆盖远端的同名文件; |
||||
* 如果你不希望覆盖远端文件,可以使用{@link #resetFileName(UploadEntity, List)} |
||||
* 如果使用者同时实现{@link #resetFileName(UploadEntity, List)}和{@link #coverServerFile(UploadEntity, |
||||
* List)},将优先使用{@link #resetFileName(UploadEntity, List)} |
||||
* |
||||
* @param entity 上传信息实体 |
||||
* @param fileList ftp服务器端remotePath下的文件列表 |
||||
* @return {@code true} 如果ftp服务器端已经有同名文件,覆盖服务器端的同名文件 |
||||
*/ |
||||
boolean coverServerFile(UploadEntity entity, List<String> fileList); |
||||
|
||||
/** |
||||
* 如果ftp服务器端已经有同名文件,修改该文件上传到远端的文件名,该操作不会修改本地文件名 |
||||
* 如果你希望覆盖远端的同名文件,可以使用{@link #coverServerFile(UploadEntity, List)} |
||||
* 如果使用者同时实现{@link #resetFileName(UploadEntity, List)}和{@link #coverServerFile(UploadEntity, |
||||
* List)},将优先使用{@link #resetFileName(UploadEntity, List)} |
||||
* |
||||
* @param entity 上传信息实体 |
||||
* @param fileList ftp服务器端remotePath下的文件列表 |
||||
* @return 该文件上传到远端的新的文件名 |
||||
*/ |
||||
String resetFileName(UploadEntity entity, List<String> fileList); |
||||
} |
@ -0,0 +1,32 @@ |
||||
/* |
||||
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
||||
* |
||||
* 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. |
||||
*/ |
||||
package com.arialyy.aria.exception; |
||||
|
||||
/** |
||||
* Created by lyy on 2017/1/18. |
||||
* Aria 文件异常 |
||||
*/ |
||||
public class FileNotFoundException extends BaseException { |
||||
private static final String ARIA_FILE_EXCEPTION = "Aria File Exception:"; |
||||
|
||||
public FileNotFoundException(String tag, String detailMessage) { |
||||
super(tag, String.format("%s%s", ARIA_FILE_EXCEPTION, detailMessage)); |
||||
} |
||||
|
||||
public FileNotFoundException(String tag, String message, Exception e){ |
||||
super(tag, message, e); |
||||
} |
||||
} |
@ -1,75 +1,166 @@ |
||||
//package com.arialyy.simple.core.download |
||||
// |
||||
//import android.os.Bundle |
||||
//import android.os.Environment |
||||
//import android.support.v7.app.AppCompatActivity |
||||
//import android.util.Log |
||||
//import android.view.View |
||||
//import com.arialyy.annotations.Download |
||||
//import com.arialyy.aria.core.Aria |
||||
//import com.arialyy.aria.core.download.DownloadTask |
||||
//import com.arialyy.simple.R |
||||
//import com.arialyy.simple.base.BaseActivity |
||||
// |
||||
///** |
||||
// * Created by lyy on 2017/10/23. |
||||
// */ |
||||
//class KotlinDownloadActivity : AppCompatActivity() { |
||||
// |
||||
// private val DOWNLOAD_URL = "http://static.gaoshouyou.com/d/22/94/822260b849944492caadd2983f9bb624.apk" |
||||
// |
||||
// private val TAG = "KotlinDownloadActivity"; |
||||
// |
||||
// override fun onCreate(savedInstanceState: Bundle?) { |
||||
// super.onCreate(savedInstanceState) |
||||
// setContentView(setLayoutId()) |
||||
// } |
||||
// |
||||
// fun setLayoutId(): Int { |
||||
// return R.layout.activity_single |
||||
// } |
||||
// |
||||
// fun init(savedInstanceState: Bundle?) { |
||||
// title = "单任务下载" |
||||
//// val target = Aria.download(this).load(DOWNLOAD_URL) |
||||
//// binding.progress = target.getPercent() |
||||
//// if (target.getTaskState() == IEntity.STATE_STOP) { |
||||
//// mStart.setText("恢复") |
||||
//// mStart.setTextColor(resources.getColor(android.R.color.holo_blue_light)) |
||||
//// setBtState(true) |
||||
//// } else if (target.isDownloading()) { |
||||
//// setBtState(false) |
||||
//// } |
||||
//// binding.fileSize = target.getConvertFileSize() |
||||
// Aria.get(this).downloadConfig.maxTaskNum = 2 |
||||
// Aria.download(this).register() |
||||
// } |
||||
// |
||||
// @Download.onTaskRunning |
||||
// protected fun running(task: DownloadTask) { |
||||
// Log.d(TAG, task.percent.toString() + "") |
||||
//// val len = task.fileSize |
||||
//// if (len == 0L) { |
||||
//// binding.progress = 0 |
||||
//// } else { |
||||
//// binding.progress = task.percent |
||||
//// } |
||||
//// binding.speed = task.convertSpeed |
||||
// } |
||||
// |
||||
// fun onClick(view: View) { |
||||
// when (view.id) { |
||||
// R.id.start -> startD() |
||||
// R.id.stop -> Aria.download(this).load(DOWNLOAD_URL).stop() |
||||
// R.id.cancel -> Aria.download(this).load(DOWNLOAD_URL).cancel() |
||||
// } |
||||
// } |
||||
// |
||||
// private fun startD() { |
||||
// Aria.download(this) |
||||
// .load(DOWNLOAD_URL) |
||||
// .addHeader("groupHash", "value") |
||||
// .setDownloadPath(Environment.getExternalStorageDirectory().path + "/hhhhhhhh.apk") |
||||
// .start() |
||||
// } |
||||
//} |
||||
package com.arialyy.simple.core.download |
||||
|
||||
import android.os.Bundle |
||||
import android.os.Environment |
||||
import android.util.Log |
||||
import android.view.View |
||||
import android.widget.Button |
||||
import android.widget.Toast |
||||
import com.arialyy.annotations.Download |
||||
import com.arialyy.aria.core.Aria |
||||
import com.arialyy.aria.core.download.DownloadTarget |
||||
import com.arialyy.aria.core.download.DownloadTask |
||||
import com.arialyy.aria.core.inf.IEntity |
||||
import com.arialyy.frame.util.show.T |
||||
import com.arialyy.simple.R |
||||
import com.arialyy.simple.base.BaseActivity |
||||
import com.arialyy.simple.databinding.ActivitySingleBinding |
||||
|
||||
/** |
||||
* Created by lyy on 2017/10/23. |
||||
*/ |
||||
class KotlinDownloadActivity : BaseActivity<ActivitySingleBinding>() { |
||||
|
||||
private val DOWNLOAD_URL = |
||||
"http://static.gaoshouyou.com/d/22/94/822260b849944492caadd2983f9bb624.apk" |
||||
|
||||
private lateinit var mStart: Button |
||||
private lateinit var mStop: Button |
||||
private lateinit var mCancel: Button |
||||
private lateinit var target: DownloadTarget |
||||
|
||||
override fun setLayoutId(): Int { |
||||
return R.layout.activity_single |
||||
} |
||||
|
||||
override fun init(savedInstanceState: Bundle?) { |
||||
title = "kotlin测试" |
||||
Aria.get(this) |
||||
.downloadConfig.maxTaskNum = 2 |
||||
Aria.download(this) |
||||
.register() |
||||
mStart = findViewById(R.id.start) |
||||
mStop = findViewById(R.id.stop) |
||||
mCancel = findViewById(R.id.cancel) |
||||
mStop.visibility = View.GONE |
||||
|
||||
target = Aria.download(this) |
||||
.load(DOWNLOAD_URL) |
||||
binding.progress = target.percent |
||||
if (target.taskState == IEntity.STATE_STOP) { |
||||
mStart.text = "恢复" |
||||
} else if (target.isRunning) { |
||||
mStart.text = "停止" |
||||
} |
||||
binding.fileSize = target.convertFileSize |
||||
} |
||||
|
||||
/** |
||||
* 注解方法不能添加internal修饰符,否则会出现e: [kapt] An exception occurred: java.lang.IllegalArgumentException: index 1 for '$a' not in range (received 0 arguments)错误 |
||||
*/ |
||||
@Download.onTaskRunning |
||||
fun running(task: DownloadTask) { |
||||
Log.d(TAG, task.percent.toString()) |
||||
val len = task.fileSize |
||||
if (len == 0L) { |
||||
binding.progress = 0 |
||||
} else { |
||||
binding.progress = task.percent |
||||
} |
||||
binding.speed = task.convertSpeed |
||||
} |
||||
|
||||
@Download.onWait |
||||
fun onWait(task: DownloadTask) { |
||||
if (task.key == DOWNLOAD_URL) { |
||||
Log.d(TAG, "wait ==> " + task.downloadEntity.fileName) |
||||
} |
||||
} |
||||
|
||||
@Download.onPre |
||||
fun onPre(task: DownloadTask) { |
||||
if (task.key == DOWNLOAD_URL) { |
||||
mStart.text = "停止" |
||||
} |
||||
} |
||||
|
||||
@Download.onTaskStart |
||||
fun taskStart(task: DownloadTask) { |
||||
if (task.key == DOWNLOAD_URL) { |
||||
binding.fileSize = task.convertFileSize |
||||
} |
||||
} |
||||
|
||||
@Download.onTaskComplete |
||||
fun complete(task: DownloadTask) { |
||||
Log.d(TAG, "完成") |
||||
} |
||||
|
||||
@Download.onTaskResume |
||||
fun taskResume(task: DownloadTask) { |
||||
if (task.key == DOWNLOAD_URL) { |
||||
mStart.text = "停止" |
||||
} |
||||
} |
||||
|
||||
@Download.onTaskStop |
||||
fun taskStop(task: DownloadTask) { |
||||
if (task.key == DOWNLOAD_URL) { |
||||
mStart.text = "恢复" |
||||
binding.speed = "" |
||||
} |
||||
} |
||||
|
||||
@Download.onTaskCancel |
||||
fun taskCancel(task: DownloadTask) { |
||||
if (task.key == DOWNLOAD_URL) { |
||||
binding.progress = 0 |
||||
Toast.makeText(this@KotlinDownloadActivity, "取消下载", Toast.LENGTH_SHORT) |
||||
.show() |
||||
mStart.text = "开始" |
||||
binding.speed = "" |
||||
Log.d(TAG, "cancel") |
||||
} |
||||
} |
||||
|
||||
@Download.onTaskFail |
||||
fun taskFail(task: DownloadTask) { |
||||
if (task.key == DOWNLOAD_URL) { |
||||
Toast.makeText(this@KotlinDownloadActivity, "下载失败", Toast.LENGTH_SHORT) |
||||
.show() |
||||
mStart.text = "开始" |
||||
} |
||||
} |
||||
|
||||
@Download.onNoSupportBreakPoint |
||||
fun onNoSupportBreakPoint(task: DownloadTask) { |
||||
Log.d(TAG, "该下载链接不支持断点") |
||||
if (task.key == DOWNLOAD_URL) { |
||||
T.showShort(this@KotlinDownloadActivity, "该下载链接不支持断点") |
||||
} |
||||
} |
||||
|
||||
fun onClick(view: View) { |
||||
when (view.id) { |
||||
R.id.start -> { |
||||
if (target.isRunning) { |
||||
Aria.download(this) |
||||
.load(DOWNLOAD_URL) |
||||
.stop() |
||||
} else { |
||||
startD() |
||||
} |
||||
} |
||||
R.id.stop -> Aria.download(this).load(DOWNLOAD_URL).stop() |
||||
R.id.cancel -> Aria.download(this).load(DOWNLOAD_URL).cancel() |
||||
} |
||||
} |
||||
|
||||
private fun startD() { |
||||
Aria.download(this) |
||||
.load(DOWNLOAD_URL) |
||||
.addHeader("groupHash", "value") |
||||
.setFilePath(Environment.getExternalStorageDirectory().path + "/kotlin.apk") |
||||
.start() |
||||
} |
||||
} |
@ -0,0 +1,4 @@ |
||||
<vector android:height="24dp" android:viewportHeight="1024" |
||||
android:viewportWidth="1024" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<path android:fillColor="@color/icon_color" android:pathData="M863.1,914.43a116.03,116.03 0,0 1,-166.4 8.32L419.9,665.6q-2.18,-1.79 -4.29,-3.9L633.6,537.98l221.31,205.63a123.01,123.01 0,0 1,8.19 170.82zM381.82,280.83v-23.49A128,128 0,0 0,255.62 128a128,128 0,0 0,-126.21 129.34L129.41,424.32zM128,822.02v7.23A129.22,129.22 0,0 0,255.62 960a129.22,129.22 0,0 0,127.62 -130.75L383.23,677.25zM881.22,196.35a116.54,116.54 0,0 0,-160.38 -47.17l-587.52,333.44v276.48l701.82,-398.34a122.5,122.5 0,0 0,46.08 -164.42z"/> |
||||
</vector> |
Loading…
Reference in new issue