mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-08 23:18:16 -07:00
1137 lines
34 KiB
Dart
1137 lines
34 KiB
Dart
// Autogenerated from Pigeon (v26.0.1), 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];
|
|
}
|
|
bool _deepEquals(Object? a, Object? b) {
|
|
if (a is List && b is List) {
|
|
return a.length == b.length &&
|
|
a.indexed
|
|
.every(((int, dynamic) item) => _deepEquals(item.$2, b[item.$1]));
|
|
}
|
|
if (a is Map && b is Map) {
|
|
return a.length == b.length && a.entries.every((MapEntry<Object?, Object?> entry) =>
|
|
(b as Map<Object?, Object?>).containsKey(entry.key) &&
|
|
_deepEquals(entry.value, b[entry.key]));
|
|
}
|
|
return a == b;
|
|
}
|
|
|
|
|
|
enum MediaSegmentType {
|
|
commercial,
|
|
preview,
|
|
recap,
|
|
intro,
|
|
outro,
|
|
}
|
|
|
|
class PlayableData {
|
|
PlayableData({
|
|
required this.id,
|
|
required this.title,
|
|
this.subTitle,
|
|
this.logoUrl,
|
|
required this.description,
|
|
required this.startPosition,
|
|
required this.defaultAudioTrack,
|
|
required this.audioTracks,
|
|
required this.defaultSubtrack,
|
|
required this.subtitleTracks,
|
|
this.trickPlayModel,
|
|
required this.chapters,
|
|
required this.segments,
|
|
this.previousVideo,
|
|
this.nextVideo,
|
|
required this.url,
|
|
});
|
|
|
|
String id;
|
|
|
|
String title;
|
|
|
|
String? subTitle;
|
|
|
|
String? logoUrl;
|
|
|
|
String description;
|
|
|
|
int startPosition;
|
|
|
|
int defaultAudioTrack;
|
|
|
|
List<AudioTrack> audioTracks;
|
|
|
|
int defaultSubtrack;
|
|
|
|
List<SubtitleTrack> subtitleTracks;
|
|
|
|
TrickPlayModel? trickPlayModel;
|
|
|
|
List<Chapter> chapters;
|
|
|
|
List<MediaSegment> segments;
|
|
|
|
String? previousVideo;
|
|
|
|
String? nextVideo;
|
|
|
|
String url;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
id,
|
|
title,
|
|
subTitle,
|
|
logoUrl,
|
|
description,
|
|
startPosition,
|
|
defaultAudioTrack,
|
|
audioTracks,
|
|
defaultSubtrack,
|
|
subtitleTracks,
|
|
trickPlayModel,
|
|
chapters,
|
|
segments,
|
|
previousVideo,
|
|
nextVideo,
|
|
url,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static PlayableData decode(Object result) {
|
|
result as List<Object?>;
|
|
return PlayableData(
|
|
id: result[0]! as String,
|
|
title: result[1]! as String,
|
|
subTitle: result[2] as String?,
|
|
logoUrl: result[3] as String?,
|
|
description: result[4]! as String,
|
|
startPosition: result[5]! as int,
|
|
defaultAudioTrack: result[6]! as int,
|
|
audioTracks: (result[7] as List<Object?>?)!.cast<AudioTrack>(),
|
|
defaultSubtrack: result[8]! as int,
|
|
subtitleTracks: (result[9] as List<Object?>?)!.cast<SubtitleTrack>(),
|
|
trickPlayModel: result[10] as TrickPlayModel?,
|
|
chapters: (result[11] as List<Object?>?)!.cast<Chapter>(),
|
|
segments: (result[12] as List<Object?>?)!.cast<MediaSegment>(),
|
|
previousVideo: result[13] as String?,
|
|
nextVideo: result[14] as String?,
|
|
url: result[15]! as String,
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! PlayableData || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
class MediaSegment {
|
|
MediaSegment({
|
|
required this.type,
|
|
required this.name,
|
|
required this.start,
|
|
required this.end,
|
|
});
|
|
|
|
MediaSegmentType type;
|
|
|
|
String name;
|
|
|
|
int start;
|
|
|
|
int end;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
type,
|
|
name,
|
|
start,
|
|
end,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static MediaSegment decode(Object result) {
|
|
result as List<Object?>;
|
|
return MediaSegment(
|
|
type: result[0]! as MediaSegmentType,
|
|
name: result[1]! as String,
|
|
start: result[2]! as int,
|
|
end: result[3]! as int,
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! MediaSegment || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
class AudioTrack {
|
|
AudioTrack({
|
|
required this.name,
|
|
required this.languageCode,
|
|
required this.codec,
|
|
required this.index,
|
|
required this.external,
|
|
this.url,
|
|
});
|
|
|
|
String name;
|
|
|
|
String languageCode;
|
|
|
|
String codec;
|
|
|
|
int index;
|
|
|
|
bool external;
|
|
|
|
String? url;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
name,
|
|
languageCode,
|
|
codec,
|
|
index,
|
|
external,
|
|
url,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static AudioTrack decode(Object result) {
|
|
result as List<Object?>;
|
|
return AudioTrack(
|
|
name: result[0]! as String,
|
|
languageCode: result[1]! as String,
|
|
codec: result[2]! as String,
|
|
index: result[3]! as int,
|
|
external: result[4]! as bool,
|
|
url: result[5] as String?,
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! AudioTrack || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
class SubtitleTrack {
|
|
SubtitleTrack({
|
|
required this.name,
|
|
required this.languageCode,
|
|
required this.codec,
|
|
required this.index,
|
|
required this.external,
|
|
this.url,
|
|
});
|
|
|
|
String name;
|
|
|
|
String languageCode;
|
|
|
|
String codec;
|
|
|
|
int index;
|
|
|
|
bool external;
|
|
|
|
String? url;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
name,
|
|
languageCode,
|
|
codec,
|
|
index,
|
|
external,
|
|
url,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static SubtitleTrack decode(Object result) {
|
|
result as List<Object?>;
|
|
return SubtitleTrack(
|
|
name: result[0]! as String,
|
|
languageCode: result[1]! as String,
|
|
codec: result[2]! as String,
|
|
index: result[3]! as int,
|
|
external: result[4]! as bool,
|
|
url: result[5] as String?,
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! SubtitleTrack || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
class Chapter {
|
|
Chapter({
|
|
required this.name,
|
|
required this.url,
|
|
required this.time,
|
|
});
|
|
|
|
String name;
|
|
|
|
String url;
|
|
|
|
int time;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
name,
|
|
url,
|
|
time,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static Chapter decode(Object result) {
|
|
result as List<Object?>;
|
|
return Chapter(
|
|
name: result[0]! as String,
|
|
url: result[1]! as String,
|
|
time: result[2]! as int,
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! Chapter || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
class TrickPlayModel {
|
|
TrickPlayModel({
|
|
required this.width,
|
|
required this.height,
|
|
required this.tileWidth,
|
|
required this.tileHeight,
|
|
required this.thumbnailCount,
|
|
required this.interval,
|
|
required this.images,
|
|
});
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int tileWidth;
|
|
|
|
int tileHeight;
|
|
|
|
int thumbnailCount;
|
|
|
|
int interval;
|
|
|
|
List<String> images;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
width,
|
|
height,
|
|
tileWidth,
|
|
tileHeight,
|
|
thumbnailCount,
|
|
interval,
|
|
images,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static TrickPlayModel decode(Object result) {
|
|
result as List<Object?>;
|
|
return TrickPlayModel(
|
|
width: result[0]! as int,
|
|
height: result[1]! as int,
|
|
tileWidth: result[2]! as int,
|
|
tileHeight: result[3]! as int,
|
|
thumbnailCount: result[4]! as int,
|
|
interval: result[5]! as int,
|
|
images: (result[6] as List<Object?>?)!.cast<String>(),
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! TrickPlayModel || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
class StartResult {
|
|
StartResult({
|
|
this.resultValue,
|
|
});
|
|
|
|
String? resultValue;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
resultValue,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static StartResult decode(Object result) {
|
|
result as List<Object?>;
|
|
return StartResult(
|
|
resultValue: result[0] as String?,
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! StartResult || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
class PlaybackState {
|
|
PlaybackState({
|
|
required this.position,
|
|
required this.buffered,
|
|
required this.duration,
|
|
required this.playing,
|
|
required this.buffering,
|
|
required this.completed,
|
|
required this.failed,
|
|
});
|
|
|
|
int position;
|
|
|
|
int buffered;
|
|
|
|
int duration;
|
|
|
|
bool playing;
|
|
|
|
bool buffering;
|
|
|
|
bool completed;
|
|
|
|
bool failed;
|
|
|
|
List<Object?> _toList() {
|
|
return <Object?>[
|
|
position,
|
|
buffered,
|
|
duration,
|
|
playing,
|
|
buffering,
|
|
completed,
|
|
failed,
|
|
];
|
|
}
|
|
|
|
Object encode() {
|
|
return _toList(); }
|
|
|
|
static PlaybackState decode(Object result) {
|
|
result as List<Object?>;
|
|
return PlaybackState(
|
|
position: result[0]! as int,
|
|
buffered: result[1]! as int,
|
|
duration: result[2]! as int,
|
|
playing: result[3]! as bool,
|
|
buffering: result[4]! as bool,
|
|
completed: result[5]! as bool,
|
|
failed: result[6]! as bool,
|
|
);
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
bool operator ==(Object other) {
|
|
if (other is! PlaybackState || other.runtimeType != runtimeType) {
|
|
return false;
|
|
}
|
|
if (identical(this, other)) {
|
|
return true;
|
|
}
|
|
return _deepEquals(encode(), other.encode());
|
|
}
|
|
|
|
@override
|
|
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
|
int get hashCode => Object.hashAll(_toList())
|
|
;
|
|
}
|
|
|
|
|
|
class _PigeonCodec extends StandardMessageCodec {
|
|
const _PigeonCodec();
|
|
@override
|
|
void writeValue(WriteBuffer buffer, Object? value) {
|
|
if (value is int) {
|
|
buffer.putUint8(4);
|
|
buffer.putInt64(value);
|
|
} else if (value is MediaSegmentType) {
|
|
buffer.putUint8(129);
|
|
writeValue(buffer, value.index);
|
|
} else if (value is PlayableData) {
|
|
buffer.putUint8(130);
|
|
writeValue(buffer, value.encode());
|
|
} else if (value is MediaSegment) {
|
|
buffer.putUint8(131);
|
|
writeValue(buffer, value.encode());
|
|
} else if (value is AudioTrack) {
|
|
buffer.putUint8(132);
|
|
writeValue(buffer, value.encode());
|
|
} else if (value is SubtitleTrack) {
|
|
buffer.putUint8(133);
|
|
writeValue(buffer, value.encode());
|
|
} else if (value is Chapter) {
|
|
buffer.putUint8(134);
|
|
writeValue(buffer, value.encode());
|
|
} else if (value is TrickPlayModel) {
|
|
buffer.putUint8(135);
|
|
writeValue(buffer, value.encode());
|
|
} else if (value is StartResult) {
|
|
buffer.putUint8(136);
|
|
writeValue(buffer, value.encode());
|
|
} else if (value is PlaybackState) {
|
|
buffer.putUint8(137);
|
|
writeValue(buffer, value.encode());
|
|
} else {
|
|
super.writeValue(buffer, value);
|
|
}
|
|
}
|
|
|
|
@override
|
|
Object? readValueOfType(int type, ReadBuffer buffer) {
|
|
switch (type) {
|
|
case 129:
|
|
final int? value = readValue(buffer) as int?;
|
|
return value == null ? null : MediaSegmentType.values[value];
|
|
case 130:
|
|
return PlayableData.decode(readValue(buffer)!);
|
|
case 131:
|
|
return MediaSegment.decode(readValue(buffer)!);
|
|
case 132:
|
|
return AudioTrack.decode(readValue(buffer)!);
|
|
case 133:
|
|
return SubtitleTrack.decode(readValue(buffer)!);
|
|
case 134:
|
|
return Chapter.decode(readValue(buffer)!);
|
|
case 135:
|
|
return TrickPlayModel.decode(readValue(buffer)!);
|
|
case 136:
|
|
return StartResult.decode(readValue(buffer)!);
|
|
case 137:
|
|
return PlaybackState.decode(readValue(buffer)!);
|
|
default:
|
|
return super.readValueOfType(type, buffer);
|
|
}
|
|
}
|
|
}
|
|
|
|
class NativeVideoActivity {
|
|
/// Constructor for [NativeVideoActivity]. 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.
|
|
NativeVideoActivity({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<StartResult> launchActivity() async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.NativeVideoActivity.launchActivity$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 if (pigeonVar_replyList[0] == null) {
|
|
throw PlatformException(
|
|
code: 'null-error',
|
|
message: 'Host platform returned null value for non-null return value.',
|
|
);
|
|
} else {
|
|
return (pigeonVar_replyList[0] as StartResult?)!;
|
|
}
|
|
}
|
|
|
|
Future<void> disposeActivity() async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.NativeVideoActivity.disposeActivity$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<bool> isLeanBackEnabled() async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.NativeVideoActivity.isLeanBackEnabled$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 if (pigeonVar_replyList[0] == null) {
|
|
throw PlatformException(
|
|
code: 'null-error',
|
|
message: 'Host platform returned null value for non-null return value.',
|
|
);
|
|
} else {
|
|
return (pigeonVar_replyList[0] as bool?)!;
|
|
}
|
|
}
|
|
}
|
|
|
|
class VideoPlayerApi {
|
|
/// Constructor for [VideoPlayerApi]. 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.
|
|
VideoPlayerApi({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<bool> sendPlayableModel(PlayableData playableData) async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.sendPlayableModel$pigeonVar_messageChannelSuffix';
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
pigeonVar_channelName,
|
|
pigeonChannelCodec,
|
|
binaryMessenger: pigeonVar_binaryMessenger,
|
|
);
|
|
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[playableData]);
|
|
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 if (pigeonVar_replyList[0] == null) {
|
|
throw PlatformException(
|
|
code: 'null-error',
|
|
message: 'Host platform returned null value for non-null return value.',
|
|
);
|
|
} else {
|
|
return (pigeonVar_replyList[0] as bool?)!;
|
|
}
|
|
}
|
|
|
|
Future<void> open(String url, bool play) async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.open$pigeonVar_messageChannelSuffix';
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
pigeonVar_channelName,
|
|
pigeonChannelCodec,
|
|
binaryMessenger: pigeonVar_binaryMessenger,
|
|
);
|
|
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[url, play]);
|
|
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> setLooping(bool looping) async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.setLooping$pigeonVar_messageChannelSuffix';
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
pigeonVar_channelName,
|
|
pigeonChannelCodec,
|
|
binaryMessenger: pigeonVar_binaryMessenger,
|
|
);
|
|
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[looping]);
|
|
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;
|
|
}
|
|
}
|
|
|
|
/// Sets the volume, with 0.0 being muted and 1.0 being full volume.
|
|
Future<void> setVolume(double volume) async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.setVolume$pigeonVar_messageChannelSuffix';
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
pigeonVar_channelName,
|
|
pigeonChannelCodec,
|
|
binaryMessenger: pigeonVar_binaryMessenger,
|
|
);
|
|
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[volume]);
|
|
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;
|
|
}
|
|
}
|
|
|
|
/// Sets the playback speed as a multiple of normal speed.
|
|
Future<void> setPlaybackSpeed(double speed) async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.setPlaybackSpeed$pigeonVar_messageChannelSuffix';
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
pigeonVar_channelName,
|
|
pigeonChannelCodec,
|
|
binaryMessenger: pigeonVar_binaryMessenger,
|
|
);
|
|
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[speed]);
|
|
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> play() async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.play$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;
|
|
}
|
|
}
|
|
|
|
/// Pauses playback if the video is currently playing.
|
|
Future<void> pause() async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.pause$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;
|
|
}
|
|
}
|
|
|
|
/// Seeks to the given playback position, in milliseconds.
|
|
Future<void> seekTo(int position) async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.seekTo$pigeonVar_messageChannelSuffix';
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
pigeonVar_channelName,
|
|
pigeonChannelCodec,
|
|
binaryMessenger: pigeonVar_binaryMessenger,
|
|
);
|
|
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[position]);
|
|
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> stop() async {
|
|
final String pigeonVar_channelName = 'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerApi.stop$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 VideoPlayerListenerCallback {
|
|
static const MessageCodec<Object?> pigeonChannelCodec = _PigeonCodec();
|
|
|
|
void onPlaybackStateChanged(PlaybackState state);
|
|
|
|
static void setUp(VideoPlayerListenerCallback? api, {BinaryMessenger? binaryMessenger, String messageChannelSuffix = '',}) {
|
|
messageChannelSuffix = messageChannelSuffix.isNotEmpty ? '.$messageChannelSuffix' : '';
|
|
{
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerListenerCallback.onPlaybackStateChanged$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.nl_jknaapen_fladder.video.VideoPlayerListenerCallback.onPlaybackStateChanged was null.');
|
|
final List<Object?> args = (message as List<Object?>?)!;
|
|
final PlaybackState? arg_state = (args[0] as PlaybackState?);
|
|
assert(arg_state != null,
|
|
'Argument for dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerListenerCallback.onPlaybackStateChanged was null, expected non-null PlaybackState.');
|
|
try {
|
|
api.onPlaybackStateChanged(arg_state!);
|
|
return wrapResponse(empty: true);
|
|
} on PlatformException catch (e) {
|
|
return wrapResponse(error: e);
|
|
} catch (e) {
|
|
return wrapResponse(error: PlatformException(code: 'error', message: e.toString()));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
abstract class VideoPlayerControlsCallback {
|
|
static const MessageCodec<Object?> pigeonChannelCodec = _PigeonCodec();
|
|
|
|
void loadNextVideo();
|
|
|
|
void loadPreviousVideo();
|
|
|
|
void onStop();
|
|
|
|
void swapSubtitleTrack(int value);
|
|
|
|
void swapAudioTrack(int value);
|
|
|
|
static void setUp(VideoPlayerControlsCallback? api, {BinaryMessenger? binaryMessenger, String messageChannelSuffix = '',}) {
|
|
messageChannelSuffix = messageChannelSuffix.isNotEmpty ? '.$messageChannelSuffix' : '';
|
|
{
|
|
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
|
'dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.loadNextVideo$messageChannelSuffix', pigeonChannelCodec,
|
|
binaryMessenger: binaryMessenger);
|
|
if (api == null) {
|
|
pigeonVar_channel.setMessageHandler(null);
|
|
} else {
|
|
pigeonVar_channel.setMessageHandler((Object? message) async {
|
|
try {
|
|
api.loadNextVideo();
|
|
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.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.loadPreviousVideo$messageChannelSuffix', pigeonChannelCodec,
|
|
binaryMessenger: binaryMessenger);
|
|
if (api == null) {
|
|
pigeonVar_channel.setMessageHandler(null);
|
|
} else {
|
|
pigeonVar_channel.setMessageHandler((Object? message) async {
|
|
try {
|
|
api.loadPreviousVideo();
|
|
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.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.onStop$messageChannelSuffix', pigeonChannelCodec,
|
|
binaryMessenger: binaryMessenger);
|
|
if (api == null) {
|
|
pigeonVar_channel.setMessageHandler(null);
|
|
} else {
|
|
pigeonVar_channel.setMessageHandler((Object? message) async {
|
|
try {
|
|
api.onStop();
|
|
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.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.swapSubtitleTrack$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.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.swapSubtitleTrack was null.');
|
|
final List<Object?> args = (message as List<Object?>?)!;
|
|
final int? arg_value = (args[0] as int?);
|
|
assert(arg_value != null,
|
|
'Argument for dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.swapSubtitleTrack was null, expected non-null int.');
|
|
try {
|
|
api.swapSubtitleTrack(arg_value!);
|
|
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.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.swapAudioTrack$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.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.swapAudioTrack was null.');
|
|
final List<Object?> args = (message as List<Object?>?)!;
|
|
final int? arg_value = (args[0] as int?);
|
|
assert(arg_value != null,
|
|
'Argument for dev.flutter.pigeon.nl_jknaapen_fladder.video.VideoPlayerControlsCallback.swapAudioTrack was null, expected non-null int.');
|
|
try {
|
|
api.swapAudioTrack(arg_value!);
|
|
return wrapResponse(empty: true);
|
|
} on PlatformException catch (e) {
|
|
return wrapResponse(error: e);
|
|
} catch (e) {
|
|
return wrapResponse(error: PlatformException(code: 'error', message: e.toString()));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|