Skip to content

Commit e99160a

Browse files
committedDec 27, 2023
Inlined init() functions into class header files
- these extra functions aren't really necessary and means there is more redirection occurring - as a bonus, this fixes a variable shadowing issue in the Statement implementation
1 parent 3372130 commit e99160a

File tree

6 files changed

+40
-73
lines changed

6 files changed

+40
-73
lines changed
 

‎src/backup.cc

+6-5
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@ Backup::Backup(const Napi::CallbackInfo& info) : Napi::ObjectWrap<Backup>(info)
153153
return;
154154
}
155155

156-
auto* database = Napi::ObjectWrap<Database>::Unwrap(info[0].As<Napi::Object>());
156+
this->db = Napi::ObjectWrap<Database>::Unwrap(info[0].As<Napi::Object>());
157+
this->db->Ref();
158+
157159
auto filename = info[1].As<Napi::String>();
158160
auto sourceName = info[2].As<Napi::String>();
159161
auto destName = info[3].As<Napi::String>();
@@ -164,14 +166,13 @@ Backup::Backup(const Napi::CallbackInfo& info) : Napi::ObjectWrap<Backup>(info)
164166
info.This().As<Napi::Object>().DefineProperty(Napi::PropertyDescriptor::Value("destName", destName));
165167
info.This().As<Napi::Object>().DefineProperty(Napi::PropertyDescriptor::Value("filenameIsDest", filenameIsDest));
166168

167-
init(database);
168-
169-
auto* baton = new InitializeBaton(database, info[5].As<Napi::Function>(), this);
169+
auto* baton = new InitializeBaton(this->db, info[5].As<Napi::Function>(), this);
170170
baton->filename = filename.Utf8Value();
171171
baton->sourceName = sourceName.Utf8Value();
172172
baton->destName = destName.Utf8Value();
173173
baton->filenameIsDest = filenameIsDest.Value();
174-
database->Schedule(Work_BeginInitialize, baton);
174+
175+
this->db->Schedule(Work_BeginInitialize, baton);
175176
}
176177

177178
void Backup::Work_BeginInitialize(Database::Baton* baton) {

‎src/backup.h

+13-26
Original file line numberDiff line numberDiff line change
@@ -146,21 +146,6 @@ class Backup : public Napi::ObjectWrap<Backup> {
146146
Baton* baton;
147147
};
148148

149-
void init(Database* db_) {
150-
db = db_;
151-
_handle = NULL;
152-
_otherDb = NULL;
153-
_destDb = NULL;
154-
inited = false;
155-
locked = true;
156-
completed = false;
157-
failed = false;
158-
remaining = -1;
159-
pageCount = -1;
160-
finished = false;
161-
db->Ref();
162-
}
163-
164149
Backup(const Napi::CallbackInfo& info);
165150

166151
~Backup() {
@@ -172,6 +157,7 @@ class Backup : public Napi::ObjectWrap<Backup> {
172157

173158
WORK_DEFINITION(Step)
174159
WORK_DEFINITION(Finish)
160+
175161
Napi::Value IdleGetter(const Napi::CallbackInfo& info);
176162
Napi::Value CompletedGetter(const Napi::CallbackInfo& info);
177163
Napi::Value FailedGetter(const Napi::CallbackInfo& info);
@@ -199,19 +185,20 @@ class Backup : public Napi::ObjectWrap<Backup> {
199185

200186
Database* db;
201187

202-
sqlite3_backup* _handle;
203-
sqlite3* _otherDb;
204-
sqlite3* _destDb;
188+
sqlite3_backup* _handle = NULL;
189+
sqlite3* _otherDb = NULL;
190+
sqlite3* _destDb = NULL;
191+
192+
bool inited = false;
193+
bool locked = true;
194+
bool completed = false;
195+
bool failed = false;
196+
int remaining = -1;
197+
int pageCount = -1;
198+
bool finished = false;
199+
205200
int status;
206201
std::string message;
207-
208-
bool inited;
209-
bool locked;
210-
bool completed;
211-
bool failed;
212-
int remaining;
213-
int pageCount;
214-
bool finished;
215202
std::queue<std::unique_ptr<Call>> queue;
216203

217204
Napi::Reference<Array> retryErrors;

‎src/database.cc

-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ void Database::Schedule(Work_Callback callback, Baton* baton, bool exclusive) {
118118
}
119119

120120
Database::Database(const Napi::CallbackInfo& info) : Napi::ObjectWrap<Database>(info) {
121-
init();
122121
auto env = info.Env();
123122

124123
if (info.Length() <= 0 || !info[0].IsString()) {

‎src/database.h

+9-21
Original file line numberDiff line numberDiff line change
@@ -123,18 +123,6 @@ class Database : public Napi::ObjectWrap<Database> {
123123
friend class Statement;
124124
friend class Backup;
125125

126-
void init() {
127-
_handle = NULL;
128-
open = false;
129-
closing = false;
130-
locked = false;
131-
pending = 0;
132-
serialize = false;
133-
debug_trace = NULL;
134-
debug_profile = NULL;
135-
update_event = NULL;
136-
}
137-
138126
Database(const Napi::CallbackInfo& info);
139127

140128
~Database() {
@@ -179,20 +167,20 @@ class Database : public Napi::ObjectWrap<Database> {
179167
void RemoveCallbacks();
180168

181169
protected:
182-
sqlite3* _handle;
170+
sqlite3* _handle = NULL;
183171

184-
bool open;
185-
bool closing;
186-
bool locked;
187-
unsigned int pending;
172+
bool open = false;
173+
bool closing = false;
174+
bool locked = false;
175+
unsigned int pending = 0;
188176

189-
bool serialize;
177+
bool serialize = false;
190178

191179
std::queue<Call*> queue;
192180

193-
AsyncTrace* debug_trace;
194-
AsyncProfile* debug_profile;
195-
AsyncUpdate* update_event;
181+
AsyncTrace* debug_trace = NULL;
182+
AsyncProfile* debug_profile = NULL;
183+
AsyncUpdate* update_event = NULL;
196184
};
197185

198186
}

‎src/statement.cc

+6-4
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,19 @@ Statement::Statement(const Napi::CallbackInfo& info) : Napi::ObjectWrap<Statemen
105105
return;
106106
}
107107

108-
Database* db = Napi::ObjectWrap<Database>::Unwrap(info[0].As<Napi::Object>());
108+
this->db = Napi::ObjectWrap<Database>::Unwrap(info[0].As<Napi::Object>());
109+
this->db->Ref();
110+
109111
auto sql = info[1].As<Napi::String>();
110112

111113
info.This().As<Napi::Object>().DefineProperty(Napi::PropertyDescriptor::Value("sql", sql, napi_default));
112114

113-
init(db);
115+
114116
Statement* stmt = this;
115117

116-
auto* baton = new PrepareBaton(db, info[2].As<Napi::Function>(), stmt);
118+
auto* baton = new PrepareBaton(this->db, info[2].As<Napi::Function>(), stmt);
117119
baton->sql = std::string(sql.As<Napi::String>().Utf8Value().c_str());
118-
db->Schedule(Work_BeginPrepare, baton);
120+
this->db->Schedule(Work_BeginPrepare, baton);
119121
}
120122

121123
void Statement::Work_BeginPrepare(Database::Baton* baton) {

‎src/statement.h

+6-16
Original file line numberDiff line numberDiff line change
@@ -189,16 +189,6 @@ class Statement : public Napi::ObjectWrap<Statement> {
189189
}
190190
};
191191

192-
void init(Database* db_) {
193-
db = db_;
194-
_handle = NULL;
195-
status = SQLITE_OK;
196-
prepared = false;
197-
locked = true;
198-
finalized = false;
199-
db->Ref();
200-
}
201-
202192
Statement(const Napi::CallbackInfo& info);
203193

204194
~Statement() {
@@ -239,14 +229,14 @@ class Statement : public Napi::ObjectWrap<Statement> {
239229
protected:
240230
Database* db;
241231

242-
sqlite3_stmt* _handle;
243-
int status;
244-
std::string message;
232+
sqlite3_stmt* _handle = NULL;
233+
int status = SQLITE_OK;
234+
bool prepared = false;
235+
bool locked = true;
236+
bool finalized = false;
245237

246-
bool prepared;
247-
bool locked;
248-
bool finalized;
249238
std::queue<Call*> queue;
239+
std::string message;
250240
};
251241

252242
}

0 commit comments

Comments
 (0)
Please sign in to comment.