mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-06-21 21:46:27 +02:00
Version 3.0.290
This commit is contained in:
parent
af3c20ea1c
commit
ad3cdbcadf
231 changed files with 14555 additions and 7798 deletions
|
@ -48,8 +48,8 @@ namespace TINK.Services.BluetoothLock
|
|||
switch (lockInfo.State )
|
||||
{
|
||||
case LockingState.Open:
|
||||
case LockingState.Disconnected:
|
||||
case LockingState.Unknown:
|
||||
case LockingState.UnknownDisconnected:
|
||||
case LockingState.UnknownFromHardwareError:
|
||||
// Open bikes are never disposable because as soon as a they are open they get booked.
|
||||
if (LocksInfo.FirstOrDefault(x => x.Id == lockInfo.Id) != null)
|
||||
{
|
||||
|
@ -64,8 +64,8 @@ namespace TINK.Services.BluetoothLock
|
|||
switch (lockInfo.State)
|
||||
{
|
||||
case LockingState.Open:
|
||||
case LockingState.Disconnected:
|
||||
case LockingState.Unknown:
|
||||
case LockingState.UnknownDisconnected:
|
||||
case LockingState.UnknownFromHardwareError:
|
||||
// Closed bikes are never reserved because as soon as they are open they get booked.
|
||||
if (LocksInfo.FirstOrDefault(x => x.Id == lockInfo.Id) != null)
|
||||
{
|
||||
|
@ -79,8 +79,8 @@ namespace TINK.Services.BluetoothLock
|
|||
case InUseStateEnum.Booked:
|
||||
switch (lockInfo.State)
|
||||
{
|
||||
case LockingState.Disconnected:
|
||||
case LockingState.Unknown:
|
||||
case LockingState.UnknownDisconnected:
|
||||
case LockingState.UnknownFromHardwareError:
|
||||
if (LocksInfo.FirstOrDefault(x => x.Id == lockInfo.Id) != null)
|
||||
{
|
||||
continue; // Lock was already added.
|
||||
|
@ -152,6 +152,6 @@ namespace TINK.Services.BluetoothLock
|
|||
/// <summary> Disconnects lock.</summary>
|
||||
/// <param name="bikeId"> Id of lock to disconnect.</param>
|
||||
/// <param name="bikeGuid"> Guid of lock to disconnect.</param>
|
||||
public async Task<LockingState> DisconnectAsync(int bikeId, Guid bikeGuid) => await Task.FromResult(LockingState.Disconnected);
|
||||
public async Task<LockingState> DisconnectAsync(int bikeId, Guid bikeGuid) => await Task.FromResult(LockingState.UnknownDisconnected);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,6 +60,6 @@ namespace TINK.Services.BluetoothLock
|
|||
/// <summary> Disconnects lock.</summary>
|
||||
/// <param name="bikeId"> Id of lock to disconnect.</param>
|
||||
/// <param name="bikeGuid"> Guid of lock to disconnect.</param>
|
||||
public async Task<LockingState> DisconnectAsync(int bikeId, Guid bikeGuid) => await Task.FromResult(LockingState.Disconnected);
|
||||
public async Task<LockingState> DisconnectAsync(int bikeId, Guid bikeGuid) => await Task.FromResult(LockingState.UnknownDisconnected);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,41 +0,0 @@
|
|||
using Plugin.BLE.Abstractions.Contracts;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TINK.Services.BluetoothLock
|
||||
{
|
||||
public static class StateChecker
|
||||
{
|
||||
/// <summary>
|
||||
/// Get current bluetooth state
|
||||
/// </summary>
|
||||
/// <remarks>See https://github.com/xabre/xamarin-bluetooth-le/issues/112#issuecomment-380994887.</remarks>
|
||||
/// <param name="ble">Crossplatform bluetooth implementation object</param>
|
||||
/// <returns>BluetoothState</returns>
|
||||
public static Task<BluetoothState> GetBluetoothState(this IBluetoothLE ble)
|
||||
{
|
||||
var tcs = new TaskCompletionSource<BluetoothState>();
|
||||
|
||||
if (ble.State != BluetoothState.Unknown)
|
||||
{
|
||||
// If we can detect state out of box just returning in
|
||||
tcs.SetResult(ble.State);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Otherwise let's setup dynamic event handler and wait for first state update
|
||||
EventHandler<Plugin.BLE.Abstractions.EventArgs.BluetoothStateChangedArgs> handler = null;
|
||||
handler = (o, e) =>
|
||||
{
|
||||
ble.StateChanged -= handler;
|
||||
// and return it as our state
|
||||
// we can have an 'Unknown' check here, but in normal situation it should never occur
|
||||
tcs.SetResult(e.NewState);
|
||||
};
|
||||
ble.StateChanged += handler;
|
||||
}
|
||||
|
||||
return tcs.Task;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue