iOS18 第三库YYCache中sqlite3_finalize(stmt)调用报错修复

YYCache的YYKVStorage类中的有sqlite3_finalize(stmt)调用时报错一劳永逸无损修复

.h

#import "YYKVStorage.h"

NS_ASSUME_NONNULL_BEGIN
@interface YYKVStorage (Fix)
@property (nonatomic, readonly) NSString *path;        ///< The path of this storage.
@property (nonatomic, readonly) YYKVStorageType type;  ///< The type of this storage.
@property (nonatomic) BOOL errorLogsEnabled;           ///< Set `YES` to enable error logs for debug.
@end

NS_ASSUME_NONNULL_END

.m

#import "YYKVStorage+Fix.h"
#import <UIKit/UIKit.h>
#import <time.h>

#if __has_include(<sqlite3.h>)
#import <sqlite3.h>
#else
#import "sqlite3.h"
#endif
@interface YYKVStorage ()
{
    dispatch_queue_t _trashQueue;
    
    NSString *_path;
    NSString *_dbPath;
    NSString *_dataPath;
    NSString *_trashPath;
    
    sqlite3 *_db;
    CFMutableDictionaryRef _dbStmtCache;
    NSTimeInterval _dbLastOpenErrorTime;
    NSUInteger _dbOpenErrorCount;
}
@end

@implementation YYKVStorage (Fix)

#pragma mark - db

- (BOOL)_dbOpen {
    if (_db) return YES;
    
    int result = sqlite3_open(_dbPath.UTF8String, &_db);
    if (result == SQLITE_OK) {
        CFDictionaryKeyCallBacks keyCallbacks = kCFCopyStringDictionaryKeyCallBacks;
        CFDictionaryValueCallBacks valueCallbacks = {0};
        _dbStmtCache = CFDictionaryCreateMutable(CFAllocatorGetDefault(), 0, &keyCallbacks, &valueCallbacks);
        _dbLastOpenErrorTime = 0;
        _dbOpenErrorCount = 0;
        return YES;
    } else {
        _db = NULL;
            if (_dbStmtCache) {
        CFIndex size = CFDictionaryGetCount(_dbStmtCache);
        CFTypeRef *valuesRef = (CFTypeRef *)malloc(size * sizeof(CFTypeRef));
        CFDictionaryGetKeysAndValues(_dbStmtCache, NULL, (const void **)valuesRef);
        const sqlite3_stmt **stmts = (const sqlite3_stmt **)valuesRef;
        for (CFIndex i = 0; i < size; i ++) {
            sqlite3_stmt *stmt = stmts[i];
            sqlite3_finalize(stmt);
        }
        free(valuesRef);
        CFRelease(_dbStmtCache);
    }
        _dbStmtCache = NULL;
        _dbLastOpenErrorTime = CACurrentMediaTime();
        _dbOpenErrorCount++;
        
//        if (_errorLogsEnabled) {
//            NSLog(@"%s line:%d sqlite open failed (%d).", __FUNCTION__, __LINE__, result);
//        }
        return NO;
    }
}

- (BOOL)_dbClose {
    if (!_db) return YES;
    
    int  result = 0;
    BOOL retry = NO;
    BOOL stmtFinalized = NO;
    
        if (_dbStmtCache) {
        CFIndex size = CFDictionaryGetCount(_dbStmtCache);
        CFTypeRef *valuesRef = (CFTypeRef *)malloc(size * sizeof(CFTypeRef));
        CFDictionaryGetKeysAndValues(_dbStmtCache, NULL, (const void **)valuesRef);
        const sqlite3_stmt **stmts = (const sqlite3_stmt **)valuesRef;
        for (CFIndex i = 0; i < size; i ++) {
            sqlite3_stmt *stmt = stmts[i];
            sqlite3_finalize(stmt);
        }
        free(valuesRef);
        CFRelease(_dbStmtCache);
    }
    _dbStmtCache = NULL;
    
    do {
        retry = NO;
        result = sqlite3_close(_db);
        if (result == SQLITE_BUSY || result == SQLITE_LOCKED) {
            if (!stmtFinalized) {
                stmtFinalized = YES;
                sqlite3_stmt *stmt;
                while ((stmt = sqlite3_next_stmt(_db, nil)) != 0) {
                    sqlite3_finalize(stmt);
                    retry = YES;
                }
            }
        } else if (result != SQLITE_OK) {
//            if (_errorLogsEnabled) {
//                NSLog(@"%s line:%d sqlite close failed (%d).", __FUNCTION__, __LINE__, result);
//            }
        }
    } while (retry);
    _db = NULL;
    return YES;
}

@end

`sqlite3_stmt *stmt;` 是SQLite数据用于表示预处理语句(prepared statement)的指针变量。预处理语句是一种优化数据操作的方式,它允许你在执行之前准备一个SQL语句,然后多次执行这个语句,只需改变其的参数值。以下是如何使用`sqlite3_stmt`的一般步骤: 1. 准备SQL语句: 使用`sqlite3_prepare_v2`函数准备你的SQL语句,该函数将SQL语句转换为预处理语句对象。 ```c int sqlite3_prepare_v2( sqlite3 *db, /* 数据连接 */ const char *sql, /* SQL语句 */ int nByte, /* 预留空间 */ sqlite3_stmt **stmtPtr, /* 输出预处理语句指针 */ const char **zTail /* 输出SQL语句剩余部分 */ ); ``` 2. 绑定参数: 使用`sqlite3_bind_*`函数系列给预处理语句绑定参数。参数的绑定顺序应该和SQL语句占位符的顺序一致。 ```c int sqlite3_bind_blob( sqlite3_stmt*, /* 预处理语句 */ int, /* 参数索引 */ const void*, /* 参数值 */ int nBytes, /* 参数值大小 */ void(*)(void*) /* 释放回调 */ ); // 其他绑定函数如sqlite3_bind_int, sqlite3_bind_text等也类似 ``` 3. 执行SQL语句: 使用`sqlite3_step`函数执行预处理语句。每次调用`sqlite3_step`会执行一次SQL语句。如果SQL语句是查询,则需要多次调用`sqlite3_step`直到返回` SQLITE_DONE`。 ```c int sqlite3_step(sqlite3_stmt *stmt); ``` 4. 清理资源: 执行完毕后,使用`sqlite3_finalize`函数清理预处理语句占用的资源。 ```c int sqlite3_finalize(sqlite3_stmt *stmt); ``` 示例代码: ```c sqlite3 *db; sqlite3_stmt *stmt; const char *sql = "INSERT INTO test (name, age) VALUES (?, ?);"; // 打开数据连接 sqlite3_open("example.db", &db); // 准备SQL语句 if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) != SQLITE_OK) { // 错误处理 } // 绑定参数 sqlite3_bind_text(stmt, 1, "John", -1, SQLITE_TRANSIENT); sqlite3_bind_int(stmt, 2, 25); // 执行SQL语句 sqlite3_step(stmt); // 清理资源 sqlite3_finalize(stmt); // 关闭数据连接 sqlite3_close(db); ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值