【Make编译控制 07】CMake常用命令

目录

一、变量相关命令

1. 定义变量

2. 设置C++标准

3. 设置输出路径

二、文件相关命令

 1. file 命令

2. aux_source_directory 命令

2. include_directories 命令

三、字符串相关命令

1. 字符串输出

2. 字符串拼接

3. 字符串移除


前情提示:【Make编译控制 06】CMake初步使用-CSDN博客

一、变量相关命令

1. 定义变量

在CMake初步使用的例子中出现了3个源文件,假设这3个源文件需要被反复使用,那么每次都直接将这3个源文件名称都列出来会很麻烦,此时我们可以定义一个变量,将多个源文件的名称作为一个字符串变量存储起来,在CMake里面定义变量需要 set 关键字。

# SET 指令的语法是:
# [] 中的参数为可选项, 如不需要可以不写
SET(VAR [VALUE] [CACHE TYPE DOCSTRING [FORCE]])
# set(SRC_LIST add.cpp;sub.cpp;main.cpp)
set(SRC_LIST add.cpp sub.cpp main.cpp)
add_executable(math.exe ${SRC_LIST})# 与 Makefile 不同是取变量的值只能用 ${}

2. 设置C++标准

# C++标准对应有一宏叫做DCMAKE_CXX_STANDARD。
# 在CMake中想要指定C++标准有两种方式:# 1. 在 CMakeLists.txt 中通过 set 命令指定
# -std=c++11
set(CMAKE_CXX_STANDARD 11)# 2. 在执行 cmake 命令的时候指定出这个宏的值
# cmake CMakeLists.txt文件路径 -DCMAKE_CXX_STANDARD=11

3. 设置输出路径

# 在CMake中指定可执行程序输出的路径,也对应一个宏,叫做EXECUTABLE_OUTPUT_PATHset(HOME /root/gitee/Test/Make_Learn/10_test)
set(EXECUTABLE_OUTPUT_PATH ${HOME}/bin)
# 第一行:定义一个变量用于存储一个绝对路径
# 第二行:将拼接好的路径值设置给EXECUTABLE_OUTPUT_PATH宏
# 如果这个路径中的子目录不存在,会自动生成# 由于可执行程序是基于 cmake 命令生成的 makefile 文件然后再执行 make 命令得到的,
# 所以如果此处指定可执行程序生成路径的时候使用的是相对路径 ./xxx/xxx,
# 那么这个路径中的 ./ 对应的就是 makefile 文件所在的那个目录。
(base) [root@localhost build]# cmake ..
-- The C compiler identification is GNU 4.8.5
-- The CXX compiler identification is GNU 4.8.5
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /root/gitee/Test/Make_Learn/10_test/build
(base) [root@localhost build]# make
Scanning dependencies of target math.exe
[ 33%] Building CXX object CMakeFiles/math.exe.dir/add.cpp.o
[ 66%] Building CXX object CMakeFiles/math.exe.dir/sub.cpp.o
[100%] Building CXX object CMakeFiles/math.exe.dir/main.cpp.o
Linking CXX executable ../bin/math.exe
[100%] Built target math.exe
(base) [root@localhost build]# cd ..
(base) [root@localhost 10_test]# ls
add.cpp  add.h  bin  build  CMakeLists.txt  main.cpp  sub.cpp  sub.h
(base) [root@localhost 10_test]# ./bin/math.exe 
10 + 5 = 15
10 - 5 = 5
(base) [root@localhost 10_test]# 

二、文件相关命令

 1. file 命令

如果一个项目里边的源文件很多,在编写CMakeLists.txt文件的时候不可能将项目目录的各个文件一一罗列出来,这样太麻烦也不现实。

所以我们可以通过 CMake 提供给我们的搜索文件命令,快速地获得某个路径下的所有源文件。

file(GLOB/GLOB_RECURSE 变量名 要搜索的文件路径及文件类型)
# GLOB: 将指定目录下搜索到的满足条件的所有文件名生成一个列表,并将其存储到变量中。
# GLOB_RECURSE:递归搜索指定目录,将搜索到的满足条件的文件名生成一个列表,并将其存储到变量中。
# CMakeLists.txt 文件cmake_minimum_required(VERSION 2.8)
project(MATH)file(GLOB SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)add_executable(math.exe ${SRC_LIST})set(CMAKE_CXX_STANDARD 11)set(HOME /root/gitee/Test/Make_Learn/10_test)
set(EXECUTABLE_OUTPUT_PATH ${HOME}/bin)
(base) [root@localhost build]# cmake ..
-- The C compiler identification is GNU 4.8.5
-- The CXX compiler identification is GNU 4.8.5
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /root/gitee/Test/Make_Learn/10_test/build
(base) [root@localhost build]# make
Scanning dependencies of target math.exe
[ 33%] Building CXX object CMakeFiles/math.exe.dir/add.o
[ 66%] Building CXX object CMakeFiles/math.exe.dir/main.o
[100%] Building CXX object CMakeFiles/math.exe.dir/sub.o
Linking CXX executable ../bin/math.exe
[100%] Built target math.exe
(base) [root@localhost build]# ../bin/math.exe 
10 + 5 = 15
10 - 5 = 5
(base) [root@localhost build]# 

2. aux_source_directory 命令

aux_source_directory(< dir > < variable >)
# dir:要搜索的目录
# variable:将从dir目录下搜索到的源文件列表存储到该变量中
# 相比于 file 命令,aux_source_directory 命令可以自动选择源文件
# CMakeLists.txt 文件cmake_minimum_required(VERSION 2.8)
project(MATH)aux_source_directory(${PROJECT_SOURCE_DIR} SRC_LIST)
# PROJECT_SOURCE_DIR 宏表示的路径是使用 cmake 命令时后面跟随的路径
# CMAKE_CURRENT_SOURCE_DIR 宏表示的路径是 CMakeLists.txt 文件的路径
# PROJECT_SOURCE_DIR 和 CMAKE_CURRENT_SOURCE_DIR 是同一个路径add_executable(math.exe ${SRC_LIST})set(CMAKE_CXX_STANDARD 11)set(HOME /root/gitee/Test/Make_Learn/10_test)
set(EXECUTABLE_OUTPUT_PATH ${HOME}/bin)
(base) [root@localhost build]# cmake ..
-- The C compiler identification is GNU 4.8.5
-- The CXX compiler identification is GNU 4.8.5
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /root/gitee/Test/Make_Learn/10_test/build
(base) [root@localhost build]# make
Scanning dependencies of target math.exe
[ 33%] Building CXX object CMakeFiles/math.exe.dir/add.o
[ 66%] Building CXX object CMakeFiles/math.exe.dir/main.o
[100%] Building CXX object CMakeFiles/math.exe.dir/sub.o
Linking CXX executable ../bin/math.exe
[100%] Built target math.exe
(base) [root@localhost build]# ../bin/math.exe 
10 + 5 = 15
10 - 5 = 5
(base) [root@localhost build]# 

2. include_directories 命令

在编译项目源文件的时候,如果源文件和其对应的头文件不在同一个目录下,那么就需要将源文件对应的头文件路径指定出来,这样才能保证在编译过程中编译器能够找到这些头文件,并顺利通过编译。

include_directories(headpath)
# 将项目代码存储在如下路径:(base) [root@localhost 10_test]# tree .
.
├── build
├── CMakeLists.txt
├── include
│   ├── add.h
│   └── sub.h
└── src├── add.cpp├── main.cpp└── sub.cpp3 directories, 6 files
(base) [root@localhost 10_test]#
# CMakeLists.txt 文件cmake_minimum_required(VERSION 2.8)
project(MATH)aux_source_directory(${CMAKE_SOURCE_DIR}/src SRC_LIST)
include_directories(${PROJECT_SOURCE_DIR}/include)
add_executable(math.exe ${SRC_LIST})set(CMAKE_CXX_STANDARD 11)set(HOME /root/gitee/Test/Make_Learn/10_test)
set(EXECUTABLE_OUTPUT_PATH ${HOME}/bin)
(base) [root@localhost 10_test]# tree .
.
├── build
├── CMakeLists.txt
├── include
│   ├── add.h
│   └── sub.h
└── src├── add.cpp├── main.cpp└── sub.cpp3 directories, 6 files
(base) [root@localhost 10_test]# cd build/
(base) [root@localhost build]# cmake ..
-- The C compiler identification is GNU 4.8.5
-- The CXX compiler identification is GNU 4.8.5
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /root/gitee/Test/Make_Learn/10_test/build
(base) [root@localhost build]# make
Scanning dependencies of target math.exe
[ 33%] Building CXX object CMakeFiles/math.exe.dir/src/add.o
[ 66%] Building CXX object CMakeFiles/math.exe.dir/src/main.o
[100%] Building CXX object CMakeFiles/math.exe.dir/src/sub.o
Linking CXX executable ../bin/math.exe
[100%] Built target math.exe
(base) [root@localhost build]# ../bin/math.exe 
10 + 5 = 15
10 - 5 = 5
(base) [root@localhost build]# 

三、字符串相关命令

1. 字符串输出

# message 命令可输出字符串,常用于调试message([STATUS|WARNING|AUTHOR_WARNING|FATAL_ERROR|SEND_ERROR] "message to display" ...)
# (无) :重要消息
# STATUS :非重要消息
# WARNING:CMake 警告, 会继续执行
# AUTHOR_WARNING:CMake 警告 (dev), 会继续执行
# SEND_ERROR:CMake 错误, 继续执行,但是会跳过生成的步骤
# FATAL_ERROR:CMake 错误, 终止所有处理过程
# CMakeLists.txt 文件cmake_minimum_required(VERSION 2.8)message("hello cmake")
message(STATUS "hello cmake status")
message(WARNING "hello cmake warning")
message(FATAL_ERROR "hello cmake faltal_error")
message(STATUS "hello cmake status")
(base) [root@localhost build]# cmake ..
-- The C compiler identification is GNU 4.8.5
-- The CXX compiler identification is GNU 4.8.5
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
hello cmake
-- hello cmake status
CMake Warning at CMakeLists.txt:3 (message):hello cmake warningCMake Error at CMakeLists.txt:4 (message):hello cmake faltal_error-- Configuring incomplete, errors occurred!
See also "/root/gitee/Test/Make_Learn/10_test/build/CMakeFiles/CMakeOutput.log".
(base) [root@localhost build]# 

2. 字符串拼接

有时候项目中的源文件并不一定都在同一个目录中,但是这些源文件最终却需要一起进行编译来生成最终的可执行文件或者库文件。如果我们通过file命令对各个目录下的源文件进行搜索,最后还需要做一个字符串拼接的操作,关于字符串拼接可以使用 set 命令也或 list 命令。

# 方式1:通过 set 进行字符串拼接
# set(变量名1 ${变量名1} ${变量名2} ...)
# 关于上面的命令其实就是将从第二个参数开始往后所有的字符串进行拼接,
# 最后将结果存储到第一个参数中,如果第一个参数中原来有数据会对原数据就行覆盖。cmake_minimum_required(VERSION 2.8)file(GLOB SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/src/*cpp)
file(GLOB INC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/include/*.h)
set(ALL_FILES ${SRC_LIST} ${INC_LIST})message(STATUS "SRC_LIST: ${SRC_LIST}")
message(STATUS "INC_LIST: ${INC_LIST}")
message(STATUS "ALL_FILES: ${ALL_FILES}")
(base) [root@localhost build]# cmake ..
-- SRC_LIST: /root/gitee/Test/Make_Learn/10_test/src/add.cpp;/root/gitee/Test/Make_Learn/10_test/src/main.cpp;/root/gitee/Test/Make_Learn/10_test/src/sub.cpp
-- INC_LIST: /root/gitee/Test/Make_Learn/10_test/include/add.h;/root/gitee/Test/Make_Learn/10_test/include/sub.h
-- ALL_FILES: /root/gitee/Test/Make_Learn/10_test/src/add.cpp;/root/gitee/Test/Make_Learn/10_test/src/main.cpp;/root/gitee/Test/Make_Learn/10_test/src/sub.cpp;/root/gitee/Test/Make_Learn/10_test/include/add.h;/root/gitee/Test/Make_Learn/10_test/include/sub.h
-- Configuring done
-- Generating done
-- Build files have been written to: /root/gitee/Test/Make_Learn/10_test/build
(base) [root@localhost build]# 
# 方式2:通过 list 进行字符串拼接
# list(APPEND <list> [<element> ...])
# list命令的功能比set要强大,字符串拼接只是它的其中一个功能,
# 所以需要在它第一个参数的位置指定出我们要做的操作,
# APPEND表示进行数据追加,后边的参数和set就一样了。cmake_minimum_required(VERSION 2.8)file(GLOB SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/src/*cpp)
file(GLOB INC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/include/*.h)
# set(ALL_FILES ${SRC_LIST} ${INC_LIST})
list(APPEND ALL_FILES ${INC_LIST} ${SRC_LIST})message(STATUS "SRC_LIST: ${SRC_LIST}")
message(STATUS "INC_LIST: ${INC_LIST}")
message(STATUS "ALL_FILES: ${ALL_FILES}")
(base) [root@localhost build]# cmake ..
-- SRC_LIST: /root/gitee/Test/Make_Learn/10_test/src/add.cpp;/root/gitee/Test/Make_Learn/10_test/src/main.cpp;/root/gitee/Test/Make_Learn/10_test/src/sub.cpp
-- INC_LIST: /root/gitee/Test/Make_Learn/10_test/include/add.h;/root/gitee/Test/Make_Learn/10_test/include/sub.h
-- ALL_FILES: /root/gitee/Test/Make_Learn/10_test/include/add.h;/root/gitee/Test/Make_Learn/10_test/include/sub.h;/root/gitee/Test/Make_Learn/10_test/src/add.cpp;/root/gitee/Test/Make_Learn/10_test/src/main.cpp;/root/gitee/Test/Make_Learn/10_test/src/sub.cpp
-- Configuring done
-- Generating done
-- Build files have been written to: /root/gitee/Test/Make_Learn/10_test/build
(base) [root@localhost build]# 

3. 字符串移除

我们在通过file搜索某个目录就得到了该目录下所有的源文件,但是其中有些源文件并不是我们所需要的,比如在打包生成库的时候,我们就不需要包含有主函数的源文件。

(base) [root@localhost 10_test]# tree .
.
├── build
├── CMakeLists.txt
├── include
│   ├── add.h
│   └── sub.h
└── src├── add.cpp├── main.cpp└── sub.cpp3 directories, 6 files
(base) [root@localhost 10_test]#

想要实现字符串的移除,也是同构 list 命令。

list(REMOVE_ITEM <list> <value> [<value> ...])

命令原型可以看到删除和追加数据类似,只不过是第一个参数变成了REMOVE_ITEM。

cmake_minimum_required(VERSION 2.8)file(GLOB SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/src/*cpp)list(REMOVE_ITEM SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp)message(STATUS "SRC_LIST: ${SRC_LIST}")
(base) [root@localhost build]# cmake ..
-- SRC_LIST: /root/gitee/Test/Make_Learn/10_test/src/add.cpp;/root/gitee/Test/Make_Learn/10_test/src/sub.cpp
-- Configuring done
-- Generating done
-- Build files have been written to: /root/gitee/Test/Make_Learn/10_test/build
(base) [root@localhost build]# 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/677536.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Dubbo源码二:Dubbo服务导出】

入口 Dubbo服务导出的入口&#xff1a;服务导出是在DubboBootstrapApplicationListener在监听到ApplicationContextEvent的ContextRefreshedEvent事件后&#xff0c;会触发dubboBootstrap.start(), 在这个方法中最后会导出Dubbo服务 DubboBootstrapApplicationListener Dub…

Python装饰器详解:实例分析与使用场景

在Python中,装饰器是一种强大的语法特性,允许在不修改原始代码的情况下,动态地修改或增强函数的行为。本文将通过两个实际的例子,分别介绍了计时装饰器和缓存装饰器,并深入探讨了它们的实现原理和使用场景。 1. 计时装饰器 import timedef timing_decorator(func):def w…

无人机飞控算法原理基础研究,多旋翼无人机的飞行控制算法理论详解,无人机飞控软件架构设计

多旋翼无人机的飞行控制算法主要涉及到自动控制器、捷联式惯性导航系统、卡尔曼滤波算法和飞行控制PID算法等部分。 自动控制器是无人机飞行控制的核心部分&#xff0c;它负责接收来自无人机传感器和其他系统的信息&#xff0c;并根据预设的算法和逻辑&#xff0c;对无人机的姿…

【基础】比较器 - 振荡来自何处?

比较器是一个简单的概念-在输入端对两个电压进行比较。输出为高或者低。因此&#xff0c;在转换的过程中为什么存在振荡。 当转换电平缓慢改变的时候&#xff0c;这个现象经常会发生。常常是由于输入信号存在噪声&#xff0c;因此在转换电平附近的轻微波动会引起输出端的振荡。…

KMP算法与前缀函数

KMP算法与前缀函数 说明 本文参考了 OI Wiki。 首先来明确几个概念&#xff1a; 后缀&#xff1a;后缀是从父串某个位置i开始到末尾结束的一个特殊字符串。真后缀&#xff1a;不为父串本身的后缀字符串。前缀&#xff1a;从父串开头到某个位置i结束的一个特殊字符串。真前缀…

in r, 找出所有重复的元素,包括第一个 R语言|如何筛选所有的重复行(包括第一行重复在内)

library(dplyr) data <- metadata %>%group_by(type) %>% # 根据你要筛选的列进行分组filter(duplicated(type)|n()!1) %>% # 将该列中有重复的行挑选出来ungroup() 方法二 # 示例向量 x <- c(1, 2, 3, 2, 4, 5, 5, 6)# 找出所有重复的元素&#xff08;包括第一…

基于深度学习算法的轴承故障自主分类

1. 要求 轴承有3种故障&#xff1a;外圈故障&#xff0c;内圈故障&#xff0c;滚珠故障&#xff0c;外加正常的工作状态。如表1所示&#xff0c;结合轴承的3种直径&#xff08;直径1,直径2,直径3&#xff09;&#xff0c;轴承的工作状态有10类&#xff1a; 表1 轴承故障类别 外…

单片机学习路线(简单介绍)

学习单片机对于电子爱好者和未来的嵌入式系统工程师来说是一段激动人心的旅程。单片机因其强大的功能、灵活性以及在各种智能设备中的广泛应用&#xff0c;成为了电子和计算机科学领域一个不可或缺的组成部分。如果你对如何开始这段旅程感到好奇&#xff0c;那么你来对地方了。…

Python爬虫:搭建本地IP池

本地代理IP池 代理IP池是一种由多个代理IP构成的集合&#xff0c;可以通过接口等方式随时获取可用的代理IP。通俗地打个比方&#xff0c;它就是一个池子&#xff0c;里面装了很多代理ip。代理IP具有以下几个特征&#xff1a; 1、池子里的ip是有生存周期的&#xff0c;它们将被…

Nginx配置php留档

好久没有用过php了&#xff0c;近几日配置nginxphp&#xff0c;留档。 安装 ubunt下nginx和php都可以使用apt安装&#xff1a; sudo apt install nginx php8 如果想安装最新的php8.2,则需要运行下面语句&#xff1a; sudo dpkg -l | grep php | tee packages.txt sudo add-…

计算机算术

计算机算术 数据是什么 数据是各种各样的信息&#xff0c;如数字、文本、计算机程序、音乐、图像、符号等等&#xff0c;实际上&#xff0c;信息可以是能够被计算机存储和处理的任何事物。 位与字节 计算机中存储和处理信息的最小单位是位&#xff08;Binary digit比特&#x…

[C#] 如何对列表,字典等进行排序?

对列表进行排序 下面是一个基于C#的列表排序的案例&#xff1a; using System; using System.Collections.Generic;class Program {static void Main(string[] args){// 创建一个列表List<int> numbers new List<int>() { 5, 2, 8, 1, 10 };// 使用Sort方法对列…

[动态规划]判断整除

题目 一个给定的正整数序列&#xff0c;在每个数之前都插入号或-号后计算它们的和。比如序列&#xff1a;1、2、4共有8种可能的序列&#xff1a; (1) (2) (4) 7 (1) (2) (-4) -1 (1) (-2) (4) 3 (1) (-2) (-4) -5 (-1) (2) (4) 5 (-1) (2) (-4) -3 (…

Open CASCADE学习|保存为STL文件

STL (Stereolithography) 文件是一种广泛用于3D打印和计算机辅助设计 (CAD) 领域的文件格式。它描述了一个三维模型的表面而不包含颜色、材质或其他非几何信息。STL文件通常用于3D打印过程中&#xff0c;因为它们仅包含构建物体所需的位置信息。 由于STL文件只包含表面信息&am…

使用raw.gitmirror.com替换raw.githubusercontent.com以解决brew upgrade python@3.12慢的问题

MacOS系统上&#xff0c;升级python3.12时&#xff0c;超级慢&#xff0c;而且最后还失败了。看了日志&#xff0c;发现是用curl从raw.githubusercontent.com上下载Python安装包超时了。 解决方案一&#xff1a;开启翻墙工具&#xff0c;穿越围墙 解决方案二&#xff1a;使用…

测试OpenSIPS3.4.3的lua模块

这几天测试OpenSIPS3.4.3的lua模块&#xff0c;记录如下&#xff1a; 有bug&#xff0c;但能用 但现实世界就是这样&#xff0c;总是不完美的&#xff0c;发现之后马上提了issue 下面这段代码运行报错&#xff1a; function func1(msg) xlog("ERR","…

【开源项目阅读】Java爬虫抓取豆瓣图书信息

原项目链接 Java爬虫抓取豆瓣图书信息 本地运行 运行过程 另建项目&#xff0c;把四个源代码文件拷贝到自己的包下面 在代码爆红处按ALTENTER自动导入maven依赖 直接运行Main.main方法&#xff0c;启动项目 运行结果 在本地磁盘上生成三个xml文件 其中的内容即位爬取…

论文阅读-CARD:一种针对复制元数据服务器集群的拥塞感知请求调度方案

论文名称&#xff1a;CARD: A Congestion-Aware Request Dispatching Scheme for Replicated Metadata Server Cluster 摘要 复制元数据服务器集群&#xff08;RMSC&#xff09;在分布式文件系统中非常高效&#xff0c;同时面对数据驱动的场景&#xff08;例如&#xff0c;大…

ECMAScript Modules规范的示例详解

ECMAScript Modules&#xff08;ESM&#xff09;是JavaScript中用于模块化开发的规范&#xff0c;它允许开发者将代码分割成多个独立的文件&#xff0c;以提高代码的可维护性和可重用性。下面是一个ECMAScript Modules规范的示例详解&#xff1a; 创建模块 1.1 导出变量 在一个…

大数据Flume--入门

文章目录 FlumeFlume 定义Flume 基础架构AgentSourceSinkChannelEvent Flume 安装部署安装地址安装部署 Flume 入门案例监控端口数据官方案例实时监控单个追加文件实时监控目录下多个新文件实时监控目录下的多个追加文件 Flume Flume 定义 Flume 是 Cloudera 提供的一个高可用…