2021-04-17 10:51:56 -05:00
|
|
|
#PlChat is a pleroma chat client
|
|
|
|
# Copyright (C) 2021 Knott Eye
|
|
|
|
#
|
|
|
|
# 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/>.
|
2021-04-15 15:16:38 -05:00
|
|
|
import os, time, platform
|
|
|
|
from ctypes import cdll, util
|
|
|
|
|
|
|
|
try:
|
|
|
|
if platform.system() == "Windows":
|
2021-04-17 10:40:06 -05:00
|
|
|
libc_path = "kernel32"
|
2021-04-15 15:16:38 -05:00
|
|
|
else:
|
|
|
|
libc_path = util.find_library("c")
|
|
|
|
libc = cdll.LoadLibrary(libc_path)
|
|
|
|
print("Loaded libc from "+libc_path)
|
|
|
|
except:
|
|
|
|
libc_path = None
|
|
|
|
libc = None
|
|
|
|
|
|
|
|
def posixsleep(t):
|
|
|
|
libc.usleep(int(t * 1000000))
|
|
|
|
|
|
|
|
def ntsleep(t):
|
|
|
|
libc.Sleep(int(t * 1000))
|
|
|
|
|
|
|
|
if libc_path == 'libc.so.6':
|
|
|
|
sleep = posixsleep
|
|
|
|
elif libc_path == 'kernel32':
|
|
|
|
sleep = ntsleep
|
2021-04-15 16:28:04 -05:00
|
|
|
elif libc_path == "libSystem.dylib":
|
|
|
|
sleep = posixsleep
|
2021-04-15 15:16:38 -05:00
|
|
|
else:
|
|
|
|
print("Couldn't figure out how to use native sleep calls with "+str(libc_path)+", event loop performance may suffer.")
|
|
|
|
sleep = time.sleep
|