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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2008, Nokia
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include <libtracker-common/tracker-dbus.h>
#include "tracker-crawler.h"
#include "tracker-marshal.h"
#include "tracker-miner-fs.h"
#include "tracker-monitor.h"
#define TRACKER_MINER_FS_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), TRACKER_TYPE_MINER_FS, TrackerMinerFSPrivate))
typedef struct {
GFile *file;
GFile *source_file;
} ItemMovedData;
typedef struct {
GFile *file;
gboolean recurse;
} DirectoryData;
struct TrackerMinerFSPrivate {
TrackerMonitor *monitor;
TrackerCrawler *crawler;
/* File queues for indexer */
guint item_queues_handler_id;
GQueue *items_created;
GQueue *items_updated;
GQueue *items_deleted;
GQueue *items_moved;
GList *directories;
DirectoryData *current_directory;
GList *devices;
GList *current_device;
GTimer *timer;
guint crawl_directories_id;
/* Status */
guint been_started : 1;
guint been_crawled : 1;
guint shown_totals : 1;
/* Statistics */
guint total_directories_found;
guint total_directories_ignored;
guint total_files_found;
guint total_files_ignored;
guint directories_found;
guint directories_ignored;
guint files_found;
guint files_ignored;
};
enum {
QUEUE_NONE,
QUEUE_CREATED,
QUEUE_UPDATED,
QUEUE_DELETED,
QUEUE_MOVED
};
enum {
CHECK_FILE,
CHECK_DIRECTORY,
PROCESS_FILE,
MONITOR_DIRECTORY,
FINISHED,
LAST_SIGNAL
};
static void fs_finalize (GObject *object);
static gboolean fs_defaults (TrackerMinerFS *fs,
GFile *file);
static void miner_started (TrackerMiner *miner);
static DirectoryData *directory_data_new (GFile *file,
gboolean recurse);
static void directory_data_free (DirectoryData *dd);
static ItemMovedData *item_moved_data_new (GFile *file,
GFile *source_file);
static void item_moved_data_free (ItemMovedData *data);
static void monitor_item_created_cb (TrackerMonitor *monitor,
GFile *file,
gboolean is_directory,
gpointer user_data);
static void monitor_item_updated_cb (TrackerMonitor *monitor,
GFile *file,
gboolean is_directory,
gpointer user_data);
static void monitor_item_deleted_cb (TrackerMonitor *monitor,
GFile *file,
gboolean is_directory,
gpointer user_data);
static void monitor_item_moved_cb (TrackerMonitor *monitor,
GFile *file,
GFile *other_file,
gboolean is_directory,
gboolean is_source_monitored,
gpointer user_data);
static gboolean crawler_check_file_cb (TrackerCrawler *crawler,
GFile *file,
gpointer user_data);
static gboolean crawler_check_directory_cb (TrackerCrawler *crawler,
GFile *file,
gpointer user_data);
static void crawler_finished_cb (TrackerCrawler *crawler,
GQueue *found,
gboolean was_interrupted,
guint directories_found,
guint directories_ignored,
guint files_found,
guint files_ignored,
gpointer user_data);
static void crawl_directories_start (TrackerMinerFS *fs);
static void crawl_directories_stop (TrackerMinerFS *fs);
static guint signals[LAST_SIGNAL] = { 0, };
G_DEFINE_ABSTRACT_TYPE (TrackerMinerFS, tracker_miner_fs, TRACKER_TYPE_MINER)
static void
tracker_miner_fs_class_init (TrackerMinerFSClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
TrackerMinerFSClass *fs_class = TRACKER_MINER_FS_CLASS (klass);
TrackerMinerClass *miner_class = TRACKER_MINER_CLASS (klass);
object_class->finalize = fs_finalize;
miner_class->started = miner_started;
fs_class->check_file = fs_defaults;
fs_class->check_directory = fs_defaults;
fs_class->monitor_directory = fs_defaults;
/*
miner_class->stopped = miner_crawler_stopped;
miner_class->paused = miner_crawler_paused;
miner_class->resumed = miner_crawler_resumed;
*/
signals[CHECK_FILE] =
g_signal_new ("check-file",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TrackerMinerFSClass, check_file),
NULL, NULL,
tracker_marshal_BOOLEAN__OBJECT,
G_TYPE_BOOLEAN, 1, G_TYPE_FILE);
signals[CHECK_DIRECTORY] =
g_signal_new ("check-directory",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TrackerMinerFSClass, check_directory),
NULL, NULL,
tracker_marshal_BOOLEAN__OBJECT,
G_TYPE_BOOLEAN, 1, G_TYPE_FILE);
signals[PROCESS_FILE] =
g_signal_new ("process-file",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TrackerMinerFSClass, process_file),
NULL, NULL,
tracker_marshal_BOOLEAN__OBJECT_OBJECT,
G_TYPE_BOOLEAN, 2, G_TYPE_FILE, TRACKER_TYPE_SPARQL_BUILDER);
signals[MONITOR_DIRECTORY] =
g_signal_new ("monitor-directory",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TrackerMinerFSClass, monitor_directory),
NULL, NULL,
tracker_marshal_BOOLEAN__OBJECT,
G_TYPE_BOOLEAN, 1, G_TYPE_FILE);
signals[FINISHED] =
g_signal_new ("finished",
G_TYPE_FROM_CLASS (object_class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TrackerMinerFSClass, finished),
NULL, NULL,
tracker_marshal_VOID__DOUBLE_UINT_UINT_UINT_UINT,
G_TYPE_NONE,
5,
G_TYPE_DOUBLE,
G_TYPE_UINT,
G_TYPE_UINT,
G_TYPE_UINT,
G_TYPE_UINT);
g_type_class_add_private (object_class, sizeof (TrackerMinerFSPrivate));
}
static void
tracker_miner_fs_init (TrackerMinerFS *object)
{
TrackerMinerFSPrivate *priv;
object->private = TRACKER_MINER_FS_GET_PRIVATE (object);
priv = object->private;
/* For each module we create a TrackerCrawler and keep them in
* a hash table to look up.
*/
priv->items_created = g_queue_new ();
priv->items_updated = g_queue_new ();
priv->items_deleted = g_queue_new ();
priv->items_moved = g_queue_new ();
/* Set up the crawlers now we have config and hal */
priv->crawler = tracker_crawler_new ();
g_signal_connect (priv->crawler, "check-file",
G_CALLBACK (crawler_check_file_cb),
object);
g_signal_connect (priv->crawler, "check-directory",
G_CALLBACK (crawler_check_directory_cb),
object);
g_signal_connect (priv->crawler, "finished",
G_CALLBACK (crawler_finished_cb),
object);
/* Set up the monitor */
priv->monitor = tracker_monitor_new ();
g_message ("Disabling monitor events until we have crawled the file system");
tracker_monitor_set_enabled (priv->monitor, FALSE);
g_signal_connect (priv->monitor, "item-created",
G_CALLBACK (monitor_item_created_cb),
object);
g_signal_connect (priv->monitor, "item-updated",
G_CALLBACK (monitor_item_updated_cb),
object);
g_signal_connect (priv->monitor, "item-deleted",
G_CALLBACK (monitor_item_deleted_cb),
object);
g_signal_connect (priv->monitor, "item-moved",
G_CALLBACK (monitor_item_moved_cb),
object);
}
static void
fs_finalize (GObject *object)
{
TrackerMinerFSPrivate *priv;
priv = TRACKER_MINER_FS_GET_PRIVATE (object);
if (priv->timer) {
g_timer_destroy (priv->timer);
}
if (priv->item_queues_handler_id) {
g_source_remove (priv->item_queues_handler_id);
priv->item_queues_handler_id = 0;
}
crawl_directories_stop (TRACKER_MINER_FS (object));
if (priv->crawler) {
guint lsignals;
lsignals = g_signal_handlers_disconnect_matched (priv->crawler,
G_SIGNAL_MATCH_FUNC,
0,
0,
NULL,
G_CALLBACK (crawler_check_file_cb),
NULL);
lsignals = g_signal_handlers_disconnect_matched (priv->crawler,
G_SIGNAL_MATCH_FUNC,
0,
0,
NULL,
G_CALLBACK (crawler_check_directory_cb),
NULL);
lsignals = g_signal_handlers_disconnect_matched (priv->crawler,
G_SIGNAL_MATCH_FUNC,
0,
0,
NULL,
G_CALLBACK (crawler_finished_cb),
NULL);
g_object_unref (priv->crawler);
}
if (priv->monitor) {
g_signal_handlers_disconnect_by_func (priv->monitor,
G_CALLBACK (monitor_item_deleted_cb),
object);
g_signal_handlers_disconnect_by_func (priv->monitor,
G_CALLBACK (monitor_item_updated_cb),
object);
g_signal_handlers_disconnect_by_func (priv->monitor,
G_CALLBACK (monitor_item_created_cb),
object);
g_signal_handlers_disconnect_by_func (priv->monitor,
G_CALLBACK (monitor_item_moved_cb),
object);
g_object_unref (priv->monitor);
}
if (priv->directories) {
g_list_foreach (priv->directories, (GFunc) directory_data_free, NULL);
g_list_free (priv->directories);
}
g_queue_foreach (priv->items_moved, (GFunc) item_moved_data_free, NULL);
g_queue_free (priv->items_moved);
g_queue_foreach (priv->items_deleted, (GFunc) g_object_unref, NULL);
g_queue_free (priv->items_deleted);
g_queue_foreach (priv->items_updated, (GFunc) g_object_unref, NULL);
g_queue_free (priv->items_updated);
g_queue_foreach (priv->items_created, (GFunc) g_object_unref, NULL);
g_queue_free (priv->items_created);
#ifdef HAVE_HAL
if (priv->devices) {
g_list_foreach (priv->devices, (GFunc) g_free, NULL);
g_list_free (priv->devices);
}
#endif /* HAVE_HAL */
G_OBJECT_CLASS (tracker_miner_fs_parent_class)->finalize (object);
}
static gboolean
fs_defaults (TrackerMinerFS *fs,
GFile *file)
{
return TRUE;
}
static void
miner_started (TrackerMiner *miner)
{
TrackerMinerFS *fs;
fs = TRACKER_MINER_FS (miner);
fs->private->been_started = TRUE;
crawl_directories_start (fs);
}
static DirectoryData *
directory_data_new (GFile *file,
gboolean recurse)
{
DirectoryData *dd;
dd = g_slice_new (DirectoryData);
dd->file = g_object_ref (file);
dd->recurse = recurse;
return dd;
}
static void
directory_data_free (DirectoryData *dd)
{
if (!dd) {
return;
}
g_object_unref (dd->file);
g_slice_free (DirectoryData, dd);
}
static void
process_print_stats (TrackerMinerFS *fs)
{
/* Only do this the first time, otherwise the results are
* likely to be inaccurate. Devices can be added or removed so
* we can't assume stats are correct.
*/
if (!fs->private->shown_totals) {
fs->private->shown_totals = TRUE;
g_message ("--------------------------------------------------");
g_message ("Total directories : %d (%d ignored)",
fs->private->total_directories_found,
fs->private->total_directories_ignored);
g_message ("Total files : %d (%d ignored)",
fs->private->total_files_found,
fs->private->total_files_ignored);
g_message ("Total monitors : %d",
tracker_monitor_get_count (fs->private->monitor));
g_message ("--------------------------------------------------\n");
}
}
static void
process_stop (TrackerMinerFS *fs)
{
/* Now we have finished crawling, print stats and enable monitor events */
process_print_stats (fs);
g_signal_emit (fs, signals[FINISHED], 0,
g_timer_elapsed (fs->private->timer, NULL),
fs->private->total_directories_found,
fs->private->total_directories_ignored,
fs->private->total_files_found,
fs->private->total_files_ignored);
if (fs->private->timer) {
g_timer_destroy (fs->private->timer);
fs->private->timer = NULL;
}
fs->private->been_crawled = TRUE;
}
static ItemMovedData *
item_moved_data_new (GFile *file,
GFile *source_file)
{
ItemMovedData *data;
data = g_slice_new (ItemMovedData);
data->file = g_object_ref (file);
data->source_file = g_object_ref (source_file);
return data;
}
static void
item_moved_data_free (ItemMovedData *data)
{
g_object_unref (data->file);
g_object_unref (data->source_file);
g_slice_free (ItemMovedData, data);
}
static void
item_add_or_update (TrackerMinerFS *miner,
GFile *file)
{
TrackerSparqlBuilder *sparql;
gchar *full_sparql, *uri;
gboolean processed;
sparql = tracker_sparql_builder_new_update ();
g_signal_emit (miner, signals[PROCESS_FILE], 0, file, sparql, &processed);
if (!processed) {
g_object_unref (sparql);
return;
}
uri = g_file_get_uri (file);
g_debug ("Adding item '%s'", uri);
tracker_sparql_builder_insert_close (sparql);
full_sparql = g_strdup_printf ("DROP GRAPH <%s> %s",
uri, tracker_sparql_builder_get_result (sparql));
tracker_miner_execute_sparql (TRACKER_MINER (miner), full_sparql, NULL);
g_free (full_sparql);
g_object_unref (sparql);
}
static gboolean
item_query_exists (TrackerMinerFS *miner,
GFile *file)
{
TrackerClient *client;
gboolean result;
gchar *sparql, *uri;
GPtrArray *sparql_result;
uri = g_file_get_uri (file);
sparql = g_strdup_printf ("SELECT ?s WHERE { ?s a rdfs:Resource . FILTER (?s = <%s>) }",
uri);
client = tracker_miner_get_client (TRACKER_MINER (miner));
sparql_result = tracker_resources_sparql_query (client, sparql, NULL);
result = (sparql_result && sparql_result->len == 1);
tracker_dbus_results_ptr_array_free (&sparql_result);
g_free (sparql);
g_free (uri);
return result;
}
static void
item_remove (TrackerMinerFS *fs,
GFile *file)
{
gchar *sparql, *uri;
uri = g_file_get_uri (file);
g_debug ("Removing item: '%s' (Deleted from filesystem)",
uri);
if (!item_query_exists (fs, file)) {
g_debug (" File does not exist anyway (uri:'%s')", uri);
return;
}
/* Delete resource */
sparql = g_strdup_printf ("DELETE { <%s> a rdfs:Resource }", uri);
tracker_miner_execute_sparql (TRACKER_MINER (fs), sparql, NULL);
g_free (sparql);
/* FIXME: Should delete recursively? */
}
static void
update_file_uri_recursively (TrackerMinerFS *fs,
GString *sparql_update,
const gchar *source_uri,
const gchar *uri)
{
TrackerClient *client;
gchar *sparql;
GPtrArray *result_set;
g_debug ("Moving item from '%s' to '%s'",
source_uri,
uri);
/* FIXME: tracker:uri doesn't seem to exist */
/* g_string_append_printf (sparql_update, " <%s> tracker:uri <%s> .", source_uri, uri); */
client = tracker_miner_get_client (TRACKER_MINER (fs));
sparql = g_strdup_printf ("SELECT ?child WHERE { ?child nfo:belongsToContainer <%s> }", source_uri);
result_set = tracker_resources_sparql_query (client, sparql, NULL);
g_free (sparql);
if (result_set) {
gint i;
for (i = 0; i < result_set->len; i++) {
gchar **child_source_uri, *child_uri;
child_source_uri = g_ptr_array_index (result_set, i);
if (!g_str_has_prefix (*child_source_uri, source_uri)) {
g_warning ("Child URI '%s' does not start with parent URI '%s'",
*child_source_uri,
source_uri);
continue;
}
child_uri = g_strdup_printf ("%s%s", uri, *child_source_uri + strlen (source_uri));
update_file_uri_recursively (fs, sparql_update, *child_source_uri, child_uri);
g_free (child_source_uri);
g_free (child_uri);
}
g_ptr_array_free (result_set, TRUE);
}
}
static void
item_move (TrackerMinerFS *fs,
GFile *file,
GFile *source_file)
{
gchar *uri, *source_uri, *escaped_filename;
GFileInfo *file_info;
GString *sparql;
uri = g_file_get_uri (file);
source_uri = g_file_get_uri (source_file);
/* Get 'source' ID */
if (!item_query_exists (fs, source_file)) {
g_message ("Source file '%s' not found in store to move, indexing '%s' from scratch", source_uri, uri);
item_add_or_update (fs, file);
g_free (source_uri);
g_free (uri);
return;
}
file_info = g_file_query_info (file,
G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME,
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
NULL, NULL);
if (!file_info) {
/* Destination file has gone away, ignore dest file and remove source if any */
item_remove (fs, source_file);
g_free (source_uri);
g_free (uri);
return;
}
sparql = g_string_new ("");
g_string_append_printf (sparql,
"DELETE { <%s> nfo:fileName ?o } WHERE { <%s> nfo:fileName ?o }",
source_uri, source_uri);
g_string_append (sparql, " INSERT {");
escaped_filename = g_strescape (g_file_info_get_display_name (file_info), NULL);
g_string_append_printf (sparql, " <%s> nfo:fileName \"%s\" .", source_uri, escaped_filename);
g_string_append_printf (sparql, " <%s> nie:isStoredAs <%s> .", source_uri, uri);
/* FIXME: This function just seemed to update the thumbnail */
/* update_file_uri_recursively (fs, sparql, source_uri, uri); */
g_string_append (sparql, " }");
tracker_miner_execute_sparql (TRACKER_MINER (fs), sparql->str, NULL);
g_free (uri);
g_free (source_uri);
g_object_unref (file_info);
g_string_free (sparql, TRUE);
}
static gint
item_queue_get_next_file (TrackerMinerFS *fs,
GFile **file,
GFile **source_file)
{
ItemMovedData *data;
GFile *queue_file;
/* Deleted items first */
queue_file = g_queue_pop_head (fs->private->items_deleted);
if (queue_file) {
*file = queue_file;
*source_file = NULL;
return QUEUE_DELETED;
}
/* Created items next */
queue_file = g_queue_pop_head (fs->private->items_created);
if (queue_file) {
*file = queue_file;
*source_file = NULL;
return QUEUE_CREATED;
}
/* Updated items next */
queue_file = g_queue_pop_head (fs->private->items_updated);
if (queue_file) {
*file = queue_file;
*source_file = NULL;
return QUEUE_UPDATED;
}
/* Moved items next */
data = g_queue_pop_head (fs->private->items_moved);
if (data) {
*file = g_object_ref (data->file);
*source_file = g_object_ref (data->source_file);
item_moved_data_free (data);
return QUEUE_MOVED;
}
*file = NULL;
*source_file = NULL;
return QUEUE_NONE;
}
static gboolean
item_queue_handlers_cb (gpointer user_data)
{
TrackerMinerFS *fs;
GFile *file, *source_file;
gint queue;
fs = user_data;
queue = item_queue_get_next_file (fs, &file, &source_file);
if (queue == QUEUE_NONE) {
/* Print stats and signal finished */
process_stop (fs);
/* No more files left to process */
fs->private->item_queues_handler_id = 0;
return FALSE;
}
switch (queue) {
case QUEUE_MOVED:
item_move (fs, file, source_file);
break;
case QUEUE_DELETED:
item_remove (fs, file);
break;
case QUEUE_CREATED:
case QUEUE_UPDATED:
item_add_or_update (fs, file);
break;
default:
g_assert_not_reached ();
}
g_object_unref (file);
if (source_file) {
g_object_unref (source_file);
}
return TRUE;
}
static void
item_queue_handlers_set_up (TrackerMinerFS *fs)
{
if (fs->private->item_queues_handler_id != 0) {
return;
}
fs->private->item_queues_handler_id =
g_idle_add (item_queue_handlers_cb,
fs);
}
static gboolean
should_change_index_for_file (TrackerMinerFS *fs,
GFile *file)
{
TrackerClient *client;
gboolean uptodate;
GPtrArray *sparql_result;
GFileInfo *file_info;
guint64 time;
time_t mtime;
struct tm t;
gchar *query, *uri;;
file_info = g_file_query_info (file,
G_FILE_ATTRIBUTE_TIME_MODIFIED,
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
NULL,
NULL);
if (!file_info) {
/* NOTE: We return TRUE here because we want to update the DB
* about this file, not because we want to index it.
*/
return TRUE;
}
time = g_file_info_get_attribute_uint64 (file_info, G_FILE_ATTRIBUTE_TIME_MODIFIED);
mtime = (time_t) time;
g_object_unref (file_info);
uri = g_file_get_uri (file);
client = tracker_miner_get_client (TRACKER_MINER (fs));
gmtime_r (&mtime, &t);
query = g_strdup_printf ("SELECT ?file { ?file nfo:fileLastModified \"%04d-%02d-%02dT%02d:%02d:%02d\" . FILTER (?file = <%s>) }",
t.tm_year + 1900,
t.tm_mon + 1,
t.tm_mday,
t.tm_hour,
t.tm_min,
t.tm_sec,
uri);
sparql_result = tracker_resources_sparql_query (client, query, NULL);
uptodate = sparql_result && sparql_result->len == 1;
tracker_dbus_results_ptr_array_free (&sparql_result);
g_free (query);
g_free (uri);
if (uptodate) {
/* File already up-to-date in the database */
return FALSE;
}
/* File either not yet in the database or mtime is different
* Update in database required
*/
return TRUE;
}
static gboolean
should_check_file (TrackerMinerFS *fs,
GFile *file,
gboolean is_dir)
{
gboolean should_check;
if (is_dir) {
g_signal_emit (fs, signals[CHECK_DIRECTORY], 0, file, &should_check);
} else {
g_signal_emit (fs, signals[CHECK_FILE], 0, file, &should_check);
}
return should_check;
}
static gboolean
should_process_file (TrackerMinerFS *fs,
GFile *file,
gboolean is_dir)
{
if (!should_check_file (fs, file, is_dir)) {
return FALSE;
}
/* Check whether file is up-to-date in tracker-store */
return should_change_index_for_file (fs, file);
}
static void
monitor_item_created_cb (TrackerMonitor *monitor,
GFile *file,
gboolean is_directory,
gpointer user_data)
{
TrackerMinerFS *fs;
gboolean should_process = TRUE;
gchar *path;
fs = user_data;
should_process = should_process_file (fs, file, is_directory);
path = g_file_get_path (file);
g_debug ("%s:'%s' (%s) (create monitor event or user request)",
should_process ? "Found " : "Ignored",
path,
is_directory ? "DIR" : "FILE");
if (should_process) {
if (is_directory) {
gboolean add_monitor = TRUE;
g_signal_emit (fs, signals[MONITOR_DIRECTORY], 0, file, &add_monitor);
if (add_monitor) {
tracker_monitor_add (fs->private->monitor, file);
}
/* Add to the list */
tracker_miner_fs_add_directory (fs, file, TRUE);
}
g_queue_push_tail (fs->private->items_created,
g_object_ref (file));
item_queue_handlers_set_up (fs);
}
g_free (path);
}
static void
monitor_item_updated_cb (TrackerMonitor *monitor,
GFile *file,
gboolean is_directory,
gpointer user_data)
{
TrackerMinerFS *fs;
gboolean should_process;
gchar *path;
fs = user_data;
should_process = should_process_file (fs, file, is_directory);
path = g_file_get_path (file);
g_debug ("%s:'%s' (%s) (update monitor event or user request)",
should_process ? "Found " : "Ignored",
path,
is_directory ? "DIR" : "FILE");
if (should_process) {
g_queue_push_tail (fs->private->items_updated,
g_object_ref (file));
item_queue_handlers_set_up (fs);
}
g_free (path);
}
static void
monitor_item_deleted_cb (TrackerMonitor *monitor,
GFile *file,
gboolean is_directory,
gpointer user_data)
{
TrackerMinerFS *fs;
gboolean should_process;
gchar *path;
fs = user_data;
should_process = should_process_file (fs, file, is_directory);
path = g_file_get_path (file);
g_debug ("%s:'%s' (%s) (delete monitor event or user request)",
should_process ? "Found " : "Ignored",
path,
is_directory ? "DIR" : "FILE");
if (should_process) {
g_queue_push_tail (fs->private->items_deleted,
g_object_ref (file));
item_queue_handlers_set_up (fs);
}
#if 0
/* FIXME: Should we do this for MOVE events too? */
/* Remove directory from list of directories we are going to
* iterate if it is in there.
*/
l = g_list_find_custom (fs->private->directories,
path,
(GCompareFunc) g_strcmp0);
/* Make sure we don't remove the current device we are
* processing, this is because we do this same clean up later
* in process_device_next()
*/
if (l && l != fs->private->current_directory) {
directory_data_free (l->data);
fs->private->directories =
g_list_delete_link (fs->private->directories, l);
}
#endif
g_free (path);
}
static void
monitor_item_moved_cb (TrackerMonitor *monitor,
GFile *file,
GFile *other_file,
gboolean is_directory,
gboolean is_source_monitored,
gpointer user_data)
{
TrackerMinerFS *fs;
fs = user_data;
if (!is_source_monitored) {
gchar *path;
path = g_file_get_path (other_file);
#ifdef FIX
/* If the source is not monitored, we need to crawl it. */
tracker_crawler_add_unexpected_path (fs->private->crawler, path);
#endif
g_free (path);
} else {
gchar *path;
gchar *other_path;
gboolean source_stored, should_process_other;
path = g_file_get_path (file);
other_path = g_file_get_path (other_file);
source_stored = item_query_exists (fs, file);
should_process_other = should_process_file (fs, other_file, is_directory);
g_debug ("%s:'%s'->'%s':%s (%s) (move monitor event or user request)",
source_stored ? "In store" : "Not in store",
path,
other_path,
should_process_other ? "Found " : "Ignored",
is_directory ? "DIR" : "FILE");
/* FIXME: Guessing this soon the queue the event should pertain
* to could introduce race conditions if events from other
* queues for the same files are processed before items_moved,
* Most of these decisions should be taken when the event is
* actually being processed.
*/
if (!source_stored && !should_process_other) {
/* Do nothing */
} else if (!source_stored) {
/* Source file was not stored, check dest file as new */
if (!is_directory) {
g_queue_push_tail (fs->private->items_created,
g_object_ref (other_file));
item_queue_handlers_set_up (fs);
} else {
gboolean add_monitor = TRUE;
g_signal_emit (fs, signals[MONITOR_DIRECTORY], 0, file, &add_monitor);
if (add_monitor) {
tracker_monitor_add (fs->private->monitor, file);
}
#ifdef FIX
/* If this is a directory we need to crawl it */
tracker_crawler_add_unexpected_path (fs->private->crawler, other_path);
#endif
}
} else if (!should_process_other) {
/* Delete old file */
g_queue_push_tail (fs->private->items_deleted, g_object_ref (file));
item_queue_handlers_set_up (fs);
} else {
/* Move old file to new file */
g_queue_push_tail (fs->private->items_moved,
item_moved_data_new (other_file, file));
item_queue_handlers_set_up (fs);
}
g_free (other_path);
g_free (path);
}
}
static gboolean
crawler_check_file_cb (TrackerCrawler *crawler,
GFile *file,
gpointer user_data)
{
TrackerMinerFS *fs = user_data;
return should_process_file (fs, file, FALSE);
}
static gboolean
crawler_check_directory_cb (TrackerCrawler *crawler,
GFile *file,
gpointer user_data)
{
TrackerMinerFS *fs = user_data;
gboolean should_check;
gboolean add_monitor = TRUE;
should_check = should_check_file (fs, file, TRUE);
g_signal_emit (fs, signals[MONITOR_DIRECTORY], 0, file, &add_monitor);
/* FIXME: Should we add here or when we process the queue in
* the finished sig?
*/
if (add_monitor) {
tracker_monitor_add (fs->private->monitor, file);
}
/* We _HAVE_ to check ALL directories because mtime updates
* are not guaranteed on parents on Windows AND we on Linux
* only the immediate parent directory mtime is updated, this
* is not done recursively.
*
* As such, we only use the "check" rules here, we don't do
* any database comparison with mtime.
*/
return should_check;
}
static void
crawler_finished_cb (TrackerCrawler *crawler,
GQueue *found,
gboolean was_interrupted,
guint directories_found,
guint directories_ignored,
guint files_found,
guint files_ignored,
gpointer user_data)
{
TrackerMinerFS *fs = user_data;
GList *l;
/* Add items in queue to current queues. */
for (l = found->head; l; l = l->next) {
g_queue_push_tail (fs->private->items_created, g_object_ref (l->data));
}
/* Update stats */
fs->private->directories_found += directories_found;
fs->private->directories_ignored += directories_ignored;
fs->private->files_found += files_found;
fs->private->files_ignored += files_ignored;
fs->private->total_directories_found += directories_found;
fs->private->total_directories_ignored += directories_ignored;
fs->private->total_files_found += files_found;
fs->private->total_files_ignored += files_ignored;
g_message ("%s crawling files after %2.2f seconds",
was_interrupted ? "Stoped" : "Finished",
g_timer_elapsed (fs->private->timer, NULL));
g_message (" Found %d directories, ignored %d directories",
directories_found,
directories_ignored);
g_message (" Found %d files, ignored %d files",
files_found,
files_ignored);
directory_data_free (fs->private->current_directory);
fs->private->current_directory = NULL;
/* Proceed to next thing to process */
crawl_directories_start (fs);
}
static gboolean
crawl_directories_cb (gpointer user_data)
{
TrackerMinerFS *fs = user_data;
gchar *path;
if (fs->private->current_directory) {
g_critical ("One directory is already being processed, bailing out");
fs->private->crawl_directories_id = 0;
return FALSE;
}
if (!fs->private->directories) {
/* Now we handle the queue */
item_queue_handlers_set_up (fs);
crawl_directories_stop (fs);
fs->private->crawl_directories_id = 0;
return FALSE;
}
fs->private->current_directory = fs->private->directories->data;
fs->private->directories = g_list_remove (fs->private->directories,
fs->private->current_directory);
path = g_file_get_path (miner->private->current_directory->file);
g_debug ("Processing %s path '%s'\n",
fs->private->current_directory->recurse ? "recursive" : "single",
path);
if (tracker_crawler_start (fs->private->crawler, path,
fs->private->current_directory->recurse)) {
/* Crawler when restart the idle function when done */
fs->private->process_dirs_id = 0;
g_free (path);
return FALSE;
}
/* Directory couldn't be processed */
directory_data_free (fs->private->current_directory);
fs->private->current_directory = NULL;
g_free (path);
return TRUE;
}
static void
crawl_directories_start (TrackerMinerFS *fs)
{
if (fs->private->crawl_directories_id != 0) {
/* Processing ALREADY going on */
return;
}
if (!fs->private->been_started) {
/* Miner has not been started yet */
return;
}
fs->private->timer = g_timer_new ();
fs->private->total_directories_found = 0;
fs->private->total_directories_ignored = 0;
fs->private->total_files_found = 0;
fs->private->total_files_ignored = 0;
fs->private->directories_found = 0;
fs->private->directories_ignored = 0;
fs->private->files_found = 0;
fs->private->files_ignored = 0;
fs->private->crawl_directories_id = g_idle_add (crawl_directories_cb, fs);
}
static void
crawl_directories_stop (TrackerMinerFS *fs)
{
if (fs->private->crawl_directories_id == 0) {
/* No processing going on, nothing to stop */
return;
}
if (fs->private->current_directory) {
tracker_crawler_stop (fs->private->crawler);
}
g_message ("Enabling monitor events");
tracker_monitor_set_enabled (fs->private->monitor, TRUE);
/* Is this the right time to emit FINISHED? What about
* monitor events left to handle? Should they matter
* here?
*/
if (fs->private->crawl_directories_id != 0) {
g_source_remove (fs->private->crawl_directories_id);
fs->private->crawl_directories_id = 0;
}
}
void
tracker_miner_fs_add_directory (TrackerMinerFS *fs,
GFile *file,
gboolean recurse)
{
g_return_if_fail (TRACKER_IS_MINER_FS (fs));
g_return_if_fail (G_IS_FILE (file));
fs->private->directories =
g_list_append (fs->private->directories,
directory_data_new (file, recurse));
crawl_directories_start (fs);
}
gboolean
tracker_miner_fs_remove_directory (TrackerMinerFS *fs,
GFile *file)
{
gboolean return_val = FALSE;
GList *dirs;
g_return_val_if_fail (TRACKER_IS_MINER_FS (fs), FALSE);
g_return_val_if_fail (G_IS_FILE (file), FALSE);
if (fs->private->current_directory) {
GFile *current_file;
current_file = fs->private->current_directory->file;
if (g_file_equal (file, current_file) ||
g_file_has_prefix (file, current_file)) {
/* Dir is being processed currently, cancel crawler */
tracker_crawler_stop (fs->private->crawler);
return_val = TRUE;
}
}
dirs = fs->private->directories;
while (dirs) {
DirectoryData *data = dirs->data;
GList *link = dirs;
dirs = dirs->next;
if (g_file_equal (file, data->file) ||
g_file_has_prefix (file, data->file)) {
directory_data_free (data);
fs->private->directories = g_list_delete_link (fs->private->directories, link);
return_val = TRUE;
}
}
return return_val;
}
|