12 readdir 函数
前言
在之前 ls 命令 中我们可以看到, ls 命令的执行也是依赖于 opendir, readdir, stat, lstat 等相关操作系统提供的相关系统调用来处理业务
因此 我们这里来进一步看一下 更细节的这些 系统调用
我们这里关注的是 readdir 这个函数, 入口系统调用是 getdents
如下调试基于命令 "ls -l /jerry"
如下调试基于 linux 4.10
readdir 的词条
getdents
封装 getdents_callback, 然后 迭代 f 中的各个文件, getdents_callback 中藏有回调
将数据最终存放于 buf 中
ext4_dx_readdir
如下图 第一个 if block 为填充 info 用于迭代, 大致的工作是 将当前文件夹下的各个文件的相关信息填充到 info.root 中
然后 后面的处理为 迭代 info.root 的整棵树, 然后调用 call_filldir 来填充各个文件的信息, call_filldir 中会委托调用上面的 getdents_callback.ctx.actor
htree_dirblock_to_tree
如下会 迭代 dir 中的各个文件, 然后调用 ext4_htree_store_dirent 将各个文件的信息放到 info.root 中
ext4_htree_store_dirent
复制给定的文件的相关信息到 info.root
这个 info.root 是基于 file->private_data 进行传输的, 具体的外面处理是在 ext4_dx_readdir 函数中
这里是 获取当前节点的 hash, minor_hash, inode, name, name_len, file_type 封装到 fname 中, 然后插入到 info.root[红黑树], 根据 hash, minor_hash 进行排序
关于这个顺序, 我们待会儿会有一个 case 来论证
call_filldir
接着来到外部 ext4_dx_readdir 中, 迭代目录中的各个文件信息, 调用回调填充 数据到 buf
filldir
调用 filldir 向 buf.current_dir 中填充当前 dir 的各个文件信息
这个 buf.current_dir 是从参数传入的一个 用户空间的 dirent, 因此 这里使用了 __put_user 函数
这里向 dirent 中填充了 inode_no, record_len, d->name, 0[字符串结束符], file_type, offset 等相关信息
我们来看一下 填充之后的相关信息
内存中的数据 可以对号入座一下, 这里 省略
(gdb) x /30bc 0xaa3a40
0xaa3a40: 18 '\022' 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0 '\000'
0xaa3a48: 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0 '\000'
0xaa3a50: 32 ' ' 0 '\000' 84 'T' 101 'e' 115 's' 116 't' 48 '0' 50 '2'
0xaa3a58: 77 'M' 97 'a' 108 'l' 108 'l' 111 'o' 99 'c'
确认一下 Test02Malloc 的 inode_no, 确实是 18
(initramfs) ls -ail /jerry/29 -rwxr-xr-x 1 8912 Test19UdpClient0232 -rw-r--r-- 1 860 Test19UdpServer.c21 -rw-r--r-- 1 1036 Test05SocketClient.c12 -rw-r--r-- 1 7 1.txt35 -rw-r--r-- 1 2 4.txt16 -rwxr-xr-x 1 913944 Test01SumStatic22 -rwxr-xr-x 1 9232 Test05SocketServer14 -rwxr-xr-x 1 9784 Test01Sum11 drwx------ 2 12288 lost+found2 drwxr-xr-x 3 1024 .25 -rw-r--r-- 1 2213 Test18UdpClient.c30 -rw-r--r-- 1 790 Test19UdpClient.c28 -rwxr-xr-x 1 8912 Test19UdpClient24 -rwxr-xr-x 1 13656 Test18UdpClient13 -rwxr-xr-x 1 44168 ping23 -rw-r--r-- 1 1839 Test05SocketServer.c34 -rw-r--r-- 1 2 3.txt17 -rw-r--r-- 1 8828 Test01Sum.txt19 -rw-r--r-- 1 112 Test02Malloc.c36 -rw-r--r-- 1 0 2.xml1 drwxr-xr-x 18 0 ..33 -rw-r--r-- 1 2 2.txt31 -rwxr-xr-x 1 9008 Test19UdpServer20 -rwxr-xr-x 1 9208 Test05SocketClient15 -rw-r--r-- 1 127 Test01Sum.c27 -rw-r--r-- 1 2139 Test18UdpServer.c26 -rwxr-xr-x 1 13656 Test18UdpServer18 -rwxr-xr-x 1 9898 Test02Malloc
(initramfs)
回顾一下 ls 中的使用
使用的是 系统调用获取到的 file_type, file_name, inode_no 等等
readdir 中获取的文件顺序
如下 摘录出 /jerry 中各个文件, 以及其 hash
然后根据 hash 进行排序, 输出各个文件的顺序, 我们比较一下 和 "ls -l /jerry" 的顺序的一下关系, 联系
/*** Test13ResolveFileAndHash** @author Jerry.X.He <970655147@qq.com>* @version 1.0* @date 2022-08-06 10:58*/
public class Test13ResolveFileAndHash {// Test13ResolveFileAndHashpublic static void main(String[] args) {String lines = "(gdb) printf \"%s %ld\", ent_name->name, hash\n" +". 2361201130\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=1798131950, minor_hash=3795156168, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +".. 1798131950\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2638309314, minor_hash=220112255, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"lost+found 2638309314\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=4147007512, minor_hash=1467808689, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"1.txt 4147007512\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2218817754, minor_hash=2900089684, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"ping\u000E 2218817754\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2722591116, minor_hash=3228507950, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"Test01Sum 2722591116\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=582633220, minor_hash=3262287479, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"Test01Sum.c 582633220\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=3631608018, minor_hash=2725415301, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"Test01SumStatic 3631608018\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2142992528, minor_hash=928223017, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"Test01Sum.txt 2142992528\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=220227180, minor_hash=2471538305, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"Test02Malloc\u0013 220227180\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=1840751322, minor_hash=137392396, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"(gdb) printf \"%s %ld\", ent_name->name, hash\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=857331192, minor_hash=434642936, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test05SocketClient 857331192\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=4158704484, minor_hash=312643960, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test05SocketClient.c\u0016 4158704484\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=3462659828, minor_hash=2883930437, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test05SocketServer 3462659828\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2205009970, minor_hash=314116339, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test05SocketServer.c\u0018 2205009970\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2263127060, minor_hash=2266183803, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test18UdpClient 2263127060\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2342703042, minor_hash=2944388140, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test18UdpClient.c 2342703042\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=428460190, minor_hash=2134201002, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test18UdpServer 428460190\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=493987328, minor_hash=2169830099, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test18UdpServer.c 493987328\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2302229242, minor_hash=322069301, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test19UdpClient 2302229242\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=4262479554, minor_hash=1848801320, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test19UdpClient02 4262479554\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2304662458, minor_hash=1793028086, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test19UdpClient.c 2304662458\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=888054094, minor_hash=304564512, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test19UdpServer 888054094\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=4198063328, minor_hash=3673609025, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"Test19UdpServer.c 4198063328\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=1673380854, minor_hash=394531314, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"2.txt 1673380854\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=2170292718, minor_hash=758117636, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"3.txt 2170292718\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=4053642864, minor_hash=2642363966, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"4.txt 4053642864\n" +"Breakpoint 6, ext4_htree_store_dirent (dir_file=<optimized out>, hash=1832402012, minor_hash=2399099147, dirent=<optimized out>, ent_name=0xffffc9000074bcb8) at fs/ext4/dir.c:459\n" +"459\t\tnew_fn->name[ent_name->len] = 0;\n" +"2.xml 1832402012 \n";Map<Long, String> hash2FileName = new TreeMap<>();for (String line : lines.split("\n")) {if (line.contains("ext4_htree_store_dirent")) {continue;}if (line.contains("new_fn->name")) {continue;}if (line.contains("printf")) {continue;}// System.out.println(line);String[] splits = line.split("\\s+");hash2FileName.put(Long.parseLong(splits[1]), splits[0]);}for (Map.Entry<Long, String> entry : hash2FileName.entrySet()) {System.out.println(entry.getValue());}}}
文件顺序如下, 呵呵 是不是和 "ls -l /jerry" 的顺序差不多, 只是顺序是反的
从 readdir 中读取的文件的顺序和 上面的 Test13ResolveFileAndHash 的顺序一致, 那就是 外围的 ls 的处理可能导致的这个顺序上的差异
类似于 coreutils 中 ls 是有 根据文件名排序, 根据扩展名排序, 根据文件大小排序, 根据版本排序, 根据时间排序
只是 qemu虚拟机中的 ls 的排序 是另外一种排序, 并且有一些 奇怪
Test02Malloc
Test18UdpServer
Test18UdpServer.c
Test01Sum.c
Test05SocketClient
Test19UdpServer
2.txt
..
2.xml
Test01Sum.txt
3.txt
Test05SocketServer.c
ping
Test18UdpClient
Test19UdpClient
Test19UdpClient.c
Test18UdpClient.c
.
lost+found
Test01Sum
Test05SocketServer
Test01SumStatic
4.txt
1.txt
Test05SocketClient.c
Test19UdpServer.c
Test19UdpClient02
readdir 的顺序, 抽样前两个
"ls -ail /jerry" 的顺序
(initramfs) ls -ail /jerry29 -rwxr-xr-x 1 8912 Test19UdpClient0232 -rw-r--r-- 1 860 Test19UdpServer.c21 -rw-r--r-- 1 1036 Test05SocketClient.c12 -rw-r--r-- 1 7 1.txt35 -rw-r--r-- 1 2 4.txt16 -rwxr-xr-x 1 913944 Test01SumStatic22 -rwxr-xr-x 1 9232 Test05SocketServer14 -rwxr-xr-x 1 9784 Test01Sum11 drwx------ 2 12288 lost+found2 drwxr-xr-x 3 1024 .25 -rw-r--r-- 1 2213 Test18UdpClient.c30 -rw-r--r-- 1 790 Test19UdpClient.c28 -rwxr-xr-x 1 8912 Test19UdpClient24 -rwxr-xr-x 1 13656 Test18UdpClient13 -rwxr-xr-x 1 44168 ping23 -rw-r--r-- 1 1839 Test05SocketServer.c34 -rw-r--r-- 1 2 3.txt17 -rw-r--r-- 1 8828 Test01Sum.txt19 -rw-r--r-- 1 112 Test02Malloc.c36 -rw-r--r-- 1 0 2.xml1 drwxr-xr-x 18 0 ..33 -rw-r--r-- 1 2 2.txt31 -rwxr-xr-x 1 9008 Test19UdpServer20 -rwxr-xr-x 1 9208 Test05SocketClient15 -rw-r--r-- 1 127 Test01Sum.c27 -rw-r--r-- 1 2139 Test18UdpServer.c26 -rwxr-xr-x 1 13656 Test18UdpServer18 -rwxr-xr-x 1 9898 Test02Malloc
调试虚拟机 ls 命令帮助文档如下
(initramfs) ls -help
ls: invalid option -- 'h'
BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) multi-call binary.Usage: ls [-1AaCxdLHFplins] [FILE]...List directory contents-1 One column output-a Include entries which start with .-A Like -a, but exclude . and ..-C List by columns-x List by lines-d List directory entries instead of contents-L Follow symlinks-H Follow symlinks on command line-p Append / to dir entries-F Append indicator (one of */=@|) to entries-l Long listing format-i List inode numbers-n List numeric UIDs and GIDs instead of names-s List allocated blocks
呵呵 从宿主机 ubuntu 拿到的顺序又不一样
root@ubuntu:/jerryDisk/linux-4.10.14# ls -ail images/share/
total 10752 drwxr-xr-x 3 root root 1024 May 4 00:57 .
414752 drwxr-xr-x 5 root root 4096 May 4 00:58 ..12 -rw-r--r-- 1 root root 7 May 4 00:57 1.txt33 -rw-r--r-- 1 root root 2 Jul 30 19:03 2.txt36 -rw-r--r-- 1 root root 0 Jul 30 20:13 2.xml34 -rw-r--r-- 1 root root 2 Jul 30 19:03 3.txt35 -rw-r--r-- 1 root root 2 Jul 30 19:03 4.txt14 -rwxr-xr-x 1 root root 9784 May 4 00:57 Test01Sum15 -rw-r--r-- 1 root root 127 May 4 00:57 Test01Sum.c17 -rw-r--r-- 1 root root 8828 May 4 00:57 Test01Sum.txt16 -rwxr-xr-x 1 root root 913944 May 4 00:57 Test01SumStatic18 -rwxr-xr-x 1 root root 9898 Jul 30 19:05 Test02Malloc19 -rw-r--r-- 1 root root 112 May 4 00:57 Test02Malloc.c20 -rwxr-xr-x 1 root root 9208 May 4 00:57 Test05SocketClient21 -rw-r--r-- 1 root root 1036 May 4 00:57 Test05SocketClient.c22 -rwxr-xr-x 1 root root 9232 May 4 00:57 Test05SocketServer23 -rw-r--r-- 1 root root 1839 May 4 00:57 Test05SocketServer.c24 -rwxr-xr-x 1 root root 13656 May 4 00:57 Test18UdpClient25 -rw-r--r-- 1 root root 2213 May 4 00:57 Test18UdpClient.c26 -rwxr-xr-x 1 root root 13656 May 4 00:57 Test18UdpServer27 -rw-r--r-- 1 root root 2139 May 4 00:57 Test18UdpServer.c28 -rwxr-xr-x 1 root root 8912 May 4 00:57 Test19UdpClient30 -rw-r--r-- 1 root root 790 May 4 00:57 Test19UdpClient.c29 -rwxr-xr-x 1 root root 8912 May 4 00:57 Test19UdpClient0231 -rwxr-xr-x 1 root root 9008 May 4 00:57 Test19UdpServer32 -rw-r--r-- 1 root root 860 May 4 00:57 Test19UdpServer.c11 drwx------ 2 root root 12288 May 4 00:56 lost+found13 -rwxr-xr-x 1 root root 44168 May 4 00:57 ping
上面提到的 hash 的计算方式存在于 hash.ext4fs_dirhash 中
readdir/ls 中的文件顺序关联的问题?
可以关联到如下问题中的 "WebappClassloader 如何加载 ?", 它的类加载顺序 依赖于 File.list
40 classpath中存在多个jar存在同限定名的class classloader会如何加载_蓝风9的博客-CSDN博客_xbootclasspath 多个jar
File.list 实现来自于 FileSystem.list
其实现 也取决于 readdir 相关具体的实现
完
相关文章:

12 readdir 函数
前言 在之前 ls 命令 中我们可以看到, ls 命令的执行也是依赖于 opendir, readdir, stat, lstat 等相关操作系统提供的相关系统调用来处理业务 因此 我们这里来进一步看一下 更细节的这些 系统调用 我们这里关注的是 readdir 这个函数, 入口系统调用是 getdents 如下调试…...

Windows环境搭建Android开发环境-Android Studio/Git/JDK
Windows环境搭建Android开发环境-Android Studio/Git/JDK 因为休假回来后公司的开发环境由Ubuntu变为了Windows,所以需要重新配置一下开发环境。 工作多年第一次使用Windows环境进行开发工作,作次记录下来。 一、 Git安装 1.1git 标题软件下载 网址&…...

全国爱耳日丨听力受损严重有哪些解决办法
——【科学爱耳护耳,实现主动健康】随着数码电子设备使用越来越方便、日常使用时间越来越长,听力障碍、患上耳道疾病一系列问题也接踵而至,在当下我们必须重视听力健康,采取更科学的听音方式,保护听力健康,…...

【抽水蓄能电站】基于粒子群优化算法的抽水蓄能电站的最佳调度方案研究(Matlab代码实现)
👨🎓个人主页:研学社的博客💥💥💞💞欢迎来到本博客❤️❤️💥💥🏆博主优势:🌞🌞🌞博客内容尽量做到思维缜密…...

【异常】因多租户字段缺少导致Error updating database. Column ‘tenant_id‘ cannot be null
一、报错内容 org.springframework.dao.DataIntegrityViolationException: ### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column tenant_id cannot be null ### The error may exist in com/xxx/cloud/mall/admin/mapper/Goods…...

类和对象(上)
文章目录 面向对象的初步认知类的实例化this引用对象的构造及初始化封装static成员代码块内部类 对象的打印一、面向对象的初步认知 Java是一门纯面向对象的语言(Object Oriented Program,简称OOP),在面向对象的世界里,一切皆为对象。在java中…...

Java经典面试题——谈谈 Java 反射机制,动态代理是基于什么原理?
典型回答 反射机制是 Java 语言提供的一种基本功能,赋予程序在运行时 自省(introspect,官方用语)的能力。通过反射我们可以直接操作类或者对象,比如获取某个对象的类定义,获取类声明的属性和方法ÿ…...

19 客户端服务订阅机制的核心流程
Nacos客户端服务订阅机制的核心流程 说起Nacos的服务订阅机制,大家会觉得比较难理解,那我们就来详细分析一下,那我们先从Nacos订阅的概述说起 Nacos订阅概述 Nacos的订阅机制,如果用一句话来描述就是:Nacos客户端通…...

教师论文|科技专著管理系统
技术:Java、JSP等摘要:随着计算机和互联网技术的发展,社会的信息化程度越来越高,各行各业只有适应这种发展趋势,才能增强自己的适应能力和竞争能力,不断发展壮大。大学作为教育的基地,是社会进步…...

骨传导耳机是什么意思,骨传导耳机的好处具体有哪些
在这个全民都是手机的时代,各种蓝牙耳机,入耳式耳机,真无线耳机等各种款式琳琅满目。而骨传导耳机是一种全新的科技产物,顾名思义就是通过头骨振动将声音传至外耳内的耳机。由于无需入耳,不会对耳朵造成任何影响。那…...

elasticsearch—使用汇总
文档结构1、概念简介2、使用创景3、核心组件4、环境部署5、操作实践官方网站:https://www.elastic.co/cn/elasticsearch/ 官方手册:https://www.elastic.co/guide/en/elasticsearch/reference/8.6/getting-started.html 参考教程: Aÿ…...

聊一聊代码重构——我们为什么要代码重构
代码重构 事情的起因是在去年下半年,我们终于无法承受往年的历史包袱而决定开始进行代码重构。 在以前我们尝试过进行代码重构但是从来没有系统性的考虑过如何重构。在对代码重构的过程中很多经验都是来自《重构:改善既有代码的设计》这本书,…...

【Python学习笔记】第二十九节 Python2 和Python3发生了哪些变化
Python 版本分为两大流派,一个是 Python 2.x 版本,另外一个是 Python 3.x 版本,Python 官方同时提供了对这两个版本的支持和维护。2020 年 1 月 1 日,Python 官方终止了对 Python 2.7 版本(最后一个 Python 2.x 版本&a…...

[oeasy]python0099_雅达利大崩溃_IBM的开放架构_兼容机_oem
雅达利大崩溃 回忆上次内容 个人计算机浪潮已经来临 苹果公司迅速发展微软公司脱离mits准备做纯软件公司IBM用大型机思路制作的5100惨败 Commodore 64 既做计算机又做游戏机 计算机行业和游戏行业 跟随着底层技术不断迭代已经进入了战乱纷纷的年代最终又会如何呢?…...

学术论文投稿之同行评审过程中可能会遭遇哪些偏见?
同行评审过程的顺利进行,在很大程度上取决于学术界的积极参与和相互信任,以及需要参与各方都以负责任的态度行事。作为审稿专家,向作者提供公正、客观的评价是至关重要的。同行评审过程中,若有任何偏离客观性的行为,均…...

Python写一个自动发送直播弹幕的工具,非常简单
哈喽大家好,今天给大家用Python整一个可以在直播间自动发弹幕的工具,来为喜欢的主播疯狂扣6 ! 事情原由昨晚回家,表弟在看LOL直播,看得我气不打一处来,差点就想锤他。 身为程序员的表弟,看直…...

学生档案管理系统的设计与实现
技术:Java、JSP等摘要:本设计是为托普学院学生档案的管理实现电子化而设计的,系统开发采用J2EE技术,数据库采用了SQL Server 2005,因而系统具有很好的扩展性、可移植性,实现了教学资源的信息化管理。主要功…...

JavaEE学习笔记-SpringBoot快速上手、部分注解解释
SpringBoot快速上手 一、快速创建SpringBoot应用1.1利用IDEA提供的Spring Initializr创建Spring Boot应用1.2Spring Boot生成的项目结构介绍1.3初步测试后端是否OK(建立一个controll类)二、热部署2.1 添加依赖2.2 Setting处项目自动化设置2.3 具体项目设置2.4 待选步骤三、注…...

【Python学习笔记】第二十六节 Python PyMySQL
一、什么是 PyMySQL?PyMySQL 是在 Python3.x 版本中用于连接 MySQL 服务器的一个库。可以用它来连接Python和MySQL。如果你追求速度,这是一个很好的选择,因为它比mysql-connector-python快。PyMySQL 遵循 Python 数据库 API v2.0 规范&#x…...

Android问题笔记 -关于Kotlin插件版本的问题
专栏分享点击跳转>Unity3D特效百例点击跳转>案例项目实战源码点击跳转>游戏脚本-辅助自动化点击跳转>Android控件全解手册点击跳转>Scratch编程案例 👉关于作者 众所周知,人生是一个漫长的流程,不断克服困难,不断…...

【同步工具类:Phaser】
同步工具类:Phaser介绍特性动态调整线程个数层次Phaser源码分析state 变量解析构造函数对state变量赋值阻塞方法arrive()awaitAdvance()业务场景实现CountDownLatch功能代码测试结果实现 CyclicBarrier功能代码展示测试结果总结介绍 一个可重复使用的同步屏障,功能…...

Linux命令·rmdir
今天学习一下linux中命令: rmdir命令。rmdir是常用的命令,该命令的功能是删除空目录,一个目录被删除之前必须是空的。(注意,rm - r dir命令可代替rmdir,但是有很大危险性。)删除某目录时也必须具…...

从0开始自制解释器——综述
作为一个程序员,自制自己的编译器一直是一个梦想。之前也曾为了这个梦想学习过类似龙书、虎书这种大部头的书,但是光看理论总有一些云里雾里的感觉。看完只觉得脑袋昏昏沉沉并没有觉得有多少长进。当初看过《疯狂的程序员》这本书,书里说&…...

【spring】spring5特性
1、整个 Spring5 框架的代码基于 Java8,运行时兼容 JDK9,许多不建议使用的类和方 法在代码库中删除 日志框架 2、Spring 5.0 框架自带了通用的日志封装 (1)Spring5 已经移除 Log4jConfigListener,官方建议使用 Log4j…...

曹云金回归、于谦电影杀青,德云社想不火都难
说起民间最大的相声社团,首屈一指的要属德云社,之所以说德云社最大,主要是优秀相声演员够多。德云社在郭德纲的带领下,如今已经是人才济济,听说最近队伍会进一步壮大,前徒弟曹云金也要回归了。 当年曹云金作…...

从入门到精通:数据库设计规范指南
当我们开始设计数据库时,我们需要确保它是可靠和可扩展的。为了实现这一目标,我们需要遵循一些数据库设计规范。本文将介绍一些数据库设计规范,以确保您的数据库能够满足当前和未来的业务需求。 目录 一、命名规则 二、数据类型 三、索引…...

js 求解《初级算法》8.字符串转换整数(atoi)
一、题目描述 请你来实现一个 myAtoi(string s) 函数,使其能将字符串转换成一个 32 位有符号整数 算法如下: 读入字符串并丢弃无用的前导空格 检查下一个字符(假设还未到字符末尾)为正还是负号,读取该字符ÿ…...

Vue学习笔记(5)
5.1 其他常用内置指令 5.1.1 v-text v-text是Vue.js中常用的内置指令之一,用于将数据绑定到DOM元素的文本内容。与双花括号({{ }})类似,v-text指令也可以将Vue实例中的数据渲染到页面上。 使用v-text指令时,Vue会将指…...

LeetCode 面试题 05.02. Binary Number to String LCCI【字符串,数学】中等
本文属于「征服LeetCode」系列文章之一,这一系列正式开始于2021/08/12。由于LeetCode上部分题目有锁,本系列将至少持续到刷完所有无锁题之日为止;由于LeetCode还在不断地创建新题,本系列的终止日期可能是永远。在这一系列刷题文章…...

数据结构 “串“ 的补充提升与KMP算法及其优化的具体实现
❤️作者主页:微凉秋意 ✅作者简介:后端领域优质创作者🏆,CSDN内容合伙人🏆,阿里云专家博主🏆 ✨精品专栏:C面向对象 🔥系列专栏:数据结构与课程设计 文章目录…...