X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=gameserver_db.h;fp=gameserver_db.h;h=90852481e9ae1804b8523f78189c05cdd983bc51;hb=a7d144c7905105909cc4434e0ab43008bbb8f89f;hp=d3d3429669c24ef3233b0c32c8c4808fad48c4c7;hpb=4eb81766e4e7c54599b057ebf57b7fab01cd0726;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/gameserver_db.h b/gameserver_db.h index d3d3429..9085248 100644 --- a/gameserver_db.h +++ b/gameserver_db.h @@ -11,7 +11,7 @@ #define DB_COURSE_UID_MAX 32 #define DB_TABLE_UID_MAX (ADDON_UID_MAX+DB_COURSE_UID_MAX+32) -#define DB_CRASH_ON_SQLITE_ERROR +//#define DB_CRASH_ON_SQLITE_ERROR #define DB_LOG_SQL_STATEMENTS #define DB_REQUEST_BUFFER_SIZE (1024*2) @@ -92,8 +92,8 @@ static int db_verify_charset( const char *str, int mincount ){ /* * Find table name from mod UID and course UID, plus the week number */ -static int db_get_highscore_table_name( char mod_uid[ADDON_UID_MAX], - char run_uid[DB_COURSE_UID_MAX], +static int db_get_highscore_table_name( const char *mod_uid, + const char *run_uid, u32 week, char table_name[DB_TABLE_UID_MAX] ){ if( !db_verify_charset( mod_uid, 13 ) || @@ -126,9 +126,8 @@ static i32 db_readusertime( char table[DB_TABLE_UID_MAX], u64 steamid ){ if( !vg_strgood(&q) ) return 0; sqlite3_stmt *stmt = db_stmt( q.buffer ); - sqlite3_bind_int64( stmt, 1, *((i64 *)&steamid) ); - if( stmt ){ + sqlite3_bind_int64( stmt, 1, *((i64 *)&steamid) ); int fc = sqlite3_step( stmt ); i32 result = 0; @@ -231,12 +230,40 @@ static int db_updateuser( u64 steamid, const char *username, int admin ){ else return 0; } +/* + * Get user info + */ +static int db_getuserinfo( u64 steamid, char *out_username, u32 username_max, + i32 *out_type ){ + sqlite3_stmt *stmt = db_stmt( "SELECT * FROM users WHERE steamid = ?;" ); + if( !stmt ) return 0; + + sqlite3_bind_int64( stmt, 1, *((i64 *)&steamid) ); + int fc = sqlite3_step( stmt ); + + if( fc != SQLITE_ROW ){ + log_sqlite3( fc ); + sqlite3_finalize( stmt ); + return 0; + } + + if( out_username ){ + const char *name = (const char *)sqlite3_column_text( stmt, 1 ); + vg_strncpy( name, out_username, username_max, k_strncpy_allow_cutoff ); + } + + if( out_type ) + *out_type = sqlite3_column_int( stmt, 2 ); + + sqlite3_finalize( stmt ); + return 1; +} + static void _db_thread_end(void){ pthread_mutex_lock( &database.mux ); database.kill = 1; pthread_mutex_unlock( &database.mux ); sqlite3_close( database.db ); - pthread_mutex_destroy( &database.mux ); } static void *db_loop(void *_){ @@ -337,10 +364,15 @@ static int db_killed(void){ return result; } -static void db_free(void){ +static void db_kill(void){ pthread_mutex_lock( &database.mux ); database.kill = 1; pthread_mutex_unlock( &database.mux ); + pthread_join( database.thread, NULL ); +} + +static void db_free(void){ + pthread_mutex_destroy( &database.mux ); } static db_request *db_alloc_request( u32 size ){