记一次文件读写遇到的bug

Posted 看,未来

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记一次文件读写遇到的bug相关的知识,希望对你有一定的参考价值。

代码一:

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

using namespace std;

int main(){
	char* buf = new char[8];	//can't alloc 1024?
	int fd = open("./fileIO.txt", O_CREAT|O_RDWR);
	
	if(fd<0){
		cout<<"open( file failed!)"<<endl;
	}

	return 0;
}

结果,创建出来的文件出现了很危险的权限,S和T、


代码2:

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

using namespace std;

int main(){
	char* buf = new char[8];	//can't alloc 1024?
	int fd = open("./fileIO.txt", O_CREAT|O_RDWR);
	
	if(fd<0){
		cout<<"open( file failed!)"<<endl;
	}

	int m = write(fd,"test\\n",5);
	cout<<m<<endl;

	int n = read(fd,buf,m);
	cout<<n<<endl;
	printf("%s\\n",buf);
	close(fd);
	return 0;
}

结果:m有值,n为0,buf是确定是空的了。


后来,我觉得会不会是m是size_t的缘故,也只能死马当活马医了。

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

using namespace std;

int main(){
	char* buf = new char[8];	//can't alloc 1024?
	int fd = open("./fileIO.txt", O_CREAT|O_RDWR);
	
	if(fd<0){
		cout<<"open( file failed!)"<<endl;
	}

	int m = write(fd,"test\\n",5);
	cout<<m<<endl;
	
	int n = read(fd,buf,5);
	cout<<n<<endl;
	printf("%s\\n",buf);
	close(fd);
	return 0;
}

嘿嘿,m/n都有值了,但是依旧buf没东西、
sizeof(buf) 也有长度,但是就没东西。


终于意识到,前面打开文件写入的时候,是重头覆盖,文件内容已经被覆盖,但是新的内容还没被保存,文件操作句柄在write,所以就导致了去读读不出内容来。

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

using namespace std;

int main(){
	char* buf = new char[8];	//can't alloc 1024?
	int fd = open("./fileIO.txt", O_CREAT|O_RDWR);
	
	if(fd<0){
		cout<<"open( file failed!)"<<endl;
	}

	int m = write(fd,"test\\n",5);
	cout<<m<<endl;
	close(fd);

	fd = open("./fileIO.txt", O_CREAT|O_RDWR);
	int n = read(fd,buf,5);
	cout<<n<<endl;
	printf("%s\\n",buf);
	close(fd);
	return 0;
}

这样呢?

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

using namespace std;

int main(){
	char* buf = new char[8];	//can't alloc 1024?
	fd = open("./fileIO.txt", O_CREAT|O_RDWR|O_APPEND);
	
	if(fd<0){
		cout<<"open( file failed!)"<<endl;
	}

	int m = write(fd,"test\\n",5);

	int n = read(fd,buf,5);
	cout<<n<<endl;
	printf("%s\\n",buf);
	close(fd);
	return 0;
}

不好使啊,还是那句话啊,还没存回去呢。


从这个记录中,可以推出文件读写的流程来:
打开文件,获取句柄;
将文件内容写入缓冲区操作,此刻文件内部空虚;
关闭文件,将缓冲区内新文件内容写回。
可进行下一步操作。

所以,记得关掉。
还有,读取的时候,记得换行,刷新缓冲区。


以上是关于记一次文件读写遇到的bug的主要内容,如果未能解决你的问题,请参考以下文章

springcloud 请求超时,记一次bug

优化器Bug?记一次慢SQL问题分析过程

记一次文件编码出现的BUG javax.crypto.BadPaddingException: Given final block not properly padded

记一次netty追源码找bug过程

解Bug之路-记一次调用外网服务概率性失败问题的排查

记一次生产的bug