[vlc-devel] commit: Added a utf8_mkstemp implementation. (Laurent Aimar )
git version control
git at videolan.org
Tue Nov 18 00:10:37 CET 2008
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Nov 18 00:05:49 2008 +0100| [c7a41e0c0d3d710f94e3fbe0bf423a56565af16a] | committer: Laurent Aimar
Added a utf8_mkstemp implementation.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c7a41e0c0d3d710f94e3fbe0bf423a56565af16a
---
include/vlc_charset.h | 2 ++
src/text/filesystem.c | 43 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/include/vlc_charset.h b/include/vlc_charset.h
index 69bdc17..5d3a1b5 100644
--- a/include/vlc_charset.h
+++ b/include/vlc_charset.h
@@ -60,6 +60,8 @@ VLC_EXPORT( int, utf8_lstat, ( const char *filename, struct stat *buf ) );
VLC_EXPORT( int, utf8_vfprintf, ( FILE *stream, const char *fmt, va_list ap ) );
VLC_EXPORT( int, utf8_fprintf, ( FILE *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) );
+VLC_EXPORT( int, utf8_mkstemp, ( char * ) );
+
VLC_EXPORT( char *, EnsureUTF8, ( char * ) );
VLC_EXPORT( const char *, IsUTF8, ( const char * ) LIBVLC_USED );
diff --git a/src/text/filesystem.c b/src/text/filesystem.c
index 8ef609a..304d7af 100644
--- a/src/text/filesystem.c
+++ b/src/text/filesystem.c
@@ -432,3 +432,46 @@ int utf8_unlink( const char *filename )
LocaleFree( local_name );
return ret;
}
+
+int utf8_mkstemp( char *template )
+{
+ static const char digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
+ static const int i_digits = sizeof(digits)/sizeof(*digits) - 1;
+
+ /* */
+ assert( template );
+
+ /* Check template validity */
+ const size_t i_length = strlen( template );
+ char *psz_rand = &template[i_length-6];
+
+ if( i_length < 6 || strcmp( psz_rand, "XXXXXX" ) )
+ {
+ errno = EINVAL;
+ return -1;
+ }
+
+ uint64_t i_rand = mdate();
+
+ /* */
+ for( int i = 0; i < 256; i++ )
+ {
+ /* Create a pseudo random file name */
+ for( int j = 0; j < 6; j++ )
+ {
+ i_rand = i_rand * UINT64_C(1103515245) + 12345;
+ psz_rand[j] = digits[((i_rand >> 16) & 0xffff) % i_digits];
+ }
+
+ /* */
+ int fd = utf8_open( template, O_CREAT | O_EXCL | O_RDWR, 0600 );
+ if( fd >= 0 )
+ return fd;
+ if( errno != EEXIST )
+ return -1;
+ }
+
+ errno = EEXIST;
+ return -1;
+}
+
More information about the vlc-devel
mailing list