cake_wallet/cw_zano/lib/api/account_list.dart

86 lines
2.5 KiB
Dart
Raw Normal View History

2023-10-02 14:17:35 +00:00
import 'dart:ffi';
import 'package:ffi/ffi.dart';
import 'package:cw_zano/api/signatures.dart';
import 'package:cw_zano/api/types.dart';
import 'package:cw_zano/api/zano_api.dart';
import 'package:cw_zano/api/structs/account_row.dart';
import 'package:flutter/foundation.dart';
import 'package:cw_zano/api/wallet.dart';
2023-11-17 17:40:23 +00:00
// final accountSizeNative = zanoApi
// .lookup<NativeFunction<account_size>>('account_size')
// .asFunction<SubaddressSize>();
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
// final accountRefreshNative = zanoApi
// .lookup<NativeFunction<account_refresh>>('account_refresh')
// .asFunction<AccountRefresh>();
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
// final accountGetAllNative = zanoApi
// .lookup<NativeFunction<account_get_all>>('account_get_all')
// .asFunction<AccountGetAll>();
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
// final accountAddNewNative = zanoApi
// .lookup<NativeFunction<account_add_new>>('account_add_row')
// .asFunction<AccountAddNew>();
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
// final accountSetLabelNative = zanoApi
// .lookup<NativeFunction<account_set_label>>('account_set_label_row')
// .asFunction<AccountSetLabel>();
2023-10-02 14:17:35 +00:00
bool isUpdating = false;
2023-11-17 17:40:23 +00:00
/**void refreshAccounts() {
2023-10-02 14:17:35 +00:00
try {
isUpdating = true;
accountRefreshNative();
isUpdating = false;
} catch (e) {
isUpdating = false;
rethrow;
}
2023-11-17 17:40:23 +00:00
}*/
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
/**List<AccountRow> getAllAccount() {
2023-10-02 14:17:35 +00:00
final size = accountSizeNative();
final accountAddressesPointer = accountGetAllNative();
final accountAddresses = accountAddressesPointer.asTypedList(size);
return accountAddresses
.map((addr) => Pointer<AccountRow>.fromAddress(addr).ref)
.toList();
2023-11-17 17:40:23 +00:00
}*/
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
/**void addAccountSync({required String label}) {
2023-10-02 14:17:35 +00:00
final labelPointer = label.toNativeUtf8();
accountAddNewNative(labelPointer);
calloc.free(labelPointer);
2023-11-17 17:40:23 +00:00
}*/
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
/**void setLabelForAccountSync(
2023-10-02 14:17:35 +00:00
{required int accountIndex, required String label}) {
final labelPointer = label.toNativeUtf8();
accountSetLabelNative(accountIndex, labelPointer);
calloc.free(labelPointer);
2023-11-17 17:40:23 +00:00
}*/
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
/**void _addAccount(String label) => addAccountSync(label: label);*/
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
/**void _setLabelForAccount(Map<String, dynamic> args) {
2023-10-02 14:17:35 +00:00
final label = args['label'] as String;
final accountIndex = args['accountIndex'] as int;
setLabelForAccountSync(label: label, accountIndex: accountIndex);
2023-11-17 17:40:23 +00:00
}*/
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
/**Future<void> addAccount({required String label}) async {
2023-10-02 14:17:35 +00:00
await compute(_addAccount, label);
await store();
2023-11-17 17:40:23 +00:00
}*/
2023-10-02 14:17:35 +00:00
2023-11-17 17:40:23 +00:00
/**Future<void> setLabelForAccount(
2023-10-02 14:17:35 +00:00
{required int accountIndex, required String label}) async {
await compute(
_setLabelForAccount, {'accountIndex': accountIndex, 'label': label});
await store();
2023-11-17 17:40:23 +00:00
}*/