aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/kpref/KPrefSingleDelegate.kt
blob: ae1f855f06107a2cfee1ad0bf09357d09daff630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * Copyright 2018 Allan Wang
 *
 * 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 ca.allanwang.kau.kpref

import ca.allanwang.kau.kotlin.ILazyResettable

/**
 * Created by Allan Wang on 2017-06-07.
 *
 * Singular KPref Delegate for booleans
 * When the shared pref is not initialized, it will return [true] then set the pref to [false]
 * All subsequent retrievals will be [false]
 * This is useful for one time toggles such as showcasing items
 */
interface KPrefSingleDelegate : ILazyResettable<Boolean>

class KPrefSingleDelegateAndroid internal constructor(
    private val key: String,
    private val pref: KPref
) : KPrefSingleDelegate {

    @Volatile
    private var _value: Boolean? = null
    private val lock = this

    init {
        if (pref.prefMap.containsKey(key))
            throw KPrefException("$key is already used elsewhere in preference ${pref.PREFERENCE_NAME}")
        pref.prefMap[key] = this
    }

    override fun invalidate() {
        _value = null
    }

    override val value: Boolean
        get() {
            val _v1 = _value
            if (_v1 != null) {
                return _v1
            }
            return synchronized(lock) {
                val _v2 = _value
                if (_v2 != null) {
                    _v2
                } else {
                    _value = pref.sp.getBoolean(key, true)
                    if (_value!!) {
                        pref.sp.edit().putBoolean(key, false).apply()
                        _value = false
                        true
                    } else false
                }
            }
        }

    override fun isInitialized(): Boolean = _value != null

    override fun toString(): String = if (isInitialized()) value.toString() else "Lazy kPref $key not initialized yet."
}

class KPrefSingleDelegateInMemory internal constructor(
    private val key: String,
    private val pref: KPref
) : KPrefSingleDelegate {
    @Volatile
    private var _value: Boolean? = null
    private val lock = this

    init {
        if (pref.prefMap.containsKey(key))
            throw KPrefException("$key is already used elsewhere in preference ${pref.PREFERENCE_NAME}")
        pref.prefMap[key] = this
    }

    override fun invalidate() {
        // No op
    }

    override val value: Boolean
        get() {
            val _v1 = _value
            if (_v1 != null) {
                return _v1
            }
            return synchronized(lock) {
                val _v2 = _value
                if (_v2 != null) {
                    _v2
                } else {
                    _value = false
                    true
                }
            }
        }

    override fun isInitialized(): Boolean = _value != null

    override fun toString(): String = if (isInitialized()) value.toString() else "Lazy kPref $key not initialized yet."
}