1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsPlacesTables.h"
#ifndef __nsPlacesTriggers_h__
# define __nsPlacesTriggers_h__
/**
* Exclude these visit types:
* 0 - invalid
* 4 - EMBED
* 7 - DOWNLOAD
* 8 - FRAMED_LINK
* 9 - RELOAD
**/
# define EXCLUDED_VISIT_TYPES "0, 4, 7, 8, 9"
/**
* This triggers update visit_count and last_visit_date based on historyvisits
* table changes.
*/
# define CREATE_HISTORYVISITS_AFTERINSERT_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_historyvisits_afterinsert_v2_trigger " \
"AFTER INSERT ON moz_historyvisits FOR EACH ROW " \
"BEGIN " \
"SELECT invalidate_days_of_history();" \
"SELECT store_last_inserted_id('moz_historyvisits', NEW.id); " \
"UPDATE moz_places SET " \
"visit_count = visit_count + (SELECT NEW.visit_type NOT IN " \
"(" EXCLUDED_VISIT_TYPES \
")), " \
"recalc_frecency = (frecency <> 0), " \
"last_visit_date = MAX(IFNULL(last_visit_date, 0), NEW.visit_date) " \
"WHERE id = NEW.place_id;" \
"END")
# define CREATE_HISTORYVISITS_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_historyvisits_afterdelete_v2_trigger " \
"AFTER DELETE ON moz_historyvisits FOR EACH ROW " \
"BEGIN " \
"SELECT invalidate_days_of_history();" \
"UPDATE moz_places SET " \
"visit_count = visit_count - (SELECT OLD.visit_type NOT IN " \
"(" EXCLUDED_VISIT_TYPES \
")), " \
"recalc_frecency = (frecency <> 0), " \
"last_visit_date = (SELECT visit_date FROM moz_historyvisits " \
"WHERE place_id = OLD.place_id " \
"ORDER BY visit_date DESC LIMIT 1) " \
"WHERE id = OLD.place_id;" \
"END")
// This macro is a helper for the next several triggers. It updates the origin
// frecency stats. Use it as follows. Before changing an origin's frecency,
// call the macro and pass "-" (subtraction) as the argument. That will update
// the stats by deducting the origin's current contribution to them. And then
// after you change the origin's frecency, call the macro again, this time
// passing "+" (addition) as the argument. That will update the stats by adding
// the origin's new contribution to them.
# define UPDATE_ORIGIN_FRECENCY_STATS(op) \
"INSERT OR REPLACE INTO moz_meta(key, value) " \
"SELECT '" MOZ_META_KEY_ORIGIN_FRECENCY_COUNT \
"', " \
"IFNULL((SELECT value FROM moz_meta WHERE key = " \
"'" MOZ_META_KEY_ORIGIN_FRECENCY_COUNT "'), 0) " op \
" CAST(frecency > 0 AS INT) " \
"FROM moz_origins WHERE prefix = OLD.prefix AND host = OLD.host " \
"UNION " \
"SELECT '" MOZ_META_KEY_ORIGIN_FRECENCY_SUM \
"', " \
"IFNULL((SELECT value FROM moz_meta WHERE key = " \
"'" MOZ_META_KEY_ORIGIN_FRECENCY_SUM "'), 0) " op \
" MAX(frecency, 0) " \
"FROM moz_origins WHERE prefix = OLD.prefix AND host = OLD.host " \
"UNION " \
"SELECT '" MOZ_META_KEY_ORIGIN_FRECENCY_SUM_OF_SQUARES \
"', " \
"IFNULL((SELECT value FROM moz_meta WHERE key = " \
"'" MOZ_META_KEY_ORIGIN_FRECENCY_SUM_OF_SQUARES "'), 0) " op \
" (MAX(frecency, 0) * MAX(frecency, 0)) " \
"FROM moz_origins WHERE prefix = OLD.prefix AND host = OLD.host "
// The next several triggers are a workaround for the lack of FOR EACH STATEMENT
// in Sqlite, until bug 871908 can be fixed properly.
//
// While doing inserts or deletes into moz_places, we accumulate the affected
// origins into a temp table. Afterwards, we delete everything from the temp
// table, causing the AFTER DELETE trigger to fire for it, which will then
// update moz_origins and the origin frecency stats. As a consequence, we also
// do this for updates to moz_places.frecency in order to make sure that changes
// to origins are serialized.
//
// Note this way we lose atomicity, crashing between the 2 queries may break the
// tables' coherency. So it's better to run those DELETE queries in a single
// transaction. Regardless, this is still better than hanging the browser for
// several minutes on a fast machine.
// This trigger runs on inserts into moz_places.
# define CREATE_PLACES_AFTERINSERT_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_places_afterinsert_trigger " \
"AFTER INSERT ON moz_places FOR EACH ROW " \
"BEGIN " \
"SELECT store_last_inserted_id('moz_places', NEW.id); " \
"INSERT OR IGNORE INTO moz_updateoriginsinsert_temp (place_id, " \
"prefix, " \
"host, frecency) " \
"VALUES (NEW.id, get_prefix(NEW.url), get_host_and_port(NEW.url), " \
"NEW.frecency); " \
"END")
// This trigger corresponds to the previous trigger. It runs on deletes on
// moz_updateoriginsinsert_temp -- logically, after inserts on moz_places.
# define CREATE_UPDATEORIGINSINSERT_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_updateoriginsinsert_afterdelete_trigger " \
"AFTER DELETE ON moz_updateoriginsinsert_temp FOR EACH ROW " \
"BEGIN " \
/* Deduct the origin's current contribution to frecency stats */ \
UPDATE_ORIGIN_FRECENCY_STATS("-") "; " \
"INSERT INTO moz_origins (prefix, host, frecency) " \
"VALUES (OLD.prefix, OLD.host, MAX(OLD.frecency, 0)) " \
"ON CONFLICT(prefix, host) DO UPDATE " \
"SET frecency = frecency + OLD.frecency " \
"WHERE OLD.frecency > 0; " \
/* Add the origin's new contribution to frecency stats */ \
UPDATE_ORIGIN_FRECENCY_STATS("+") "; " \
"UPDATE moz_places SET origin_id = ( " \
"SELECT id " \
"FROM moz_origins " \
"WHERE prefix = OLD.prefix AND host = OLD.host " \
") " \
"WHERE id = OLD.place_id; " \
"END" \
)
// This trigger runs on deletes on moz_places.
# define CREATE_PLACES_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_places_afterdelete_trigger " \
"AFTER DELETE ON moz_places FOR EACH ROW " \
"BEGIN " \
"INSERT INTO moz_updateoriginsdelete_temp (prefix, host, " \
"frecency_delta) " \
"VALUES (get_prefix(OLD.url), get_host_and_port(OLD.url), " \
"-MAX(OLD.frecency, 0)) " \
"ON CONFLICT(prefix, host) DO UPDATE " \
"SET frecency_delta = frecency_delta - OLD.frecency " \
"WHERE OLD.frecency > 0; " \
"END ")
// This is an alternate version of CREATE_PLACES_AFTERDELETE_TRIGGER, with
// support for previews tombstones. Only one of these should be used at the
// same time
# define CREATE_PLACES_AFTERDELETE_WPREVIEWS_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_places_afterdelete_wpreviews_trigger " \
"AFTER DELETE ON moz_places FOR EACH ROW " \
"BEGIN " \
"INSERT INTO moz_updateoriginsdelete_temp (prefix, host, " \
"frecency_delta) " \
"VALUES (get_prefix(OLD.url), get_host_and_port(OLD.url), " \
"-MAX(OLD.frecency, 0)) " \
"ON CONFLICT(prefix, host) DO UPDATE " \
"SET frecency_delta = frecency_delta - OLD.frecency " \
"WHERE OLD.frecency > 0; " \
"INSERT OR IGNORE INTO moz_previews_tombstones VALUES " \
"(md5hex(OLD.url));" \
"END ")
// This trigger corresponds to the previous trigger. It runs on deletes on
// moz_updateoriginsdelete_temp -- logically, after deletes on moz_places.
# define CREATE_UPDATEORIGINSDELETE_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_updateoriginsdelete_afterdelete_trigger " \
"AFTER DELETE ON moz_updateoriginsdelete_temp FOR EACH ROW " \
"BEGIN " \
/* Deduct the origin's current contribution to frecency stats */ \
UPDATE_ORIGIN_FRECENCY_STATS("-") "; " \
"UPDATE moz_origins SET frecency = frecency + OLD.frecency_delta " \
"WHERE prefix = OLD.prefix AND host = OLD.host; " \
"DELETE FROM moz_origins " \
"WHERE prefix = OLD.prefix AND host = OLD.host AND NOT EXISTS ( " \
"SELECT id FROM moz_places " \
"WHERE origin_id = moz_origins.id " \
"LIMIT 1 " \
"); " \
/* Add the origin's new contribution to frecency stats */ \
UPDATE_ORIGIN_FRECENCY_STATS("+") "; " \
"DELETE FROM moz_icons WHERE id IN ( " \
"SELECT id FROM moz_icons " \
"WHERE fixed_icon_url_hash = hash(fixup_url(OLD.host || '/favicon.ico')) " \
"AND fixup_url(icon_url) = fixup_url(OLD.host || '/favicon.ico') " \
"AND NOT EXISTS (SELECT 1 FROM moz_origins WHERE host = OLD.host " \
"OR host = fixup_url(OLD.host)) " \
"EXCEPT " \
"SELECT icon_id FROM moz_icons_to_pages " \
"); " \
"END" \
)
// This trigger runs on updates to moz_places.frecency.
//
// However, we skip this when frecency changes are due to frecency decay since
// (1) decay updates all frecencies at once, so this trigger would run for each
// moz_place, which would be expensive; and (2) decay does not change the
// ordering of frecencies since all frecencies decay by the same percentage.
# define CREATE_PLACES_AFTERUPDATE_FRECENCY_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_places_afterupdate_frecency_trigger " \
"AFTER UPDATE OF frecency ON moz_places FOR EACH ROW " \
"WHEN NOT is_frecency_decaying() " \
"BEGIN " \
"INSERT INTO moz_updateoriginsupdate_temp (prefix, host, " \
"frecency_delta) " \
"VALUES (get_prefix(NEW.url), get_host_and_port(NEW.url), " \
"MAX(NEW.frecency, 0) - MAX(OLD.frecency, 0)) " \
"ON CONFLICT(prefix, host) DO UPDATE " \
"SET frecency_delta = frecency_delta + EXCLUDED.frecency_delta; " \
"UPDATE moz_places SET recalc_frecency = 0 WHERE id = NEW.id; " \
"END ")
// This trigger corresponds to the previous trigger. It runs on deletes on
// moz_updateoriginsupdate_temp -- logically, after updates to
// moz_places.frecency.
# define CREATE_UPDATEORIGINSUPDATE_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_updateoriginsupdate_afterdelete_trigger " \
"AFTER DELETE ON moz_updateoriginsupdate_temp FOR EACH ROW " \
"BEGIN " \
/* Deduct the origin's current contribution to frecency stats */ \
UPDATE_ORIGIN_FRECENCY_STATS("-") "; " \
"UPDATE moz_origins " \
"SET frecency = frecency + OLD.frecency_delta " \
"WHERE prefix = OLD.prefix AND host = OLD.host; " \
/* Add the origin's new contribution to frecency stats */ \
UPDATE_ORIGIN_FRECENCY_STATS("+") "; " \
"END" \
)
/**
* This trigger removes a row from moz_openpages_temp when open_count reaches 0.
*
* @note this should be kept up-to-date with the definition in
* nsPlacesAutoComplete.js
*/
# define CREATE_REMOVEOPENPAGE_CLEANUP_TRIGGER \
nsLiteralCString( \
"CREATE TEMPORARY TRIGGER moz_openpages_temp_afterupdate_trigger " \
"AFTER UPDATE OF open_count ON moz_openpages_temp FOR EACH ROW " \
"WHEN NEW.open_count = 0 " \
"BEGIN " \
"DELETE FROM moz_openpages_temp " \
"WHERE url = NEW.url " \
"AND userContextId = NEW.userContextId;" \
"END")
# define CREATE_BOOKMARKS_FOREIGNCOUNT_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_bookmarks_foreign_count_afterdelete_trigger " \
"AFTER DELETE ON moz_bookmarks FOR EACH ROW " \
"BEGIN " \
"UPDATE moz_places " \
"SET foreign_count = foreign_count - 1, " \
" recalc_frecency = (frecency <> 0) " \
"WHERE id = OLD.fk;" \
"END")
# define CREATE_BOOKMARKS_FOREIGNCOUNT_AFTERINSERT_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_bookmarks_foreign_count_afterinsert_trigger " \
"AFTER INSERT ON moz_bookmarks FOR EACH ROW " \
"BEGIN " \
"SELECT store_last_inserted_id('moz_bookmarks', NEW.id); " \
"SELECT note_sync_change() WHERE NEW.syncChangeCounter > 0; " \
"UPDATE moz_places " \
"SET foreign_count = foreign_count + 1, " \
" recalc_frecency = (frecency <> 0) " \
"WHERE id = NEW.fk;" \
"END")
# define CREATE_BOOKMARKS_FOREIGNCOUNT_AFTERUPDATE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_bookmarks_foreign_count_afterupdate_trigger " \
"AFTER UPDATE OF fk, syncChangeCounter ON moz_bookmarks FOR EACH ROW " \
"BEGIN " \
"SELECT note_sync_change() " \
"WHERE NEW.syncChangeCounter <> OLD.syncChangeCounter; " \
"UPDATE moz_places " \
"SET foreign_count = foreign_count + 1, " \
" recalc_frecency = (frecency <> 0) " \
"WHERE OLD.fk <> NEW.fk AND id = NEW.fk;" \
"UPDATE moz_places " \
"SET foreign_count = foreign_count - 1, " \
" recalc_frecency = (frecency <> 0) " \
"WHERE OLD.fk <> NEW.fk AND id = OLD.fk;" \
"END")
# define CREATE_KEYWORDS_FOREIGNCOUNT_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_keywords_foreign_count_afterdelete_trigger " \
"AFTER DELETE ON moz_keywords FOR EACH ROW " \
"BEGIN " \
"UPDATE moz_places " \
"SET foreign_count = foreign_count - 1 " \
"WHERE id = OLD.place_id;" \
"END")
# define CREATE_KEYWORDS_FOREIGNCOUNT_AFTERINSERT_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_keywords_foreign_count_afterinsert_trigger " \
"AFTER INSERT ON moz_keywords FOR EACH ROW " \
"BEGIN " \
"UPDATE moz_places " \
"SET foreign_count = foreign_count + 1 " \
"WHERE id = NEW.place_id;" \
"END")
# define CREATE_KEYWORDS_FOREIGNCOUNT_AFTERUPDATE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_keywords_foreign_count_afterupdate_trigger " \
"AFTER UPDATE OF place_id ON moz_keywords FOR EACH ROW " \
"BEGIN " \
"UPDATE moz_places " \
"SET foreign_count = foreign_count + 1 " \
"WHERE id = NEW.place_id; " \
"UPDATE moz_places " \
"SET foreign_count = foreign_count - 1 " \
"WHERE id = OLD.place_id; " \
"END")
# define CREATE_ICONS_AFTERINSERT_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_icons_afterinsert_v1_trigger " \
"AFTER INSERT ON moz_icons FOR EACH ROW " \
"BEGIN " \
"SELECT store_last_inserted_id('moz_icons', NEW.id); " \
"END")
# define CREATE_BOOKMARKS_DELETED_AFTERINSERT_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_bookmarks_deleted_afterinsert_v1_trigger " \
"AFTER INSERT ON moz_bookmarks_deleted FOR EACH ROW " \
"BEGIN " \
"SELECT note_sync_change(); " \
"END")
# define CREATE_BOOKMARKS_DELETED_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_bookmarks_deleted_afterdelete_v1_trigger " \
"AFTER DELETE ON moz_bookmarks_deleted FOR EACH ROW " \
"BEGIN " \
"SELECT note_sync_change(); " \
"END")
// This trigger removes orphan search terms when interactions are removed from
// the metadata table.
# define CREATE_PLACES_METADATA_AFTERDELETE_TRIGGER \
nsLiteralCString( \
"CREATE TEMP TRIGGER moz_places_metadata_afterdelete_trigger " \
"AFTER DELETE ON moz_places_metadata " \
"FOR EACH ROW " \
"BEGIN " \
"DELETE FROM moz_places_metadata_search_queries " \
"WHERE id = OLD.search_query_id AND NOT EXISTS (" \
"SELECT id FROM moz_places_metadata " \
"WHERE search_query_id = OLD.search_query_id " \
"); " \
"END")
#endif // __nsPlacesTriggers_h__
|