Skip to content

Instantly share code, notes, and snippets.

View fancellu's full-sized avatar

Dino Fancellu fancellu

View GitHub Profile
@fancellu
fancellu / tokio_barrier_demo.rs
Last active March 2, 2024 12:03
Rust tokio barrier demo
use std::sync::Arc;
use tokio::sync::Barrier;
use tokio::sync::BarrierWaitResult;
use tokio::sync::Notify;
use tokio::time::sleep;
use tokio::time::Duration;
// Simulating the filling of boxes with 5 cans, from many tasks
async fn barrier_wait(barrier: Arc<Barrier>, notify: Arc<Notify>, id: usize) -> BarrierWaitResult {
@fancellu
fancellu / tokio_notify_demo.rs
Created February 26, 2024 17:22
Rust tokio demo of Notify usage
use std::sync::Arc;
use tokio::sync::Notify;
use tokio::time::sleep;
use tokio::time::Duration;
// Notify can be thought of a Semaphore with 0 permits
async fn order_packages(package_delivered: Arc<Notify>) {
sleep(Duration::from_secs(2)).await;
println!("Company: Find package");
@fancellu
fancellu / tokio_sem.rs
Last active March 2, 2024 12:04
Rust tokio Semaphore example
use std::sync::Arc;
use tokio::sync::{Semaphore, SemaphorePermit};
use tokio::time::sleep;
use tokio::time::Duration;
async fn person(sem: Arc<Semaphore>, name: String) {
println!("Person {}: waiting for a permit", name);
teller(sem, &name).await;
println!("\tPerson {} finished", name);
}
@fancellu
fancellu / tokio_mutex.rs
Created February 23, 2024 19:25
Rust example of Tokio Mutex usage between threads
use std::sync::Arc;
use tokio::sync::Mutex;
// async tokio function to increment i32 behind arc mutex
async fn increment(remote: Arc<Mutex<i32>>) {
println!("trying to lock");
let mut tvc = remote.lock().await;
println!("incremented");
*tvc += 1;
}
@fancellu
fancellu / tokio_spawn.rs
Last active August 17, 2024 19:02
Rust example of tokio::spawn and JoinHandle processing
async fn hello(name: &str) -> String {
// pretend to be doing some work
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
format!("Hello {}", name)
}
fn blocking() -> String {
println!("Blocking");
@fancellu
fancellu / csv_demo.rs
Last active February 24, 2024 02:56
Rust simple CSV processing from a CV file, using csv crate
use std::{error::Error, process};
fn cities() -> Result<(), Box<dyn Error>> {
let mut csv_rdr = csv::Reader::from_path("data/cities.csv")?;
for result in csv_rdr.records() {
let record = result?;
println!("{:?}", record);
println!("{}",record.get(0).unwrap());
}
Ok(())
@fancellu
fancellu / reqwest_demo.rs
Created February 19, 2024 20:02
Rust reqwest http client async json demo with serde
use serde::Deserialize;
use std::time::Duration;
#[derive(Deserialize, Debug)]
struct Product {
id: i32,
title: String,
description: String,
price: f64,
#[serde(rename = "discountPercentage")]
@fancellu
fancellu / DiningPhilosophersIOApp.scala
Created February 16, 2024 14:23
Dining Philosophers with Cats Effect
import cats.effect.std.Semaphore
import cats.effect._
import cats.implicits._
import scala.concurrent.duration._
object DiningPhilosophersIOApp extends IOApp {
case class Fork(id: Int, lock: Semaphore[IO])
@fancellu
fancellu / DiningPhilosophers.scala
Last active February 16, 2024 12:17
Scala implementation of dining philosophers, after doing it in Rust
import java.util.concurrent.Executors
import java.util.concurrent.locks.{Lock, ReentrantLock}
import scala.concurrent.{Await, ExecutionContext, Future}
import scala.concurrent.duration.*
import scala.concurrent.ExecutionContext.Implicits.global
case class Fork(id: Int, lock: Lock)
case class Philosopher(name: String, left: Fork, right: Fork)
@fancellu
fancellu / dining_philosophers.rs
Last active February 23, 2024 20:43
Rust dining philosophers problem, to eat, each must grab 2 forks, but we have same number of forks as philosophers
use std::sync::{Arc, Mutex};
use std::thread;
use std::time::Duration;
struct Fork {
id: usize,
mutex: Mutex<()>,
}
impl Fork {