Git Product home page Git Product logo

Comments (4)

 avatar commented on May 23, 2024

What you can do is use portable-pty and put types that implement Read or Write into smol::reader() or smol::writer() to get types that implement AsyncRead or AsyncWrite.

Would that work, or am I missing something?

from smol.

prabirshrestha avatar prabirshrestha commented on May 23, 2024

I'm having issue wrapping it. Here is what I have.

[dependencies]
smol = "0.1.4"
portable-pty = "0.2.0"
use portable_pty::{CommandBuilder, PtySize, PtySystemSelection};
use smol::Async;
use std::os::unix::io::AsRawFd;

fn main() {
    smol::run(async {
        let pty = PtySystemSelection::default().get().unwrap();

        let pair = pty
            .openpty(PtySize {
                rows: 24,
                cols: 80,
                pixel_width: 0,
                pixel_height: 0,
            })
            .unwrap();

        let cmd = CommandBuilder::new("whomai");
        let child = pair.slave.spawn_command(cmd).unwrap();
        drop(pair.slave);

        let mut reader = pair.master.try_clone_reader().unwrap();

        let mut reader = Async::new(reader).unwrap();
    });
}

Here is what the try_clone_reader returns.

pub trait MasterPty: std::io::Write {
    fn try_clone_reader(&self) -> Result<Box<dyn std::io::Read + Send>, Error>;
}
warning: unused import: `std::os::unix::io::AsRawFd`
 --> src/main.rs:3:5
  |
3 | use std::os::unix::io::AsRawFd;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

error[E0277]: the trait bound `std::boxed::Box<dyn std::io::Read + std::marker::Send>: std::os::unix::io::AsRawFd` is not satisfied
  --> src/main.rs:24:37
   |
24 |         let mut reader = Async::new(reader).unwrap();
   |                                     ^^^^^^ the trait `std::os::unix::io::AsRawFd` is not implemented for `std::boxed::Box<dyn std::io::Read + std::marker::Send>`

from smol.

 avatar commented on May 23, 2024

Try replacing this:

let mut reader = Async::new(reader).unwrap();

with:

let mut reader = smol::reader(reader);

from smol.

prabirshrestha avatar prabirshrestha commented on May 23, 2024

Thanks. Compiles now.

from smol.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.