赞
踩
Melon库是C语言开发时常用的一个第三方库,内部包含了一些常用的数据结构和算法,因为C语言标准库中没有像C++或者Java里的一些强大的库,最近想深入学习更多C语言,下面也是自己学习记录的过程 :
这里使用的是Ubuntu20.04,首先你的Linux需要先安装好git,make等工具,既然你要安装第三方库,这里默认你已经安装过一些必要的软件了。
使用git命令从GitHub下载melon:
git clone https://github.com/water-Melon/Melon.git
如果执行以上命令报错:
fatal: unable to access 'https://github.com/water-Melon/Melon.git/': GnuTLS recv error (-54): Error in the pull function.
将链接中https改为git即可解决。
然后依次执行:
./configure
我使用的时候这里报错了,因为configure不在该目录下,执行
find -name configure
找到configure所在目录,进入到该目录下执行上述步骤。
然后执行:
make
sudo make install
sudo echo "/usr/local/melon/lib/" >> /etc/ld.so.conf
上面第三个命令我在使用的时候报错了:
如果你在使用的时候也报了相同的错误,则将命令改为
sudo sh -c "echo '/usr/local/melon/lib/' >> /etc/ld.so.conf"
即可。
最后一步执行以下命令:
sudo ldconfig
代码主要参考代码
下面用vim创建一个例程,迫不及待测试一下melon库的使用:
//这段代码主要是初始化了一个全局变量,然后给每一个子进程创建了一个定时事件,即每一秒中输出一个hello world。 #include <stdio.h> #include "mln_core.h" #include "mln_log.h" #include "mln_event.h" char text[1024]; static int global_init(void); static void worker_process(mln_event_t *ev); static void print_handler(mln_event_t *ev, void *data); int main(int argc, char *argv[]) { struct mln_core_attr cattr; cattr.argc = argc; cattr.argv = argv; cattr.global_init = global_init; cattr.worker_process = worker_process; return mln_core_init(&cattr); } static int global_init(void) { //global variable init function int n = snprintf(text, sizeof(text)-1, "hello worldn"); text[n] = 0; return 0; } static void worker_process(mln_event_t *ev) { //we can set event handler here //let's set a timer mln_event_set_timer(ev, 1000, text, print_handler); } static void print_handler(mln_event_t *ev, void *data) { mln_log(debug, "%sn", (char *)data); mln_event_set_timer(ev, 1000, data, print_handler); }
生成可执行文件:
gcc -o hello hello.c -I /usr/local/melon/include/ -L /usr/local/melon/lib/ -lmelon
配置melon:
sudo vim /usr/local/melon/conf/melon.conf
修改为以下部分内容:
修改后启用了多进程框架,执行刚刚的程序会产生三个子进程
可以参考这个大佬的博客:https://blog.csdn.net/weixin_40960130/article/details/113768162
然后保存并退出。
执行刚刚生成的可执行文件:
./hello
结果:
显示有些混乱,但是已经成功了
如果在执行 hello可执行文件时,提示被拒绝,则是因为权限不够的原因
更改命令为:
sudo ./hello
大家加油!!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。