2020-07-30 01:23:48 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
|
|
|
|
|
|
|
Initialize singleton deadsimplekv pseudo globals
|
|
|
|
"""
|
2022-02-11 06:56:19 +00:00
|
|
|
import queue
|
2020-07-30 01:23:48 +00:00
|
|
|
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
|
|
|
from onionrutils import epoch
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from deadsimplekv import DeadSimpleKV
|
|
|
|
"""
|
2022-01-20 00:47:28 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-07-30 01:23:48 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def setup_kv(shared_vars: 'DeadSimpleKV'):
|
2020-11-21 05:31:19 +00:00
|
|
|
"""Init initial pseudo-globals."""
|
2020-07-30 01:23:48 +00:00
|
|
|
shared_vars.put('shutdown', False)
|
|
|
|
shared_vars.put('generating_blocks', [])
|
|
|
|
shared_vars.put('startTime', epoch.get_epoch())
|
|
|
|
shared_vars.put('isOnline', True)
|