| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516 | /* * fstat.c * *  Created on: 2010-11-17 *      Author: bernard */#include <stdio.h>#include <stdlib.h>#include <finsh.h>#include <errno.h>#include <sys/fcntl.h>#include <sys/stat.h>const char* text = "this is a test string\n";void libc_fstat(){	int fd;	struct stat s;	fd = open("/tmp/tt.txt", O_WRONLY | O_CREAT, 0);	if (fd < 0)	{		printf("open failed\n");		return;	}	write(fd, text, strlen(text) + 1);	printf("begin: %d\n", lseek(fd, 0, SEEK_SET));	printf("end: %d\n", lseek(fd, 0, SEEK_END));	printf("fstat result: %d\n", fstat(fd, &s));	close(fd);}FINSH_FUNCTION_EXPORT(libc_fstat, fstat test for libc);void libc_lseek(){	int fd;	fd = open("/tmp/tt.txt", O_WRONLY | O_CREAT, 0);	if (fd < 0)	{		printf("open failed\n");		return;	}	write(fd, text, strlen(text) + 1);	printf("begin: %d\n", lseek(fd, 0, SEEK_SET));	printf("end: %d\n", lseek(fd, 0, SEEK_END));	close(fd);}FINSH_FUNCTION_EXPORT(libc_lseek, lseek test for libc);void sleep(int tick){	rt_thread_sleep(tick);}int libc_fseek(void){	const char *tmpdir;	char *fname;	int fd;	FILE *fp;	const char outstr[] = "hello world!\n";	char strbuf[sizeof outstr];	char buf[200];	struct stat st1;	struct stat st2;	int result = 0;	tmpdir = getenv("TMPDIR");	if (tmpdir == NULL || tmpdir[0] == '\0')		tmpdir = "/tmp";	asprintf(&fname, "%s/tst-fseek.XXXXXX", tmpdir);	if (fname == NULL)	{		fprintf(stderr, "cannot generate name for temporary file: %s\n",				strerror(errno));		return 1;	}	/* Create a temporary file.   */	fd = mkstemp(fname);	if (fd == -1)	{		fprintf(stderr, "cannot open temporary file: %s\n", strerror(errno));		return 1;	}	fp = fdopen(fd, "w+");	if (fp == NULL)	{		fprintf(stderr, "cannot get FILE for temporary file: %s\n", strerror(				errno));		return 1;	}	setbuffer(fp, strbuf, sizeof(outstr) - 1);	if (fwrite(outstr, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: write error\n", __LINE__);		result = 1;		goto out;	}	/* The EOF flag must be reset.  */	if (fgetc(fp) != EOF)	{		printf("%d: managed to read at end of file\n", __LINE__);		result = 1;	}	else if (!feof(fp))	{		printf("%d: EOF flag not set\n", __LINE__);		result = 1;	}	if (fseek(fp, 0, SEEK_CUR) != 0)	{		printf("%d: fseek(fp, 0, SEEK_CUR) failed\n", __LINE__);		result = 1;	}	else if (feof(fp))	{		printf("%d: fseek() didn't reset EOF flag\n", __LINE__);		result = 1;	}	/* Do the same for fseeko().  */	if (fgetc(fp) != EOF)	{		printf("%d: managed to read at end of file\n", __LINE__);		result = 1;	}	else if (!feof(fp))	{		printf("%d: EOF flag not set\n", __LINE__);		result = 1;	}	if (fseeko(fp, 0, SEEK_CUR) != 0)	{		printf("%d: fseek(fp, 0, SEEK_CUR) failed\n", __LINE__);		result = 1;	}	else if (feof(fp))	{		printf("%d: fseek() didn't reset EOF flag\n", __LINE__);		result = 1;	}	/* Go back to the beginning of the file: absolute.  */	if (fseek(fp, 0, SEEK_SET) != 0)	{		printf("%d: fseek(fp, 0, SEEK_SET) failed\n", __LINE__);		result = 1;	}	else if (fflush(fp) != 0)	{		printf("%d: fflush() failed\n", __LINE__);		result = 1;	}	else if (lseek(fd, 0, SEEK_CUR) != 0)	{		int pos = lseek(fd, 0, SEEK_CUR);		printf("%d: lseek() returned different position, pos %d\n", __LINE__,				pos);		result = 1;	}	else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: fread() failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0)	{		printf("%d: content after fseek(,,SEEK_SET) wrong\n", __LINE__);		result = 1;	}	/* Now with fseeko.  */	if (fseeko(fp, 0, SEEK_SET) != 0)	{		printf("%d: fseeko(fp, 0, SEEK_SET) failed\n", __LINE__);		result = 1;	}	else if (fflush(fp) != 0)	{		printf("%d: fflush() failed\n", __LINE__);		result = 1;	}	else if (lseek(fd, 0, SEEK_CUR) != 0)	{		printf("%d: lseek() returned different position\n", __LINE__);		result = 1;	}	else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: fread() failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0)	{		printf("%d: content after fseeko(,,SEEK_SET) wrong\n", __LINE__);		result = 1;	}	/* Go back to the beginning of the file: relative.  */	if (fseek(fp, -((int) sizeof(outstr) - 1), SEEK_CUR) != 0)	{		printf("%d: fseek(fp, 0, SEEK_SET) failed\n", __LINE__);		result = 1;	}	else if (fflush(fp) != 0)	{		printf("%d: fflush() failed\n", __LINE__);		result = 1;	}	else if (lseek(fd, 0, SEEK_CUR) != 0)	{		printf("%d: lseek() returned different position\n", __LINE__);		result = 1;	}	else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: fread() failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0)	{		printf("%d: content after fseek(,,SEEK_SET) wrong\n", __LINE__);		result = 1;	}	/* Now with fseeko.  */	if (fseeko(fp, -((int) sizeof(outstr) - 1), SEEK_CUR) != 0)	{		printf("%d: fseeko(fp, 0, SEEK_SET) failed\n", __LINE__);		result = 1;	}	else if (fflush(fp) != 0)	{		printf("%d: fflush() failed\n", __LINE__);		result = 1;	}	else if (lseek(fd, 0, SEEK_CUR) != 0)	{		printf("%d: lseek() returned different position\n", __LINE__);		result = 1;	}	else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: fread() failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0)	{		printf("%d: content after fseeko(,,SEEK_SET) wrong\n", __LINE__);		result = 1;	}	/* Go back to the beginning of the file: from the end.  */	if (fseek(fp, -((int) sizeof(outstr) - 1), SEEK_END) != 0)	{		printf("%d: fseek(fp, 0, SEEK_SET) failed\n", __LINE__);		result = 1;	}	else if (fflush(fp) != 0)	{		printf("%d: fflush() failed\n", __LINE__);		result = 1;	}	else if (lseek(fd, 0, SEEK_CUR) != 0)	{		printf("%d: lseek() returned different position\n", __LINE__);		result = 1;	}	else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: fread() failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0)	{		printf("%d: content after fseek(,,SEEK_SET) wrong\n", __LINE__);		result = 1;	}	/* Now with fseeko.  */	if (fseeko(fp, -((int) sizeof(outstr) - 1), SEEK_END) != 0)	{		printf("%d: fseeko(fp, 0, SEEK_SET) failed\n", __LINE__);		result = 1;	}	else if (fflush(fp) != 0)	{		printf("%d: fflush() failed\n", __LINE__);		result = 1;	}	else if (lseek(fd, 0, SEEK_CUR) != 0)	{		printf("%d: lseek() returned different position\n", __LINE__);		result = 1;	}	else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: fread() failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0)	{		printf("%d: content after fseeko(,,SEEK_SET) wrong\n", __LINE__);		result = 1;	}	if (fwrite(outstr, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: write error 2\n", __LINE__);		result = 1;		goto out;	}	if (fwrite(outstr, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: write error 3\n", __LINE__);		result = 1;		goto out;	}	if (fwrite(outstr, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: write error 4\n", __LINE__);		result = 1;		goto out;	}	if (fwrite(outstr, sizeof(outstr) - 1, 1, fp) != 1)	{		printf("%d: write error 5\n", __LINE__);		result = 1;		goto out;	}	if (fputc('1', fp) == EOF || fputc('2', fp) == EOF)	{		printf("%d: cannot add characters at the end\n", __LINE__);		result = 1;		goto out;	}	/* Check the access time.  */	if (fstat(fd, &st1) < 0)	{		printf("%d: fstat64() before fseeko() failed\n\n", __LINE__);		result = 1;	}	else	{		sleep(1);		if (fseek(fp, -(2 + 2 * (sizeof(outstr) - 1)), SEEK_CUR) != 0)		{			printf("%d: fseek() after write characters failed\n", __LINE__);			result = 1;			goto out;		}		else		{			time_t t;			/* Make sure the timestamp actually can be different.  */			sleep(1);			t = time(NULL);			if (fstat(fd, &st2) < 0)			{				printf("%d: fstat64() after fseeko() failed\n\n", __LINE__);				result = 1;			}			if (st1.st_ctime >= t)			{				printf("%d: st_ctime not updated\n", __LINE__);				result = 1;			}			if (st1.st_mtime >= t)			{				printf("%d: st_mtime not updated\n", __LINE__);				result = 1;			}			if (st1.st_ctime >= st2.st_ctime)			{				printf("%d: st_ctime not changed\n", __LINE__);				result = 1;			}			if (st1.st_mtime >= st2.st_mtime)			{				printf("%d: st_mtime not changed\n", __LINE__);				result = 1;			}		}	}	if (fread(buf, 1, 2 + 2 * (sizeof(outstr) - 1), fp) != 2 + 2			* (sizeof(outstr) - 1))	{		printf("%d: reading 2 records plus bits failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0 || memcmp(			&buf[sizeof(outstr) - 1], outstr, sizeof(outstr) - 1) != 0 || buf[2			* (sizeof(outstr) - 1)] != '1' || buf[2 * (sizeof(outstr) - 1) + 1]			!= '2')	{		printf("%d: reading records failed\n", __LINE__);		result = 1;	}	else if (ungetc('9', fp) == EOF)	{		printf("%d: ungetc() failed\n", __LINE__);		result = 1;	}	else if (fseek(fp, -(2 + 2 * (sizeof(outstr) - 1)), SEEK_END) != 0)	{		printf("%d: fseek after ungetc failed\n", __LINE__);		result = 1;	}	else if (fread(buf, 1, 2 + 2 * (sizeof(outstr) - 1), fp) != 2 + 2			* (sizeof(outstr) - 1))	{		printf("%d: reading 2 records plus bits failed\n", __LINE__);		result = 1;	}	else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0 || memcmp(			&buf[sizeof(outstr) - 1], outstr, sizeof(outstr) - 1) != 0 || buf[2			* (sizeof(outstr) - 1)] != '1')	{		printf("%d: reading records for the second time failed\n", __LINE__);		result = 1;	}	else if (buf[2 * (sizeof(outstr) - 1) + 1] == '9')	{		printf("%d: unget character not ignored\n", __LINE__);		result = 1;	}	else if (buf[2 * (sizeof(outstr) - 1) + 1] != '2')	{		printf("%d: unget somehow changed character\n", __LINE__);		result = 1;	}	fclose(fp);	fp = fopen(fname, "r");	if (fp == NULL)	{		printf("%d: fopen() failed\n\n", __LINE__);		result = 1;	}	else if (fstat(fileno(fp), &st1) < 0)	{		printf("%d: fstat64() before fseeko() failed\n\n", __LINE__);		result = 1;	}	else if (fseeko(fp, 0, SEEK_END) != 0)	{		printf("%d: fseeko(fp, 0, SEEK_END) failed\n", __LINE__);		result = 1;	}	else if (ftello(fp) != st1.st_size)	{		printf("%d: fstat64 st_size %zd ftello %zd\n", __LINE__,				(size_t) st1.st_size, (size_t) ftello(fp));		result = 1;	}	else		printf("%d: SEEK_END works\n", __LINE__);	if (fp != NULL)		fclose(fp);	fp = fopen(fname, "r");	if (fp == NULL)	{		printf("%d: fopen() failed\n\n", __LINE__);		result = 1;	}	else if (fstat(fileno(fp), &st1) < 0)	{		printf("%d: fstat64() before fgetc() failed\n\n", __LINE__);		result = 1;	}	else if (fgetc(fp) == EOF)	{		printf("%d: fgetc() before fseeko() failed\n\n", __LINE__);		result = 1;	}	else if (fseeko(fp, 0, SEEK_END) != 0)	{		printf("%d: fseeko(fp, 0, SEEK_END) failed\n", __LINE__);		result = 1;	}	else if (ftello(fp) != st1.st_size)	{		printf("%d: fstat64 st_size %zd ftello %zd\n", __LINE__,				(size_t) st1.st_size, (size_t) ftello(fp));		result = 1;	}	else		printf("%d: SEEK_END works\n", __LINE__);	if (fp != NULL)		fclose(fp);	out: unlink(fname);	return result;}FINSH_FUNCTION_EXPORT(libc_fseek, lseek test for libc);
 |