命令行音乐播放器代码

 最近想在linux平台下写一款音乐播放器,找了一下,没有其他的解决办法,于是想调用mmplayer的代码来达到播放音乐的目的,然后开始写了之后,发现需要用的技术还挺多的。包括,多线程编程,多进程编程,进程间通讯,线程间通讯,条件变量,互斥量,线程锁,有名管道以及无名管道,权当复习一下linux系统调用编程,下面我把代码复制到下面,大家参考一下,相关的资料在网上都能找得到。


#include <stdio.h>

#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <string.h>




int fd_fifo; //有名管道,用于和mplayer通讯
int fd_pipe[2];//无名管道,用于打印mplayer输出的消息



//发送到mplayer的线程
void *get_pthread(void *arg)
{
    char buf[100];
    while(1)
    {
        printf("please input you cmd:");
        fflush(stdout);
        fgets(buf,sizeof(buf),stdin);
        buf[strlen(buf)]=0;
        printf("*%s*\n",buf);
        if(write(fd_fifo,buf,strlen(buf)) != strlen(buf))
        perror("write");
    }

}


//打印消息,在此可以添加消息处理函数

void *print_pthread(void *arg)
{
    char buf[100];
    close(fd_pipe[1]);
    int size = 0;
    while(1)
    {
        size = read(fd_pipe[0],buf,sizeof(buf));
        if (size == 0) {
            return 1;
        }
        buf[size] = 0;
        printf("th msg read form pipe is %s\n",buf);
    }
}


int main(int argc,char *argv[])
{
    int fd; 
    char buf[100];

    pid_t pid;

//断开管道

    unlink("/tmp/my_fifo");
    if( mkfifo("/tmp/my_fifo",O_CREAT|0666) < 0)
    {
        perror("mkfifo");
    }


    if(pipe(fd_pipe) < 0)
    {
        perror("pipe");
        exit(-1);
    }
    pid = fork();
    if(pid < 0)
    {
        perror("fork");
        exit(-1);
    }
    
char buf[10];
atoi()
if(pid == 0)  //子进程
    {
        close(fd_pipe[0]);
        dup2(fd_pipe[1],1);
        if(fd_fifo = open("/tmp/my_fifo",O_RDWR) < 0)
        {   
            perror("son fd_fifo");
        }
        execlp("mplayer","mplayer","-slave","-quiet","-input",\
        "file=/tmp/my_fifo","ge.wav","-loop","0",NULL);
    }
    else
    {
        pthread_t tid1;
        pthread_t tid2;
        fd_fifo=open("/tmp/my_fifo",O_RDWR);
        if(fd_fifo<0)
        {
            perror("open my_fifo");
        }
        pthread_create(&tid1,NULL,get_pthread,NULL);
        pthread_create(&tid2,NULL,print_pthread,NULL);
        pthread_join(tid1,NULL);   //等待线程结束
        pthread_join(tid2,NULL);
    }
    return 0;
}








        
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

q472599451

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值