4089 Commits

Author SHA1 Message Date
Marcel Märtens
5873fb3a44 move prios from scheduler to participant in oder to fixing closing of stream/participant
however i need to coordinate the prio adjustments in scheduler from now on, so that ParticipantA doesn't get all the network bandwith and ParticipantB nothing
2020-06-09 01:23:58 +02:00
Marcel Märtens
0c522fefe7 renamed all Channels to new naming scheme and fixing shutting down bparticipant and scheduler correctly. Introducing structs to keep Info in scheduler.rs and participant.rs 2020-06-09 01:23:55 +02:00
Marcel Märtens
a210fd6aa6 DOCUMENTATION for everything 2020-06-09 01:23:52 +02:00
Marcel Märtens
9cdba9078f Experiments with a prometheus bug which actually worked as designed because i had client and server running at the same time
- https://github.com/tikv/rust-prometheus/issues/321
 - split up channel into a hanshake part and channel part.
   The handshake part is non endless and ends when its either done or aborted.
   If its okay i will send a request to the BParticipant which then opens a channel on the existing TCP or UDP connection.
   this streamlines the command chain alot. also the channel is almost empty now, thinking about removing it completly.
   isnt perfect, as shutdown and udp doesnt work yet
 - make PID to print as Base64
 - replace rouille with tiny_http
2020-06-09 01:23:49 +02:00
Marcel Märtens
9659cb0ad0 handling frames no longer is channel -> scheduler -> participant, but it's directly channel -> participant, removing a lock and a single bottleneck in the scheduler 2020-06-09 01:23:45 +02:00
Marcel Märtens
faea832165 switch from serde to manually for speed, remove async_serde
- removing async_serde as it seems to be not usefull
  the idea was because deserialising is slow parallising it could speed up.
  Whoever we need to keep the order of frames, (at least for controlframes) so serialising in threads would be quite complicated.
  Also serialisation is quite fast, about 1 Gbit/s such speed is enough for messaging, it's more important to serve parallel streams better.
  Thats why i am removing async serde coding for now
- frames are no longer serialized by serde, by byte by byte manually, increadible speed upgrade
- more metrics
- switch channel_creator into for_each_concurrent
- removing some pool.spwan_ok() as they dont allow me to use self
- reduce features needed
2020-06-09 01:23:42 +02:00
Marcel Märtens
701daef8f1 Examples, HUGE fixes, test, make it alot smother
- switch `listen` to async in oder to verify if the bind was successful
- Introduce the following examples
  - network speed
  - chat
  - fileshare
- add additional tests
- fix dropping stream before last messages can be handled bug, when dropping a stream, BParticipant will wait for prio to be empty before dropping the stream and sending the signal
- correct closing of stream and participant
- move tcp to protocols and create udp front and backend
- tracing and fixing a bug that is caused by not waiting for configuration after receiving a frame
- fix a bug in network-speed, but there is still a bug if trace=warn after 2.000.000 messages the server doesnt get that client has shut down and seems to lock somewhere. hard to reproduce

open tasks
[ ] verify UDP works correctly, especcially the connect!
[ ] implements UDP shutdown correctly, the one created in connect!
[ ] unify logging
[ ] fill metrics
[ ] fix dropping stream before last messages can be handled bug
[ ] add documentation
[ ] add benchmarks
[ ] remove async_serde???
[ ] add mpsc
2020-06-09 01:23:37 +02:00
Marcel Märtens
bf93011c50 COMPLETE REWRITE
- use async_std and implement a async serialisaition
- new participant, stream and drop on the participant
- sending and receiving on streams
2020-06-09 01:23:30 +02:00
Marcel Märtens
ed3161ed66 shutdown and udp/mpsc
- theorectically closing of streams and shutdown
- mpsc and udp preparations
- cleanup and build better tests
2020-06-09 01:23:26 +02:00
Marcel Märtens
a37d8adb5f fix workspaces and Cargo dependencies 2020-06-09 01:23:21 +02:00
Marcel Märtens
96de577cae Code/Dependency Cleanup 2020-06-09 01:23:19 +02:00
Marcel Märtens
317a3de3c5 Got some async test to work 2020-06-09 01:23:15 +02:00
Marcel Märtens
690c8c22f1 Implement a async recv test 2020-06-09 01:23:12 +02:00
Marcel Märtens
f0e137c20e Switch to iterator based ChannelProtocols 2020-06-09 01:23:09 +02:00
Marcel Märtens
17f9dda87b Fix TCP buffering with a NetworkBuffer struct 2020-06-09 01:23:07 +02:00
Marcel Märtens
0c1c89b2ff Experiment with TCP buffering 2020-06-09 01:23:05 +02:00
Marcel Märtens
713c3ce475 Add a speedtest program to benchmark networking 2020-06-09 01:23:01 +02:00
Marcel Märtens
8eeef9bd6e Cleanup:
- We can now get rid of most sleep and get true remote part and stream working, however there seems to be a deadlock after registered new handle trace with 10% spawn chance
 - removal of the events trait, as we use channels
 - streams now directly communicate with each other for performance reasons, somewhere are still deadlocks, oonce directly at listening somehow and after the first message has read, but i also got it to run perfectly through at this state without code change, maybe a sleep or more detailed rust-dgb session would help here!
2020-06-09 01:22:58 +02:00
Marcel Märtens
9e885859ed remove worker folder - flatten file structure 2020-06-09 01:22:55 +02:00
Marcel Märtens
19cd57cc3d Till now all operations where oneshots, now i actually wait for a participant handshake to complete and being able to return their PID
also fixed the correct pid, sid beeing send
2020-06-09 01:22:52 +02:00
Marcel Märtens
fdccee45d4 Differ Metrics to make it easier to implement your own metric coding!
Implement my own metric coding in networking
2020-06-09 01:22:48 +02:00
Marcel Märtens
0777d70a0e Converting the API interface to Async and experimenting with a Channel implementation for TCP, UDP, MPSC, which will later be reverted
It should compile and tests run fine now.
If not, the 2nd last squashed commit message said it currently only send frames but not incomming messages, also recv would only handle frames. The last one said i added internal messages and a reverse path (prob for .recv)
2020-06-09 01:22:45 +02:00
Marcel Märtens
15edf6dbb4 Bring networking tests to green
- Seperate worker into own directory
 - implement correct handshakes
 - implement correct receiving
2020-06-09 01:22:42 +02:00
Marcel Märtens
7c39385477 Continue backend for networking and fill gaps, including:
- introduce tlid to allow
 - introduce channel trait
 - remove old experimental handshake
 - seperate mio_worker into multiple fn
 - implement stream in backend
2020-06-09 01:22:38 +02:00
Marcel Märtens
697e845468 first implementation of connect and tcp using a mio worker protocol and:
- introduce a loadtest, for tcp messages
 - cleanup api
 - added a unittest
 - prepared a handshake message, which will in next commits get removed again
 - experimental mio worker merges
 - using uuid for participant id
2020-06-09 01:22:35 +02:00
Marcel Märtens
833e5955dc initial implementation of a network api 2020-06-09 01:22:32 +02:00
Joshua Barretto
b8b8411d48 Merge branch 'yusdacra/update-turkish-translation' into 'master'
Add missing strings, fix a few translations

See merge request veloren/veloren!931
2020-06-08 21:47:32 +00:00
Yusuf Bera Ertan
f1dab26f67 Add missing strings, fix a few translations 2020-06-08 21:47:30 +00:00
Joshua Barretto
3e2dcf417e Merge branch 'yusdacra/fix-nixshell' into 'master'
Fix nix-shell build issues

See merge request veloren/veloren!968
2020-06-08 21:26:35 +00:00
Yusuf Bera Ertan
6bcf5e01d7
make nix-build and nix-shell work, simplify default.nix, expose more options 2020-06-09 00:12:25 +03:00
Marcel
f1adb4dd2e Merge branch 'xvar/clippy-fixes' into 'master'
Initial clippy fixes as discussed in #587

See merge request veloren/veloren!1054
2020-06-08 21:10:12 +00:00
Ben Wallis
c1c0ef5904 Initial clippy fixes as discussed in #587 2020-06-08 21:27:51 +01:00
Joshua Barretto
31ffafd3a2 Merge branch 'shandley/replace-audio-files' into 'master'
Replace audio files

See merge request veloren/veloren!1052
2020-06-08 16:26:48 +00:00
S Handley
c7c336e588 Replace audio files 2020-06-08 16:26:48 +00:00
Joshua Barretto
bd09d88e3d Merge branch 'shandley/attack-sfx' into 'master'
Attack sfx

See merge request veloren/veloren!927
2020-06-08 15:37:23 +00:00
Shane Handley
4714f8ddc7 Docs, make adding event mappers easier for sfx, remove placeholder
sounds.
2020-06-09 00:41:46 +10:00
Shane Handley
673f6a4b17 Post-rebase fix. 2020-06-08 10:19:42 +10:00
Shane Handley
337c277a6b Handle TripleStrike stages individually. 2020-06-08 10:19:42 +10:00
Shane Handley
afc6d2ab13 Fix some updated weapon references and an incomplete match after rebasing. 2020-06-08 10:19:42 +10:00
Shane Handley
016ebc7f71 Introduce a ToolCategory so we can ignore the specific type of weapon
when deciding on the SFX to play when wielding/attacking.
2020-06-08 10:19:42 +10:00
Shane Handley
97e8a96586 Target the specific attack types, to handle TripeStrike etc...
Removed the Axe sfx until the animations show the swing
2020-06-08 10:19:41 +10:00
Shane Handley
b543a9855a Add swoosh sounds for additional weapons. 2020-06-08 10:19:41 +10:00
Shane Handley
b131ba5b06 Add initial attack sfx code with bow shot sounds. 2020-06-08 10:19:41 +10:00
Songtronix
21f9f4a329 Merge branch 'xvar/fix-audio-device-crashes' into 'master'
Fix #322 - Refactored audio output device enumeration to fail gracefully when...

Closes #322

See merge request veloren/veloren!1049
2020-06-07 16:19:59 +00:00
Ben Wallis
f5ff14207b Fix #322 - Refactored audio output device enumeration to fail gracefully when audio devices with null or otherwise unusable names are encountered 2020-06-07 16:24:22 +01:00
Songtronix
1dce1106c7 Merge branch 'shandley/db-locking-mitigation' into 'master'
DB Locking mitigations

See merge request veloren/veloren!1047
2020-06-07 12:53:42 +00:00
Shane Handley
bfb3ba113e Enable WAL and busy_timeout for each sqlite connection to mitigate db locks, 2020-06-07 22:33:48 +10:00
Imbris
368983190e Merge branch 'imbris/fix-multibyte-whitspace-panic' into 'master'
Fix panic with multibyte whitespace characters

Closes #583

See merge request veloren/veloren!1045
2020-06-06 20:17:11 +00:00
Monty Marz
90a65a9d4d Merge branch 'averylostnomad/auto-walk' into 'master'
Add simple auto walk functionality. Toggleable or push to hold

Closes #582

See merge request veloren/veloren!1044
2020-06-06 20:12:24 +00:00
Imbris
212368aa89 Fix panic with multibyte whitespace characters 2020-06-06 15:58:16 -04:00