dtest.c

来自「YAFFS」· C语言 代码 · 共 1,643 行 · 第 1/2 页

C
1,643
字号
	   yaffs_close(f);	}				d = yaffs_opendir(path);	i = 0;	if (d) {	while((de = yaffs_readdir(d)) != NULL) {	if (total >lastTotal+100*9*1024||(i & 1023)==0){	printf("files = %d, total = %d\n",i, total);	lastTotal = total;	}		i++;		sprintf(str,"%s/%s",path,de->d_name);		yaffs_lstat(str,&s);		switch(s.st_mode & S_IFMT){		case S_IFREG:	//printf("data file");	total += s.st_size;	break;	}	}		yaffs_closedir(d);	}		return 0;}int yaffs_scan_test(const char *path){}void rename_over_test(const char *mountpt){	int i;	char a[100];	char b[100];		sprintf(a,"%s/a",mountpt);	sprintf(b,"%s/b",mountpt);		yaffs_StartUp();		yaffs_mount(mountpt);	i = yaffs_open(a,O_CREAT | O_TRUNC | O_RDWR, 0); 	yaffs_close(i);	i = yaffs_open(b,O_CREAT | O_TRUNC | O_RDWR, 0);	yaffs_close(i);	yaffs_rename(a,b); // rename over	yaffs_rename(b,a); // rename back again (not renaimng over)	yaffs_rename(a,b); // rename back again (not renaimng over)			yaffs_unmount(mountpt);	}int resize_stress_test(const char *path){   int a,b,i,j;   int x;   int r;   char aname[100];   char bname[100];      char abuffer[1000];   char bbuffer[1000];      yaffs_StartUp();      yaffs_mount(path);      sprintf(aname,"%s%s",path,"/a");   sprintf(bname,"%s%s",path,"/b");      memset(abuffer,'a',1000);   memset(bbuffer,'b',1000);      a = yaffs_open(aname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);   b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);      printf(" %s %d %s %d\n",aname,a,bname,b);     x = 0;      for(j = 0; j < 100; j++)   {		yaffs_lseek(a,0,SEEK_END);				for(i = 0; i <20000; i++)		{		   //r =        yaffs_lseek(b,i,SEEK_SET);			//r = yaffs_write(b,bbuffer,1000);						if(x & 0x16)			{				// shrink				int syz = yaffs_lseek(a,0,SEEK_END);								syz -= 500;				if(syz < 0) syz = 0;				yaffs_truncate(a,syz);							}			else			{				//expand				r = yaffs_lseek(a,i * 500,SEEK_SET);				r = yaffs_write(a,abuffer,1000);			}			x++;					}   }      return 0;   }int resize_stress_test_no_grow_complex(const char *path,int iters){   int a,b,i,j;   int x;   int r;   char aname[100];   char bname[100];      char abuffer[1000];   char bbuffer[1000];      yaffs_StartUp();      yaffs_mount(path);      sprintf(aname,"%s%s",path,"/a");   sprintf(bname,"%s%s",path,"/b");      memset(abuffer,'a',1000);   memset(bbuffer,'b',1000);      a = yaffs_open(aname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);   b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);      printf(" %s %d %s %d\n",aname,a,bname,b);     x = 0;      for(j = 0; j < iters; j++)   {		yaffs_lseek(a,0,SEEK_END);				for(i = 0; i <20000; i++)		{		   //r =        yaffs_lseek(b,i,SEEK_SET);			//r = yaffs_write(b,bbuffer,1000);						if(!(x%20))			{				// shrink				int syz = yaffs_lseek(a,0,SEEK_END);								while(syz > 4000)				{									syz -= 2050;					if(syz < 0) syz = 0;					yaffs_truncate(a,syz);					syz = yaffs_lseek(a,0,SEEK_END);					printf("shrink to %d\n",syz);				}											}			else			{				//expand				r = yaffs_lseek(a,500,SEEK_END);				r = yaffs_write(a,abuffer,1000);			}			x++;										}		printf("file size is %d\n",yaffs_lseek(a,0,SEEK_END));   }      return 0;   }int resize_stress_test_no_grow(const char *path,int iters){   int a,b,i,j;   int x;   int r;   char aname[100];   char bname[100];      char abuffer[1000];   char bbuffer[1000];      yaffs_StartUp();      yaffs_mount(path);      sprintf(aname,"%s%s",path,"/a");   sprintf(bname,"%s%s",path,"/b");      memset(abuffer,'a',1000);   memset(bbuffer,'b',1000);      a = yaffs_open(aname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);   b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);      printf(" %s %d %s %d\n",aname,a,bname,b);     x = 0;      for(j = 0; j < iters; j++)   {		yaffs_lseek(a,0,SEEK_END);				for(i = 0; i <20000; i++)		{		   //r =        yaffs_lseek(b,i,SEEK_SET);			//r = yaffs_write(b,bbuffer,1000);						if(!(x%20))			{				// shrink				int syz = yaffs_lseek(a,0,SEEK_END);								while(syz > 4000)				{									syz -= 2050;					if(syz < 0) syz = 0;					yaffs_truncate(a,syz);					syz = yaffs_lseek(a,0,SEEK_END);					printf("shrink to %d\n",syz);				}											}			else			{				//expand				r = yaffs_lseek(a,-500,SEEK_END);				r = yaffs_write(a,abuffer,1000);			}			x++;										}		printf("file size is %d\n",yaffs_lseek(a,0,SEEK_END));   }      return 0;   }int directory_rename_test(void){	int r;	yaffs_StartUp();		yaffs_mount("/ram");	yaffs_mkdir("/ram/a",0);	yaffs_mkdir("/ram/a/b",0);	yaffs_mkdir("/ram/c",0);		printf("\nDirectory look-up of /ram\n");	dumpDir("/ram");	dumpDir("/ram/a");	dumpDir("/ram/a/b");	printf("Do rename (should fail)\n");			r = yaffs_rename("/ram/a","/ram/a/b/d");	printf("\nDirectory look-up of /ram\n");	dumpDir("/ram");	dumpDir("/ram/a");	dumpDir("/ram/a/b");	printf("Do rename (should not fail)\n");			r = yaffs_rename("/ram/c","/ram/a/b/d");	printf("\nDirectory look-up of /ram\n");	dumpDir("/ram");	dumpDir("/ram/a");	dumpDir("/ram/a/b");			return 1;	}int cache_read_test(void){	int a,b,c;	int i;	int sizeOfFiles = 500000;	char buffer[100];		yaffs_StartUp();		yaffs_mount("/boot");		make_a_file("/boot/a",'a',sizeOfFiles);	make_a_file("/boot/b",'b',sizeOfFiles);	a = yaffs_open("/boot/a",O_RDONLY,0);	b = yaffs_open("/boot/b",O_RDONLY,0);	c = yaffs_open("/boot/c", O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);	do{		i = sizeOfFiles;		if (i > 100) i = 100;		sizeOfFiles  -= i;		yaffs_read(a,buffer,i);		yaffs_read(b,buffer,i);		yaffs_write(c,buffer,i);	} while(sizeOfFiles > 0);				return 1;	}int cache_bypass_bug_test(void){	// This test reporoduces a bug whereby YAFFS caching *was* buypassed	// resulting in erroneous reads after writes.	// This bug has been fixed.		int a;	int i;	char buffer1[1000];	char buffer2[1000];		memset(buffer1,0,sizeof(buffer1));	memset(buffer2,0,sizeof(buffer2));			yaffs_StartUp();		yaffs_mount("/boot");		// Create a file of 2000 bytes.	make_a_file("/boot/a",'X',2000);	a = yaffs_open("/boot/a",O_RDWR, S_IREAD | S_IWRITE);		// Write a short sequence to the file.	// This will go into the cache.	yaffs_lseek(a,0,SEEK_SET);	yaffs_write(a,"abcdefghijklmnopqrstuvwxyz",20); 	// Read a short sequence from the file.	// This will come from the cache.	yaffs_lseek(a,0,SEEK_SET);	yaffs_read(a,buffer1,30); 	// Read a page size sequence from the file.	yaffs_lseek(a,0,SEEK_SET);	yaffs_read(a,buffer2,512); 		printf("buffer 1 %s\n",buffer1);	printf("buffer 2 %s\n",buffer2);		if(strncmp(buffer1,buffer2,20))	{		printf("Cache bypass bug detected!!!!!\n");	}			return 1;}int free_space_check(void){	int f;			yaffs_StartUp();		yaffs_mount("/boot");	    fill_disk("/boot/",2);	    f = yaffs_freespace("/boot");	    	    printf("%d free when disk full\n",f);           	    return 1;}int truncate_test(void){	int a;	int r;	int i;	int l;	char y[10];	yaffs_StartUp();	yaffs_mount("/boot");	yaffs_unlink("/boot/trunctest");		a = yaffs_open("/boot/trunctest", O_CREAT | O_TRUNC | O_RDWR,  S_IREAD | S_IWRITE);		yaffs_write(a,"abcdefghijklmnopqrstuvwzyz",26);		yaffs_truncate(a,3);	l= yaffs_lseek(a,0,SEEK_END);		printf("truncated length is %d\n",l);	yaffs_lseek(a,5,SEEK_SET);	yaffs_write(a,"1",1);	yaffs_lseek(a,0,SEEK_SET);		r = yaffs_read(a,y,10);	printf("read %d bytes:",r);	for(i = 0; i < r; i++) printf("[%02X]",y[i]);	printf("\n");	return 0;}void fill_disk_test(const char *mountpt){	int i;	yaffs_StartUp();		for(i = 0; i < 5; i++)	{		yaffs_mount(mountpt);		fill_disk_and_delete(mountpt,100,i+1);		yaffs_unmount(mountpt);	}	}void lookup_test(const char *mountpt){	int i;	int h;	char a[100];	char b[100];		yaffs_DIR *d;	yaffs_dirent *de;	struct yaffs_stat s;	char str[100];	yaffs_StartUp();		yaffs_mount(mountpt);					d = yaffs_opendir(mountpt);		if(!d)	{		printf("opendir failed\n");	}	else	{				for(i = 0; (de = yaffs_readdir(d)) != NULL; i++)		{			printf("unlinking %s\n",de->d_name);			yaffs_unlink(de->d_name);		}				printf("%d files deleted\n",i);	}			for(i = 0; i < 2000; i++){	sprintf(a,"%s/%d",mountpt,i);		h =  yaffs_open(a,O_CREAT | O_TRUNC | O_RDWR, 0);		yaffs_close(h);	}	yaffs_rewinddir(d);	for(i = 0; (de = yaffs_readdir(d)) != NULL; i++)	{		printf("%d  %s\n",i,de->d_name);	}			printf("%d files listed\n\n\n",i);		yaffs_rewinddir(d);	yaffs_readdir(d);	yaffs_readdir(d);	yaffs_readdir(d);		for(i = 0; i < 2000; i++){		sprintf(a,"%s/%d",mountpt,i);		yaffs_unlink(a);	}				yaffs_unmount(mountpt);	}void freespace_test(const char *mountpt){	int i;	int h;	char a[100];	char b[100];		int  f0;	int f1;	int f2;	int f3;	sprintf(a,"%s/aaa",mountpt);		yaffs_StartUp();		yaffs_mount(mountpt);		f0 = yaffs_freespace(mountpt);		h = yaffs_open(a, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);		for(i = 0; i < 100; i++)		yaffs_write(h,a,100);		yaffs_close(h);		f1 = yaffs_freespace(mountpt);		yaffs_unlink(a);		f2 = yaffs_freespace(mountpt);				yaffs_unmount(mountpt);	yaffs_mount(mountpt);		f3 = yaffs_freespace(mountpt);		printf("%d\n%d\n%d\n%d\n",f0, f1,f2,f3);		}void simple_rw_test(const char *mountpt){	int i;	int h;	char a[100];		int x;	int result;	sprintf(a,"%s/aaa",mountpt);		yaffs_StartUp();		yaffs_mount(mountpt);		yaffs_unlink(a);		h = yaffs_open(a,O_CREAT| O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);		for(i = 100000;i < 200000; i++){		result = yaffs_write(h,&i,sizeof(i));				if(result != 4)		{			printf("write error\n");			exit(1);		}	}		//yaffs_close(h);		// h = yaffs_open(a,O_RDWR, S_IREAD | S_IWRITE);			yaffs_lseek(h,0,SEEK_SET);		for(i = 100000; i < 200000; i++){		result = yaffs_read(h,&x,sizeof(x));				if(result != 4 || x != i){			printf("read error %d %x %x\n",i,result,x);		}	}		printf("Simple rw test passed\n");			}void scan_deleted_files_test(const char *mountpt){	char fn[100];	char sub[100];		const char *p;		int i;	int j;	int k;	int h;		sprintf(sub,"%s/sdir",mountpt);	yaffs_StartUp();		for(j = 0; j < 10; j++)	{		printf("\n\n>>>>>>> Run %d <<<<<<<<<<<<<\n\n",j);		yaffs_mount(mountpt);		yaffs_mkdir(sub,0);						p = (j & 0) ? mountpt: sub;			for(i = 0; i < 100; i++)		{		  sprintf(fn,"%s/%d",p,i);  		  		  if(i & 1)		  {			  h = yaffs_open(fn,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);			  for(k = 0; k < 1000; k++)				  yaffs_write(h,fn,100);			  yaffs_close(h);		  }		  else		    	yaffs_mkdir(fn,0);		}				for(i = 0; i < 10; i++)		{		  sprintf(fn,"%s/%d",p,i);  		  if(i & 1) 		  	yaffs_unlink(fn);		  else		  	yaffs_rmdir(fn);		  		}						yaffs_unmount(mountpt);	}			}void write_10k(int h){   int i;   const char *s="0123456789";   for(i = 0; i < 1000; i++)     yaffs_write(h,s,10);}void write_200k_file(const char *fn, const char *fdel, const char *fdel1){   int h1;   int h2;   int i;      h1 = yaffs_open(fn, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);      for(i = 0; i < 100000; i+= 10000)   {   	write_10k(h1);   	write_10k(h2);   }      if(yaffs_lseek(h1,0,SEEK_SET) != 1000000)   {   	printf("Could not write file\n");   }      yaffs_unlink(fdel);   for(i = 0; i < 100000; i+= 10000)   {   	write_10k(h1);   	write_10k(h2);   }      if(yaffs_lseek(h1,0,SEEK_SET) != 2000000)   {   	printf("Could not write file\n");   }      yaffs_close(h1);   yaffs_close(h2);   yaffs_unlink(fdel1);      }void verify_200k_file(const char *fn){   int h1;   int i;   char x[11];   const char *s="0123456789";      h1 = yaffs_open(fn, O_RDONLY, 0);      for(i = 0; i < 200000; i+= 10)   {   	yaffs_read(h1,x,10);	if(strncmp(x,s,10) != 0)	{		printf("File verification failed at %d\n",i);	}   }         yaffs_close(h1);	   	}void check_resize_gc_bug(const char *mountpt){	char a[30];	char b[30];	char c[30];		int i;		sprintf(a,"%s/a",mountpt);	sprintf(b,"%s/b",mountpt);	sprintf(c,"%s/c",mountpt);				yaffs_StartUp();	yaffs_mount(mountpt);	yaffs_unlink(a);	yaffs_unlink(b);		for(i = 0; i < 50; i++)	{  	   printf("A\n");write_200k_file(a,"",c);	   printf("B\n");verify_200k_file(a);	   printf("C\n");write_200k_file(b,a,c);	   printf("D\n");verify_200k_file(b);	   yaffs_unmount(mountpt);	   yaffs_mount(mountpt);	   printf("E\n");verify_200k_file(a);	   printf("F\n");verify_200k_file(b);	}		}int main(int argc, char *argv[]){	//return long_test(argc,argv);		//return cache_read_test();		//resize_stress_test_no_grow("/flash",20);		//huge_directory_test_on_path("/ram2k");		 //yaffs_backward_scan_test("/flash")	;	 	 //scan_pattern_test("/flash",10000,10);	//short_scan_test("/flash",40000,200);		//long_test_on_path("/ram2k");	// long_test_on_path("/flash");	simple_rw_test("/flash/flash");	fill_disk_test("/flash/flash");	// rename_over_test("/flash");	//lookup_test("/flash");	freespace_test("/flash/flash");				// cache_bypass_bug_test();		 //free_space_check();	 	 //check_resize_gc_bug("/flash");	 	 return 0;	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?