refactor(core,gui): make all needed changes to send and receive files on linux and android

This commit is contained in:
Patryk Hegenberg 2024-05-27 21:09:24 +02:00
parent 351b7b9323
commit 0416ab6dab
12 changed files with 108 additions and 193 deletions

View file

@ -79,7 +79,12 @@ impl Args {
name, name,
}) => { }) => {
println!("Receive for {name:?}"); println!("Receive for {name:?}");
receiver::start_receiver(relay.as_deref().unwrap_or(&cfg.app_origin), name).await; receiver::start_receiver(
".".to_string(),
relay.as_deref().unwrap_or(&cfg.app_origin),
name,
)
.await;
} }
Some(Commands::Serve { Some(Commands::Serve {
port, port,

View file

@ -22,9 +22,6 @@ use tracing::error;
const DESTINATION: u8 = 0; const DESTINATION: u8 = 0;
const NONCE_SIZE: usize = 12; const NONCE_SIZE: usize = 12;
#[cfg(target_os = "android")]
const FILE_PATH_PREFIX: &str = "/storage/emulated/0/Documents";
struct File { struct File {
name: String, name: String,
size: u64, size: u64,
@ -69,28 +66,18 @@ fn on_leave_room(context: &mut Context, _: usize) -> Status {
} }
} }
fn on_list(context: &mut Context, list: ListPacket) -> Status { fn on_list(filepath: String, context: &mut Context, list: ListPacket) -> Status {
if context.shared_key.is_none() { if context.shared_key.is_none() {
return Status::Err("Invalid list packet: no shared key established".into()); return Status::Err("Invalid list packet: no shared key established".into());
} }
#[cfg(target_os = "android")]
let mut prefix = std::path::PathBuf::from(std::env::current_exe().unwrap());
// #[cfg(target_os = "android")]
// prefix.pop();
// #[cfg(target_os = "android")]
// println!("prefix: {:?}", prefix);
for entry in list.entries { for entry in list.entries {
let path = sanitize_filename::sanitize(entry.name.clone()); let path = sanitize_filename::sanitize(entry.name.clone());
#[cfg(target_os = "android")] let file_path = format!("{}/{}", filepath, path);
let file_path = format!("{}/{}", FILE_PATH_PREFIX, path);
// let file_path = format!("{}/{}", prefix.display(), path);
#[cfg(target_os = "android")]
if Path::new(&file_path).exists() { if Path::new(&file_path).exists() {
return Status::Err(format!("The file '{}' already exists.", path)); return Status::Err(format!("The file '{}' already exists.", path));
} }
#[cfg(target_os = "android")]
let handle = match fs::File::create(&file_path) { let handle = match fs::File::create(&file_path) {
Ok(handle) => handle, Ok(handle) => handle,
Err(error) => { Err(error) => {
@ -100,21 +87,6 @@ fn on_list(context: &mut Context, list: ListPacket) -> Status {
)); ));
} }
}; };
#[cfg(not(target_os = "android"))]
if Path::new(&path).exists() {
return Status::Err(format!("The file '{}' already exists.", path));
}
#[cfg(not(target_os = "android"))]
let handle = match fs::File::create(&path) {
Ok(handle) => handle,
Err(error) => {
return Status::Err(format!(
"Error: Failed to create file '{}': {}",
path, error
));
}
};
let file = File { let file = File {
name: entry.name, name: entry.name,
@ -232,7 +204,7 @@ fn on_handshake(context: &mut Context, handshake: HandshakePacket) -> Status {
Status::Continue() Status::Continue()
} }
fn on_message(context: &mut Context, message: WebSocketMessage) -> Status { fn on_message(filepath: String, context: &mut Context, message: WebSocketMessage) -> Status {
match message.clone() { match message.clone() {
WebSocketMessage::Text(text) => { WebSocketMessage::Text(text) => {
let packet = match serde_json::from_str(&text) { let packet = match serde_json::from_str(&text) {
@ -263,7 +235,7 @@ fn on_message(context: &mut Context, message: WebSocketMessage) -> Status {
let packet = Packet::decode(data.as_ref()).unwrap(); let packet = Packet::decode(data.as_ref()).unwrap();
let value = packet.value.unwrap(); let value = packet.value.unwrap();
return match value { return match value {
Value::List(list) => on_list(context, list), Value::List(list) => on_list(filepath, context, list),
Value::Chunk(chunk) => on_chunk(context, chunk), Value::Chunk(chunk) => on_chunk(context, chunk),
Value::Handshake(handshake) => on_handshake(context, handshake), Value::Handshake(handshake) => on_handshake(context, handshake),
_ => Status::Err(format!("Unexpected packet: {:?}", value)), _ => Status::Err(format!("Unexpected packet: {:?}", value)),
@ -275,7 +247,7 @@ fn on_message(context: &mut Context, message: WebSocketMessage) -> Status {
Status::Err("Invalid message type".into()) Status::Err("Invalid message type".into())
} }
pub async fn start(socket: Socket, fragment: &str) { pub async fn start(filepath: String, socket: Socket, fragment: &str) {
let Some(index) = fragment.rfind('-') else { let Some(index) = fragment.rfind('-') else {
println!("Error: The invite code '{}' is not valid.", fragment); println!("Error: The invite code '{}' is not valid.", fragment);
return; return;
@ -316,7 +288,7 @@ pub async fn start(socket: Socket, fragment: &str) {
let outgoing_handler = receiver.stream().map(Ok).forward(outgoing); let outgoing_handler = receiver.stream().map(Ok).forward(outgoing);
let incoming_handler = incoming.try_for_each(|message| { let incoming_handler = incoming.try_for_each(|message| {
match on_message(&mut context, message) { match on_message(filepath.clone(), &mut context, message) {
Status::Exit() => { Status::Exit() => {
context.sender.send_json_packet(JsonPacket::Leave); context.sender.send_json_packet(JsonPacket::Leave);
println!("Transfer has completed."); println!("Transfer has completed.");
@ -338,6 +310,7 @@ pub async fn start(socket: Socket, fragment: &str) {
future::select(incoming_handler, outgoing_handler).await; future::select(incoming_handler, outgoing_handler).await;
} }
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use super::*;
@ -412,58 +385,15 @@ mod tests {
}; };
let text_message = WebSocketMessage::Text(r#"{"type":"join","size":10}"#.to_string()); let text_message = WebSocketMessage::Text(r#"{"type":"join","size":10}"#.to_string());
assert_eq!(on_message(&mut context, text_message), Status::Continue()); assert_eq!(
on_message("".to_string(), &mut context, text_message),
Status::Continue()
);
} }
#[test] #[test]
fn test_on_chunk() { fn test_on_chunk() {
let (sender, _) = flume::bounded(1000); let (sender, _) = flume::bounded(1000);
// let mut context = Context {
// hmac: vec![],
// sender: sender.clone(),
// key: EphemeralSecret::random(&mut OsRng),
// shared_key: Some(Aes128Gcm::new(Key::<Aes128Gcm>::from_slice(&[0u8; 16]))),
// files: vec![File {
// name: "file1.txt".to_string(),
// size: 100,
// progress: 0,
// handle: fs::File::create("file1.txt").unwrap(),
// }],
// sequence: 0,
// index: 0,
// progress: 0,
// length: 0,
// };
// let chunk_packet = ChunkPacket {
// sequence: 0,
// chunk: b"Hello, world!".to_vec(),
// };
// assert_eq!(on_chunk(&mut context, chunk_packet), Status::Continue());
// assert_eq!(context.sequence, 1);
// assert_eq!(context.length, 14);
// assert_eq!(context.progress, 14);
// let chunk_packet = ChunkPacket {
// sequence: 1,
// chunk: b"Hello, world!".to_vec(),
// };
// assert_eq!(
// on_chunk(&mut context, chunk_packet),
// Status::Err("Expected sequence 1, but got 1.".into())
// );
// context.files.clear();
// let chunk_packet = ChunkPacket {
// sequence: 0,
// chunk: b"Hello, world!".to_vec(),
// };
// assert_eq!(
// on_chunk(&mut context, chunk_packet),
// Status::Err("Invalid file index.".into())
// );
// Test a chunk packet with no shared key
let mut context = Context { let mut context = Context {
hmac: vec![], hmac: vec![],
sender, sender,

View file

@ -10,7 +10,7 @@ use tokio_tungstenite::{
}; };
use tracing::{debug, error}; use tracing::{debug, error};
pub async fn start_receiver(relay: &str, name: &str) -> Result<()> { pub async fn start_receiver(filepath: String, relay: &str, name: &str) -> Result<()> {
let http_url = replace_protocol(relay); let http_url = replace_protocol(relay);
let res = http_client::download_info(http_url.as_str(), name) let res = http_client::download_info(http_url.as_str(), name)
.await .await
@ -18,12 +18,24 @@ pub async fn start_receiver(relay: &str, name: &str) -> Result<()> {
debug!("Got room_id from Server: {:?}", res); debug!("Got room_id from Server: {:?}", res);
let res_ip = String::from("ws://") + res.ip.as_str() + ":9000"; let res_ip = String::from("ws://") + res.ip.as_str() + ":9000";
if let Err(local_err) = start_ws_com(res_ip.as_str(), res.local_room_id.as_str()).await { #[cfg(not(target_os = "android"))]
if let Err(local_err) = start_ws_com(
filepath.clone(),
res_ip.as_str(),
res.local_room_id.as_str(),
)
.await
{
debug!("Failed to connect local: {local_err}"); debug!("Failed to connect local: {local_err}");
if let Err(relay_err) = start_ws_com(relay, res.relay_room_id.as_str()).await { if let Err(relay_err) = start_ws_com(filepath, relay, res.relay_room_id.as_str()).await {
debug!("Failed to connect remote: {relay_err}"); debug!("Failed to connect remote: {relay_err}");
} }
} }
#[cfg(target_os = "android")]
if let Err(relay_err) = start_ws_com(filepath, relay, res.relay_room_id.as_str()).await {
debug!("Failed to connect remote: {relay_err}");
}
let _success = http_client::download_success(http_url.as_str(), name) let _success = http_client::download_success(http_url.as_str(), name)
.await .await
.map_err(|e| anyhow!("Failed to download success: {}", e))?; .map_err(|e| anyhow!("Failed to download success: {}", e))?;
@ -32,7 +44,7 @@ pub async fn start_receiver(relay: &str, name: &str) -> Result<()> {
Ok(()) Ok(())
} }
pub async fn start_ws_com(relay: &str, name: &str) -> Result<()> { pub async fn start_ws_com(filepath: String, relay: &str, name: &str) -> Result<()> {
let url = String::from(relay) + "/ws"; let url = String::from(relay) + "/ws";
let mut request = url let mut request = url
.into_client_request() .into_client_request()
@ -48,7 +60,7 @@ pub async fn start_ws_com(relay: &str, name: &str) -> Result<()> {
.await .await
{ {
Ok(Ok((socket, _))) => { Ok(Ok((socket, _))) => {
receiver::start(socket, name).await; receiver::start(filepath, socket, name).await;
Ok(()) Ok(())
} }
Ok(Err(e)) => { Ok(Err(e)) => {

View file

@ -1,7 +1,11 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
class Constants { class Constants {
static const backColor = Color(0xFF32363E); static const backColor = Color(0xFF303446);
static const highlightColor = Color(0xFF98C379); static const highlightColor = Color(0xFF8caaee);
static const textColor = Color(0xFFABB2BF); static const textColor = Color(0xFFc6d0f5);
// static const backColor = Color(0xFF32363E);
// static const highlightColor = Color(0xFF98C379);
// static const highlightColor = Color(0xFFa6d189);
// static const textColor = Color(0xFFABB2BF);
} }

View file

@ -6,6 +6,7 @@ import 'package:bitsdojo_window/bitsdojo_window.dart';
import 'package:flutter_test_gui/pages/settings_screen.dart'; import 'package:flutter_test_gui/pages/settings_screen.dart';
import 'package:flutter_test_gui/pages/send_screen.dart'; import 'package:flutter_test_gui/pages/send_screen.dart';
import 'package:flutter_test_gui/pages/receive_screen.dart'; import 'package:flutter_test_gui/pages/receive_screen.dart';
import 'package:flutter_test_gui/consts/consts.dart';
Future<void> main() async { Future<void> main() async {
await RustLib.init(); await RustLib.init();
@ -23,9 +24,9 @@ Future<void> main() async {
} }
} }
const backColor = Color(0xFF32363E); // const backColor = Color(0xFF32363E);
const highlightColor = Color(0xFF98C379); // const highlightColor = Color(0xFF98C379);
const textColor = Color(0xFFABB2BF); // const textColor = Color(0xFFABB2BF);
class MyApp extends StatefulWidget { class MyApp extends StatefulWidget {
const MyApp({super.key}); const MyApp({super.key});
@ -73,13 +74,13 @@ class _MyHomePageState extends State<MyHomePage> {
return MaterialApp( return MaterialApp(
debugShowCheckedModeBanner: false, debugShowCheckedModeBanner: false,
home: Scaffold( home: Scaffold(
backgroundColor: backColor, backgroundColor: Constants.backColor,
appBar: AppBar( appBar: AppBar(
backgroundColor: const Color(0xFF282C34), backgroundColor: const Color(0xFF292c3c), //0xFF282C34),
centerTitle: true, centerTitle: true,
title: Text( title: Text(
widget.title, widget.title,
style: const TextStyle(color: textColor), style: const TextStyle(color: Constants.textColor),
), ),
actions: [ actions: [
PopupMenuButton<String>( PopupMenuButton<String>(
@ -102,7 +103,7 @@ class _MyHomePageState extends State<MyHomePage> {
), ),
body: _screens[_selectedIndex], body: _screens[_selectedIndex],
bottomNavigationBar: BottomNavigationBar( bottomNavigationBar: BottomNavigationBar(
backgroundColor: const Color(0xFF282C34), backgroundColor: const Color(0xFF292c3c), //0xFF282C34),
items: const <BottomNavigationBarItem>[ items: const <BottomNavigationBarItem>[
BottomNavigationBarItem( BottomNavigationBarItem(
icon: Icon(Icons.send), icon: Icon(Icons.send),
@ -114,8 +115,8 @@ class _MyHomePageState extends State<MyHomePage> {
), ),
], ],
currentIndex: _selectedIndex, currentIndex: _selectedIndex,
selectedItemColor: highlightColor, selectedItemColor: Constants.highlightColor,
unselectedItemColor: textColor, unselectedItemColor: Constants.textColor,
onTap: _onItemTapped, onTap: _onItemTapped,
), ),
), ),

View file

@ -1,5 +1,6 @@
import 'dart:io'; import 'dart:io';
import 'package:file_picker/file_picker.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_test_gui/main.dart'; import 'package:flutter_test_gui/main.dart';
import 'package:mobile_scanner/mobile_scanner.dart'; import 'package:mobile_scanner/mobile_scanner.dart';
@ -31,7 +32,8 @@ class ReceiveScreenState extends State<ReceiveScreen> {
if (barcode.raw == null) { if (barcode.raw == null) {
debugPrint('Failed to scan qr code'); debugPrint('Failed to scan qr code');
} else { } else {
final String code = barcode.raw.toString(); final String code = barcode.barcodes.first.displayValue.toString();
print(code);
setState(() { setState(() {
inputValue = code; inputValue = code;
_showScanner = false; _showScanner = false;
@ -69,12 +71,20 @@ class ReceiveScreenState extends State<ReceiveScreen> {
Future<void> _startTransfer(String appOrigin) async { Future<void> _startTransfer(String appOrigin) async {
final input = inputValue.trim(); final input = inputValue.trim();
String filePath = '';
if (input.isNotEmpty) { if (input.isNotEmpty) {
String? selectDirectory = await FilePicker.platform.getDirectoryPath();
if (selectDirectory == null) {
print("User doesnt choose a directory");
} else {
print("user choose: $selectDirectory");
filePath = selectDirectory;
}
if (Platform.isAndroid) { if (Platform.isAndroid) {
if (await _requestPermission(Permission.manageExternalStorage)) { if (await _requestPermission(Permission.manageExternalStorage)) {
try { try {
final outcome = final outcome = await startRustReceiver(
await startRustReceiver(transfername: input, relay: appOrigin); filepath: filePath, transfername: input, relay: appOrigin);
print('Ergebnis von Rust: $outcome'); print('Ergebnis von Rust: $outcome');
} catch (e) { } catch (e) {
print('Fehler beim Starten des Receivers: $e'); print('Fehler beim Starten des Receivers: $e');
@ -93,8 +103,8 @@ class ReceiveScreenState extends State<ReceiveScreen> {
} }
} else { } else {
try { try {
final outcome = final outcome = await startRustReceiver(
await startRustReceiver(transfername: input, relay: appOrigin); filepath: filePath, transfername: input, relay: appOrigin);
print('Ergebnis von Rust: $outcome'); print('Ergebnis von Rust: $outcome');
} catch (e) { } catch (e) {
print('Fehler beim Starten des Receivers: $e'); print('Fehler beim Starten des Receivers: $e');
@ -112,7 +122,7 @@ class ReceiveScreenState extends State<ReceiveScreen> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
backgroundColor: backColor, backgroundColor: Constants.backColor,
body: Center( body: Center(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,

View file

@ -58,9 +58,9 @@ class TransferScreenState extends State<TransferScreen> {
// } else {} // } else {}
// } else { // } else {
try { try {
final outcome = // final outcome =
await startRustReceiver(transfername: input, relay: appOrigin); // await startRustReceiver(transfername: input, relay: appOrigin);
print('Ergebnis von Rust: $outcome'); // print('Ergebnis von Rust: $outcome');
} catch (e) { } catch (e) {
print('Fehler beim Starten des Receivers: $e'); print('Fehler beim Starten des Receivers: $e');
} }

View file

@ -18,6 +18,12 @@ Future<void> startRustSender(
.startRustSender(name: name, relay: relay, files: files, hint: hint); .startRustSender(name: name, relay: relay, files: files, hint: hint);
Future<String> startRustReceiver( Future<String> startRustReceiver(
{required String relay, required String transfername, dynamic hint}) => {required String filepath,
required String relay,
required String transfername,
dynamic hint}) =>
RustLib.instance.api.startRustReceiver( RustLib.instance.api.startRustReceiver(
relay: relay, transfername: transfername, hint: hint); filepath: filepath,
relay: relay,
transfername: transfername,
hint: hint);

View file

@ -72,7 +72,10 @@ abstract class RustLibApi extends BaseApi {
Future<void> initApp({dynamic hint}); Future<void> initApp({dynamic hint});
Future<String> startRustReceiver( Future<String> startRustReceiver(
{required String relay, required String transfername, dynamic hint}); {required String filepath,
required String relay,
required String transfername,
dynamic hint});
Future<void> startRustSender( Future<void> startRustSender(
{required String name, {required String name,
@ -138,10 +141,14 @@ class RustLibApiImpl extends RustLibApiImplPlatform implements RustLibApi {
@override @override
Future<String> startRustReceiver( Future<String> startRustReceiver(
{required String relay, required String transfername, dynamic hint}) { {required String filepath,
required String relay,
required String transfername,
dynamic hint}) {
return handler.executeNormal(NormalTask( return handler.executeNormal(NormalTask(
callFfi: (port_) { callFfi: (port_) {
final serializer = SseSerializer(generalizedFrbRustBinding); final serializer = SseSerializer(generalizedFrbRustBinding);
sse_encode_String(filepath, serializer);
sse_encode_String(relay, serializer); sse_encode_String(relay, serializer);
sse_encode_String(transfername, serializer); sse_encode_String(transfername, serializer);
pdeCallFfi(generalizedFrbRustBinding, serializer, pdeCallFfi(generalizedFrbRustBinding, serializer,
@ -152,7 +159,7 @@ class RustLibApiImpl extends RustLibApiImplPlatform implements RustLibApi {
decodeErrorData: sse_decode_AnyhowException, decodeErrorData: sse_decode_AnyhowException,
), ),
constMeta: kStartRustReceiverConstMeta, constMeta: kStartRustReceiverConstMeta,
argValues: [relay, transfername], argValues: [filepath, relay, transfername],
apiImpl: this, apiImpl: this,
hint: hint, hint: hint,
)); ));
@ -160,7 +167,7 @@ class RustLibApiImpl extends RustLibApiImplPlatform implements RustLibApi {
TaskConstMeta get kStartRustReceiverConstMeta => const TaskConstMeta( TaskConstMeta get kStartRustReceiverConstMeta => const TaskConstMeta(
debugName: "start_rust_receiver", debugName: "start_rust_receiver",
argNames: ["relay", "transfername"], argNames: ["filepath", "relay", "transfername"],
); );
@override @override

View file

@ -1,32 +1,12 @@
name: flutter_test_gui name: flutter_test_gui
description: "A new Flutter project." description: "A new Flutter project."
# The following line prevents the package from being accidentally published to publish_to: "none"
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: "none" # Remove this line if you wish to publish to pub.dev
# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.0.0+1 version: 1.0.0+1
environment: environment:
sdk: ">=3.3.4 <4.0.0" sdk: ">=3.3.4 <4.0.0"
# Dependencies specify other packages that your package needs in order to work.
# To automatically upgrade your package dependencies to the latest versions
# consider running `flutter pub upgrade --major-versions`. Alternatively,
# dependencies can be manually updated by changing the version numbers below to
# the latest version available on pub.dev. To see which dependencies have newer
# versions available, run `flutter pub outdated`.
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
@ -39,66 +19,19 @@ dependencies:
desktop_drop: ^0.4.4 desktop_drop: ^0.4.4
shared_preferences: ^2.2.3 shared_preferences: ^2.2.3
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.6 cupertino_icons: ^1.0.6
rust_lib_flutter_test_gui: rust_lib_flutter_test_gui:
path: rust_builder path: rust_builder
flutter_rust_bridge: 2.0.0-dev.33 flutter_rust_bridge: 2.0.0-dev.33
# dio: ^5.4.3+1
# path_provider: ^2.1.3
permission_handler: ^11.3.1 permission_handler: ^11.3.1
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:
sdk: flutter sdk: flutter
# The "flutter_lints" package below contains a set of recommended lints to
# encourage good coding practices. The lint set provided by the package is
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^3.0.0 flutter_lints: ^3.0.0
integration_test: integration_test:
sdk: flutter sdk: flutter
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter: flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true uses-material-design: true
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware
# For details regarding adding assets from package dependencies, see
# https://flutter.dev/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages

View file

@ -46,19 +46,20 @@ pub async fn start_rust_sender(name: String, relay: String, files: Vec<String>)
Ok(()) Ok(())
} }
// #[flutter_rust_bridge::frb(sync)] pub async fn start_rust_receiver(
// pub async fn start_rust_receiver(relay: String, transfername: String) -> Result<()> { filepath: String,
// let outcome = start_receiver(relay.as_str(), transfername.as_str()) relay: String,
// .await transfername: String,
// .map_err(|e| anyhow!("Failed to start Caesar receiver: {}", e))?; ) -> Result<String> {
// println!("Result of receiver is: {:?}", outcome); // #[cfg(target_os = "android")]
// Ok(()) let outcome = start_receiver(filepath, relay.as_str(), transfername.as_str())
// }
pub async fn start_rust_receiver(relay: String, transfername: String) -> Result<String> {
let outcome = start_receiver(relay.as_str(), transfername.as_str())
.await .await
.map_err(|e| anyhow!("Failed to start Caesar receiver: {}", e))?; .map_err(|e| anyhow!("Failed to start Caesar receiver: {}", e))?;
// #[cfg(not(target_os = "android"))]
// let outcome = start_receiver(relay.as_str(), transfername.as_str())
// .await
// .map_err(|e| anyhow!("Failed to start Caesar receiver: {}", e))?;
// Konvertieren Sie outcome zu einem String // Konvertieren Sie outcome zu einem String
let outcome_string = format!("{:?}", outcome); let outcome_string = format!("{:?}", outcome);

View file

@ -120,13 +120,19 @@ fn wire_start_rust_receiver_impl(
}; };
let mut deserializer = let mut deserializer =
flutter_rust_bridge::for_generated::SseDeserializer::new(message); flutter_rust_bridge::for_generated::SseDeserializer::new(message);
let api_filepath = <String>::sse_decode(&mut deserializer);
let api_relay = <String>::sse_decode(&mut deserializer); let api_relay = <String>::sse_decode(&mut deserializer);
let api_transfername = <String>::sse_decode(&mut deserializer); let api_transfername = <String>::sse_decode(&mut deserializer);
deserializer.end(); deserializer.end();
move |context| async move { move |context| async move {
transform_result_sse( transform_result_sse(
(move || async move { (move || async move {
crate::api::simple::start_rust_receiver(api_relay, api_transfername).await crate::api::simple::start_rust_receiver(
api_filepath,
api_relay,
api_transfername,
)
.await
})() })()
.await, .await,
) )