Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
eaf4d806
Commit
eaf4d806
authored
Jan 27, 2021
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Also download to external storage
parent
2a5f5b1b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
51 additions
and
30 deletions
+51
-30
BaseDownloader.kt
...java/com/topjohnwu/magisk/core/download/BaseDownloader.kt
+1
-7
ManagerHandler.kt
...java/com/topjohnwu/magisk/core/download/ManagerHandler.kt
+44
-16
ModuleProcessor.kt
...ava/com/topjohnwu/magisk/core/download/ModuleProcessor.kt
+3
-5
Subject.kt
...c/main/java/com/topjohnwu/magisk/core/download/Subject.kt
+1
-0
XJava.kt
app/src/main/java/com/topjohnwu/magisk/ktx/XJava.kt
+1
-1
HomeViewModel.kt
...c/main/java/com/topjohnwu/magisk/ui/home/HomeViewModel.kt
+1
-1
No files found.
app/src/main/java/com/topjohnwu/magisk/core/download/BaseDownloader.kt
View file @
eaf4d806
...
...
@@ -8,10 +8,8 @@ import androidx.lifecycle.MutableLiveData
import
com.topjohnwu.magisk.R
import
com.topjohnwu.magisk.core.ForegroundTracker
import
com.topjohnwu.magisk.core.base.BaseService
import
com.topjohnwu.magisk.core.utils.MediaStoreUtils.outputStream
import
com.topjohnwu.magisk.core.utils.ProgressInputStream
import
com.topjohnwu.magisk.data.repository.NetworkService
import
com.topjohnwu.magisk.ktx.withStreams
import
com.topjohnwu.magisk.view.Notifications
import
kotlinx.coroutines.CoroutineScope
import
kotlinx.coroutines.Dispatchers
...
...
@@ -72,11 +70,7 @@ abstract class BaseDownloader : BaseService(), KoinComponent {
when
(
this
)
{
is
Subject
.
Module
->
// Download and process on-the-fly
stream
.
toModule
(
file
,
service
.
fetchInstaller
().
byteStream
())
else
->
{
withStreams
(
stream
,
file
.
outputStream
())
{
it
,
out
->
it
.
copyTo
(
out
)
}
if
(
this
is
Subject
.
Manager
)
handleAPK
(
this
)
}
is
Subject
.
Manager
->
handleAPK
(
this
,
stream
)
}
val
newId
=
notifyFinish
(
this
)
if
(
ForegroundTracker
.
hasForeground
)
...
...
app/src/main/java/com/topjohnwu/magisk/core/download/ManagerHandler.kt
View file @
eaf4d806
...
...
@@ -7,9 +7,13 @@ import com.topjohnwu.magisk.R
import
com.topjohnwu.magisk.core.Info
import
com.topjohnwu.magisk.core.isRunningAsStub
import
com.topjohnwu.magisk.core.tasks.HideAPK
import
com.topjohnwu.magisk.core.utils.MediaStoreUtils.outputStream
import
com.topjohnwu.magisk.ktx.relaunchApp
import
com.topjohnwu.magisk.ktx.withStreams
import
com.topjohnwu.magisk.ktx.writeTo
import
java.io.File
import
java.io.InputStream
import
java.io.OutputStream
private
fun
Context
.
patch
(
apk
:
File
)
{
val
patched
=
File
(
apk
.
parent
,
"patched.apk"
)
...
...
@@ -26,22 +30,46 @@ private fun BaseDownloader.notifyHide(id: Int) {
}
}
suspend
fun
BaseDownloader
.
handleAPK
(
subject
:
Subject
.
Manager
)
{
if
(!
isRunningAsStub
)
return
val
apk
=
subject
.
file
.
toFile
()
val
id
=
subject
.
notifyID
()
// Move to upgrade location
apk
.
copyTo
(
DynAPK
.
update
(
this
),
overwrite
=
true
)
apk
.
delete
()
if
(
Info
.
stub
!!
.
version
<
subject
.
stub
.
versionCode
)
{
notifyHide
(
id
)
// Also upgrade stub
service
.
fetchFile
(
subject
.
stub
.
link
).
byteStream
().
writeTo
(
apk
)
patch
(
apk
)
private
class
DupOutputStream
(
private
val
o1
:
OutputStream
,
private
val
o2
:
OutputStream
)
:
OutputStream
()
{
override
fun
write
(
b
:
Int
)
{
o1
.
write
(
b
)
o2
.
write
(
b
)
}
override
fun
write
(
b
:
ByteArray
?,
off
:
Int
,
len
:
Int
)
{
o1
.
write
(
b
,
off
,
len
)
o2
.
write
(
b
,
off
,
len
)
}
override
fun
close
()
{
o1
.
close
()
o2
.
close
()
}
}
suspend
fun
BaseDownloader
.
handleAPK
(
subject
:
Subject
.
Manager
,
stream
:
InputStream
)
{
fun
write
(
output
:
OutputStream
)
{
val
ext
=
subject
.
externalFile
.
outputStream
()
val
o
=
DupOutputStream
(
ext
,
output
)
withStreams
(
stream
,
o
)
{
src
,
out
->
src
.
copyTo
(
out
)
}
}
if
(
isRunningAsStub
)
{
val
apk
=
subject
.
file
.
toFile
()
val
id
=
subject
.
notifyID
()
write
(
DynAPK
.
update
(
this
).
outputStream
())
if
(
Info
.
stub
!!
.
version
<
subject
.
stub
.
versionCode
)
{
// Also upgrade stub
notifyHide
(
id
)
service
.
fetchFile
(
subject
.
stub
.
link
).
byteStream
().
writeTo
(
apk
)
patch
(
apk
)
}
else
{
// Simply relaunch the app
stopSelf
()
relaunchApp
(
this
)
}
}
else
{
// Simply relaunch the app
stopSelf
()
relaunchApp
(
this
)
write
(
subject
.
file
.
outputStream
())
}
}
app/src/main/java/com/topjohnwu/magisk/core/download/ModuleProcessor.kt
View file @
eaf4d806
package
com.topjohnwu.magisk.core.download
import
android.net.Uri
import
com.topjohnwu.magisk.ktx.withStreams
import
com.topjohnwu.magisk.core.utils.MediaStoreUtils.outputStream
import
com.topjohnwu.magisk.ktx.forEach
import
com.topjohnwu.magisk.ktx.withStreams
import
java.io.InputStream
import
java.util.zip.ZipEntry
import
java.util.zip.ZipInputStream
...
...
@@ -25,8 +26,7 @@ fun InputStream.toModule(file: Uri, installer: InputStream) {
zout
.
write
(
"#MAGISK\n"
.
toByteArray
(
charset
(
"UTF-8"
)))
var
off
=
-
1
var
entry
:
ZipEntry
?
=
zin
.
nextEntry
while
(
entry
!=
null
)
{
zin
.
forEach
{
entry
->
if
(
off
<
0
)
{
off
=
entry
.
name
.
indexOf
(
'/'
)
+
1
}
...
...
@@ -38,8 +38,6 @@ fun InputStream.toModule(file: Uri, installer: InputStream) {
zin
.
copyTo
(
zout
)
}
}
entry
=
zin
.
nextEntry
}
}
}
app/src/main/java/com/topjohnwu/magisk/core/download/Subject.kt
View file @
eaf4d806
...
...
@@ -51,6 +51,7 @@ sealed class Subject : Parcelable {
cachedFile
(
"manager.apk"
)
}
val
externalFile
get
()
=
MediaStoreUtils
.
getFile
(
"$title.apk"
).
uri
}
}
...
...
app/src/main/java/com/topjohnwu/magisk/ktx/XJava.kt
View file @
eaf4d806
...
...
@@ -11,7 +11,7 @@ import java.util.*
import
java.util.zip.ZipEntry
import
java.util.zip.ZipInputStream
fun
ZipInputStream
.
forEach
(
callback
:
(
ZipEntry
)
->
Unit
)
{
inline
fun
ZipInputStream
.
forEach
(
callback
:
(
ZipEntry
)
->
Unit
)
{
var
entry
:
ZipEntry
?
=
nextEntry
while
(
entry
!=
null
)
{
callback
(
entry
)
...
...
app/src/main/java/com/topjohnwu/magisk/ui/home/HomeViewModel.kt
View file @
eaf4d806
...
...
@@ -114,7 +114,7 @@ class HomeViewModel(
fun
onDeletePressed
()
=
UninstallDialog
().
publish
()
fun
onManagerPressed
()
=
when
(
state
)
{
State
.
LOADED
->
ManagerInstallDialog
().
publish
()
State
.
LOADED
->
withExternalRW
{
ManagerInstallDialog
().
publish
()
}
State
.
LOADING
->
SnackbarEvent
(
R
.
string
.
loading
).
publish
()
else
->
SnackbarEvent
(
R
.
string
.
no_connection
).
publish
()
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment