libdsm 1.1.8 libdsm: ^1.1.8 copied to clipboard
An all platform wrapper for the libdsm(Defective SMB) library https://videolabs.github.io/libdsm/
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:libdsm/libdsm.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
Dsm dsm = Dsm();
void _create() async {
await dsm.init();
}
void _release() async {
await dsm.release();
}
void _startDiscovery() async {
dsm.onDiscoveryChanged.listen(_discoveryListener);
await dsm.startDiscovery();
}
void _discoveryListener(String json) async {
debugPrint('Discovery : $json');
}
void _stopDiscovery() async {
dsm.onDiscoveryChanged.listen(null);
await dsm.stopDiscovery();
}
void _resolve() async {
String name = 'biezhihua';
await dsm.resolve(name);
}
void _inverse() async {
String address = '192.168.1.1';
await dsm.inverse(address);
}
void _login() async {
await dsm.login("BIEZHIHUA-PC", "test", "test");
}
void _logout() async {
await dsm.logout();
}
void _getShareList() async {
await dsm.getShareList();
}
int tid = 0;
void _treeConnect() async {
tid = await dsm.treeConnect("F");
}
void _treeDisconnect() async {
int result = await dsm.treeDisconnect(tid);
tid = 0;
}
void _find() async {
String result = await dsm.find(tid, "\\*");
result = await dsm.find(tid, "\\splayer\\splayer_soundtouch\\*");
}
void _fileStatus() async {
String result =
await dsm.fileStatus(tid, "\\splayer\\splayer_soundtouch\\Test.cpp");
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Flutter LIBDSM'),
),
body: Column(
// <Widget> is the type of items in the list.
children: <Widget>[
RaisedButton(
onPressed: _create,
child: Text('create'),
),
RaisedButton(
onPressed: _release,
child: Text('release'),
),
RaisedButton(
onPressed: _startDiscovery,
child: Text('startDiscovery'),
),
RaisedButton(
onPressed: _stopDiscovery,
child: Text('stopDiscovery'),
),
RaisedButton(
onPressed: _resolve,
child: Text('resolve'),
),
RaisedButton(
onPressed: _inverse,
child: Text('inverse'),
),
RaisedButton(
onPressed: _login,
child: Text('login'),
),
RaisedButton(
onPressed: _logout,
child: Text('logout'),
),
RaisedButton(
onPressed: _getShareList,
child: Text('getShareList'),
),
RaisedButton(
onPressed: _treeConnect,
child: Text('treeConnect'),
),
RaisedButton(
onPressed: _treeDisconnect,
child: Text('treeDisconnect'),
),
RaisedButton(
onPressed: _find,
child: Text('find'),
),
RaisedButton(
onPressed: _fileStatus,
child: Text('fileStatus'),
),
],
),
),
);
}
}