mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	* chore: log hash starting * chore: android - bump the min worker delay * remove local sync only task and always enqueue background workers --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			266 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			266 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
// Autogenerated from Pigeon (v26.0.0), do not edit directly.
 | 
						|
// See also: https://pub.dev/packages/pigeon
 | 
						|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import, no_leading_underscores_for_local_identifiers
 | 
						|
 | 
						|
import 'dart:async';
 | 
						|
import 'dart:typed_data' show Float64List, Int32List, Int64List, Uint8List;
 | 
						|
 | 
						|
import 'package:flutter/foundation.dart' show ReadBuffer, WriteBuffer;
 | 
						|
import 'package:flutter/services.dart';
 | 
						|
 | 
						|
PlatformException _createConnectionError(String channelName) {
 | 
						|
  return PlatformException(
 | 
						|
    code: 'channel-error',
 | 
						|
    message: 'Unable to establish connection on channel: "$channelName".',
 | 
						|
  );
 | 
						|
}
 | 
						|
 | 
						|
List<Object?> wrapResponse({Object? result, PlatformException? error, bool empty = false}) {
 | 
						|
  if (empty) {
 | 
						|
    return <Object?>[];
 | 
						|
  }
 | 
						|
  if (error == null) {
 | 
						|
    return <Object?>[result];
 | 
						|
  }
 | 
						|
  return <Object?>[error.code, error.message, error.details];
 | 
						|
}
 | 
						|
 | 
						|
class _PigeonCodec extends StandardMessageCodec {
 | 
						|
  const _PigeonCodec();
 | 
						|
  @override
 | 
						|
  void writeValue(WriteBuffer buffer, Object? value) {
 | 
						|
    if (value is int) {
 | 
						|
      buffer.putUint8(4);
 | 
						|
      buffer.putInt64(value);
 | 
						|
    } else {
 | 
						|
      super.writeValue(buffer, value);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  @override
 | 
						|
  Object? readValueOfType(int type, ReadBuffer buffer) {
 | 
						|
    switch (type) {
 | 
						|
      default:
 | 
						|
        return super.readValueOfType(type, buffer);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
class BackgroundWorkerFgHostApi {
 | 
						|
  /// Constructor for [BackgroundWorkerFgHostApi].  The [binaryMessenger] named argument is
 | 
						|
  /// available for dependency injection.  If it is left null, the default
 | 
						|
  /// BinaryMessenger will be used which routes to the host platform.
 | 
						|
  BackgroundWorkerFgHostApi({BinaryMessenger? binaryMessenger, String messageChannelSuffix = ''})
 | 
						|
    : pigeonVar_binaryMessenger = binaryMessenger,
 | 
						|
      pigeonVar_messageChannelSuffix = messageChannelSuffix.isNotEmpty ? '.$messageChannelSuffix' : '';
 | 
						|
  final BinaryMessenger? pigeonVar_binaryMessenger;
 | 
						|
 | 
						|
  static const MessageCodec<Object?> pigeonChannelCodec = _PigeonCodec();
 | 
						|
 | 
						|
  final String pigeonVar_messageChannelSuffix;
 | 
						|
 | 
						|
  Future<void> enable() async {
 | 
						|
    final String pigeonVar_channelName =
 | 
						|
        'dev.flutter.pigeon.immich_mobile.BackgroundWorkerFgHostApi.enable$pigeonVar_messageChannelSuffix';
 | 
						|
    final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
 | 
						|
      pigeonVar_channelName,
 | 
						|
      pigeonChannelCodec,
 | 
						|
      binaryMessenger: pigeonVar_binaryMessenger,
 | 
						|
    );
 | 
						|
    final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(null);
 | 
						|
    final List<Object?>? pigeonVar_replyList = await pigeonVar_sendFuture as List<Object?>?;
 | 
						|
    if (pigeonVar_replyList == null) {
 | 
						|
      throw _createConnectionError(pigeonVar_channelName);
 | 
						|
    } else if (pigeonVar_replyList.length > 1) {
 | 
						|
      throw PlatformException(
 | 
						|
        code: pigeonVar_replyList[0]! as String,
 | 
						|
        message: pigeonVar_replyList[1] as String?,
 | 
						|
        details: pigeonVar_replyList[2],
 | 
						|
      );
 | 
						|
    } else {
 | 
						|
      return;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  Future<void> disable() async {
 | 
						|
    final String pigeonVar_channelName =
 | 
						|
        'dev.flutter.pigeon.immich_mobile.BackgroundWorkerFgHostApi.disable$pigeonVar_messageChannelSuffix';
 | 
						|
    final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
 | 
						|
      pigeonVar_channelName,
 | 
						|
      pigeonChannelCodec,
 | 
						|
      binaryMessenger: pigeonVar_binaryMessenger,
 | 
						|
    );
 | 
						|
    final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(null);
 | 
						|
    final List<Object?>? pigeonVar_replyList = await pigeonVar_sendFuture as List<Object?>?;
 | 
						|
    if (pigeonVar_replyList == null) {
 | 
						|
      throw _createConnectionError(pigeonVar_channelName);
 | 
						|
    } else if (pigeonVar_replyList.length > 1) {
 | 
						|
      throw PlatformException(
 | 
						|
        code: pigeonVar_replyList[0]! as String,
 | 
						|
        message: pigeonVar_replyList[1] as String?,
 | 
						|
        details: pigeonVar_replyList[2],
 | 
						|
      );
 | 
						|
    } else {
 | 
						|
      return;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
class BackgroundWorkerBgHostApi {
 | 
						|
  /// Constructor for [BackgroundWorkerBgHostApi].  The [binaryMessenger] named argument is
 | 
						|
  /// available for dependency injection.  If it is left null, the default
 | 
						|
  /// BinaryMessenger will be used which routes to the host platform.
 | 
						|
  BackgroundWorkerBgHostApi({BinaryMessenger? binaryMessenger, String messageChannelSuffix = ''})
 | 
						|
    : pigeonVar_binaryMessenger = binaryMessenger,
 | 
						|
      pigeonVar_messageChannelSuffix = messageChannelSuffix.isNotEmpty ? '.$messageChannelSuffix' : '';
 | 
						|
  final BinaryMessenger? pigeonVar_binaryMessenger;
 | 
						|
 | 
						|
  static const MessageCodec<Object?> pigeonChannelCodec = _PigeonCodec();
 | 
						|
 | 
						|
  final String pigeonVar_messageChannelSuffix;
 | 
						|
 | 
						|
  Future<void> onInitialized() async {
 | 
						|
    final String pigeonVar_channelName =
 | 
						|
        'dev.flutter.pigeon.immich_mobile.BackgroundWorkerBgHostApi.onInitialized$pigeonVar_messageChannelSuffix';
 | 
						|
    final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
 | 
						|
      pigeonVar_channelName,
 | 
						|
      pigeonChannelCodec,
 | 
						|
      binaryMessenger: pigeonVar_binaryMessenger,
 | 
						|
    );
 | 
						|
    final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(null);
 | 
						|
    final List<Object?>? pigeonVar_replyList = await pigeonVar_sendFuture as List<Object?>?;
 | 
						|
    if (pigeonVar_replyList == null) {
 | 
						|
      throw _createConnectionError(pigeonVar_channelName);
 | 
						|
    } else if (pigeonVar_replyList.length > 1) {
 | 
						|
      throw PlatformException(
 | 
						|
        code: pigeonVar_replyList[0]! as String,
 | 
						|
        message: pigeonVar_replyList[1] as String?,
 | 
						|
        details: pigeonVar_replyList[2],
 | 
						|
      );
 | 
						|
    } else {
 | 
						|
      return;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  Future<void> close() async {
 | 
						|
    final String pigeonVar_channelName =
 | 
						|
        'dev.flutter.pigeon.immich_mobile.BackgroundWorkerBgHostApi.close$pigeonVar_messageChannelSuffix';
 | 
						|
    final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
 | 
						|
      pigeonVar_channelName,
 | 
						|
      pigeonChannelCodec,
 | 
						|
      binaryMessenger: pigeonVar_binaryMessenger,
 | 
						|
    );
 | 
						|
    final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(null);
 | 
						|
    final List<Object?>? pigeonVar_replyList = await pigeonVar_sendFuture as List<Object?>?;
 | 
						|
    if (pigeonVar_replyList == null) {
 | 
						|
      throw _createConnectionError(pigeonVar_channelName);
 | 
						|
    } else if (pigeonVar_replyList.length > 1) {
 | 
						|
      throw PlatformException(
 | 
						|
        code: pigeonVar_replyList[0]! as String,
 | 
						|
        message: pigeonVar_replyList[1] as String?,
 | 
						|
        details: pigeonVar_replyList[2],
 | 
						|
      );
 | 
						|
    } else {
 | 
						|
      return;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
abstract class BackgroundWorkerFlutterApi {
 | 
						|
  static const MessageCodec<Object?> pigeonChannelCodec = _PigeonCodec();
 | 
						|
 | 
						|
  Future<void> onIosUpload(bool isRefresh, int? maxSeconds);
 | 
						|
 | 
						|
  Future<void> onAndroidUpload();
 | 
						|
 | 
						|
  Future<void> cancel();
 | 
						|
 | 
						|
  static void setUp(
 | 
						|
    BackgroundWorkerFlutterApi? api, {
 | 
						|
    BinaryMessenger? binaryMessenger,
 | 
						|
    String messageChannelSuffix = '',
 | 
						|
  }) {
 | 
						|
    messageChannelSuffix = messageChannelSuffix.isNotEmpty ? '.$messageChannelSuffix' : '';
 | 
						|
    {
 | 
						|
      final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
 | 
						|
        'dev.flutter.pigeon.immich_mobile.BackgroundWorkerFlutterApi.onIosUpload$messageChannelSuffix',
 | 
						|
        pigeonChannelCodec,
 | 
						|
        binaryMessenger: binaryMessenger,
 | 
						|
      );
 | 
						|
      if (api == null) {
 | 
						|
        pigeonVar_channel.setMessageHandler(null);
 | 
						|
      } else {
 | 
						|
        pigeonVar_channel.setMessageHandler((Object? message) async {
 | 
						|
          assert(
 | 
						|
            message != null,
 | 
						|
            'Argument for dev.flutter.pigeon.immich_mobile.BackgroundWorkerFlutterApi.onIosUpload was null.',
 | 
						|
          );
 | 
						|
          final List<Object?> args = (message as List<Object?>?)!;
 | 
						|
          final bool? arg_isRefresh = (args[0] as bool?);
 | 
						|
          assert(
 | 
						|
            arg_isRefresh != null,
 | 
						|
            'Argument for dev.flutter.pigeon.immich_mobile.BackgroundWorkerFlutterApi.onIosUpload was null, expected non-null bool.',
 | 
						|
          );
 | 
						|
          final int? arg_maxSeconds = (args[1] as int?);
 | 
						|
          try {
 | 
						|
            await api.onIosUpload(arg_isRefresh!, arg_maxSeconds);
 | 
						|
            return wrapResponse(empty: true);
 | 
						|
          } on PlatformException catch (e) {
 | 
						|
            return wrapResponse(error: e);
 | 
						|
          } catch (e) {
 | 
						|
            return wrapResponse(
 | 
						|
              error: PlatformException(code: 'error', message: e.toString()),
 | 
						|
            );
 | 
						|
          }
 | 
						|
        });
 | 
						|
      }
 | 
						|
    }
 | 
						|
    {
 | 
						|
      final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
 | 
						|
        'dev.flutter.pigeon.immich_mobile.BackgroundWorkerFlutterApi.onAndroidUpload$messageChannelSuffix',
 | 
						|
        pigeonChannelCodec,
 | 
						|
        binaryMessenger: binaryMessenger,
 | 
						|
      );
 | 
						|
      if (api == null) {
 | 
						|
        pigeonVar_channel.setMessageHandler(null);
 | 
						|
      } else {
 | 
						|
        pigeonVar_channel.setMessageHandler((Object? message) async {
 | 
						|
          try {
 | 
						|
            await api.onAndroidUpload();
 | 
						|
            return wrapResponse(empty: true);
 | 
						|
          } on PlatformException catch (e) {
 | 
						|
            return wrapResponse(error: e);
 | 
						|
          } catch (e) {
 | 
						|
            return wrapResponse(
 | 
						|
              error: PlatformException(code: 'error', message: e.toString()),
 | 
						|
            );
 | 
						|
          }
 | 
						|
        });
 | 
						|
      }
 | 
						|
    }
 | 
						|
    {
 | 
						|
      final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
 | 
						|
        'dev.flutter.pigeon.immich_mobile.BackgroundWorkerFlutterApi.cancel$messageChannelSuffix',
 | 
						|
        pigeonChannelCodec,
 | 
						|
        binaryMessenger: binaryMessenger,
 | 
						|
      );
 | 
						|
      if (api == null) {
 | 
						|
        pigeonVar_channel.setMessageHandler(null);
 | 
						|
      } else {
 | 
						|
        pigeonVar_channel.setMessageHandler((Object? message) async {
 | 
						|
          try {
 | 
						|
            await api.cancel();
 | 
						|
            return wrapResponse(empty: true);
 | 
						|
          } on PlatformException catch (e) {
 | 
						|
            return wrapResponse(error: e);
 | 
						|
          } catch (e) {
 | 
						|
            return wrapResponse(
 | 
						|
              error: PlatformException(code: 'error', message: e.toString()),
 | 
						|
            );
 | 
						|
          }
 | 
						|
        });
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |