Convert ScreenshotHolder to an interface for testing purpose.
This commit is contained in:
parent
a2b02fbf9d
commit
fa37224109
2 changed files with 51 additions and 23 deletions
|
|
@ -0,0 +1,46 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2022 New Vector Ltd
|
||||||
|
*
|
||||||
|
* 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 io.element.android.features.rageshake.screenshot
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.graphics.Bitmap
|
||||||
|
import com.squareup.anvil.annotations.ContributesBinding
|
||||||
|
import io.element.android.libraries.androidutils.bitmap.writeBitmap
|
||||||
|
import io.element.android.libraries.androidutils.file.safeDelete
|
||||||
|
import io.element.android.libraries.di.AppScope
|
||||||
|
import io.element.android.libraries.di.ApplicationContext
|
||||||
|
import io.element.android.libraries.di.SingleIn
|
||||||
|
import java.io.File
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
@SingleIn(AppScope::class)
|
||||||
|
@ContributesBinding(AppScope::class)
|
||||||
|
class DefaultScreenshotHolder @Inject constructor(
|
||||||
|
@ApplicationContext private val context: Context,
|
||||||
|
) : ScreenshotHolder {
|
||||||
|
private val file = File(context.filesDir, "screenshot.png")
|
||||||
|
|
||||||
|
override fun writeBitmap(data: Bitmap) {
|
||||||
|
file.writeBitmap(data, Bitmap.CompressFormat.PNG, 85)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getFile() = file.takeIf { it.exists() && it.length() > 0 }
|
||||||
|
|
||||||
|
override fun reset() {
|
||||||
|
file.safeDelete()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2022 New Vector Ltd
|
* Copyright (c) 2023 New Vector Ltd
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -16,29 +16,11 @@
|
||||||
|
|
||||||
package io.element.android.features.rageshake.screenshot
|
package io.element.android.features.rageshake.screenshot
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
||||||
import io.element.android.libraries.androidutils.bitmap.writeBitmap
|
|
||||||
import io.element.android.libraries.androidutils.file.safeDelete
|
|
||||||
import io.element.android.libraries.di.AppScope
|
|
||||||
import io.element.android.libraries.di.ApplicationContext
|
|
||||||
import io.element.android.libraries.di.SingleIn
|
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import javax.inject.Inject
|
|
||||||
|
|
||||||
@SingleIn(AppScope::class)
|
interface ScreenshotHolder {
|
||||||
class ScreenshotHolder @Inject constructor(
|
fun writeBitmap(data: Bitmap)
|
||||||
@ApplicationContext private val context: Context,
|
fun getFile(): File?
|
||||||
) {
|
fun reset()
|
||||||
private val file = File(context.filesDir, "screenshot.png")
|
|
||||||
|
|
||||||
fun writeBitmap(data: Bitmap) {
|
|
||||||
file.writeBitmap(data, Bitmap.CompressFormat.PNG, 85)
|
|
||||||
}
|
|
||||||
|
|
||||||
fun getFile() = file.takeIf { it.exists() && it.length() > 0 }
|
|
||||||
|
|
||||||
fun reset() {
|
|
||||||
file.safeDelete()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue