|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Rebuilds all VirtualFieldIndexes |
|
4
|
|
|
* |
|
5
|
|
|
* @author Mark Guinn <[email protected]> |
|
6
|
|
|
* @date 9.26.13 |
|
7
|
|
|
* @package shop_search |
|
8
|
|
|
* @subpackage tasks |
|
9
|
|
|
*/ |
|
10
|
|
|
class BuildVFI extends BuildTask |
|
|
|
|
|
|
11
|
|
|
{ |
|
12
|
|
|
protected $title = 'Rebuild Virtual Field Indexes'; |
|
13
|
|
|
protected $description = 'Rebuild all VFI fields on all tables and records.'; |
|
14
|
|
|
|
|
15
|
|
|
static $recordsPerRequest = 200; |
|
|
|
|
|
|
16
|
|
|
|
|
17
|
|
|
function old_run($request) { |
|
|
|
|
|
|
18
|
|
|
$classes = VirtualFieldIndex::get_classes_with_vfi(); |
|
19
|
|
|
ini_set('memory_limit', '1G'); |
|
20
|
|
|
$start = (int)$request->requestVar('start'); |
|
21
|
|
|
$n = $start; |
|
22
|
|
|
|
|
23
|
|
|
// rebuild the indexes |
|
24
|
|
|
foreach ($classes as $c) { |
|
25
|
|
|
echo "Rebuilding $c..."; |
|
26
|
|
|
$list = DataObject::get($c); |
|
27
|
|
|
$count = $list->count(); |
|
28
|
|
|
for ($i = $n; $i < $count; $i += 10) { |
|
29
|
|
|
$chunk = $list->limit(10, $i); |
|
30
|
|
|
if (Controller::curr() instanceof TaskRunner) echo "Processing VFI #$i...\n"; |
|
31
|
|
|
foreach ($chunk as $rec) $rec->rebuildVFI(); |
|
32
|
|
|
} |
|
33
|
|
|
VirtualFieldIndex::build($c); |
|
34
|
|
|
|
|
35
|
|
|
// echo "Republishing changed records..."; |
|
|
|
|
|
|
36
|
|
|
// $list = DataObject::get($c); |
|
37
|
|
|
// $count = $list->count(); |
|
38
|
|
|
// for ($i = 0; $i < $count; $i += 10) { |
|
39
|
|
|
// $chunk = $list->limit(10, $i); |
|
40
|
|
|
// foreach ($chunk as $rec) { |
|
41
|
|
|
// if ($rec->isPublished()) { |
|
42
|
|
|
// $rec->publish('Stage', 'Live'); |
|
43
|
|
|
// $rec->flushCache(); |
|
44
|
|
|
// } |
|
45
|
|
|
// } |
|
46
|
|
|
// } |
|
47
|
|
|
|
|
48
|
|
|
echo "<br>\n"; |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
echo "Task complete.\n\n"; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
function run($request) { |
|
|
|
|
|
|
55
|
|
|
increase_time_limit_to(); |
|
56
|
|
|
$self = get_class($this); |
|
57
|
|
|
$verbose = isset($_GET['verbose']); |
|
58
|
|
|
|
|
59
|
|
|
if (isset($_GET['class']) && isset($_GET['id'])) { |
|
60
|
|
|
$item = DataObject::get($_GET['class'])->byID($_GET['id']); |
|
61
|
|
|
if (!$item || !$item->exists()) die('not found: ' . $_GET['id']); |
|
|
|
|
|
|
62
|
|
|
$item->rebuildVFI(); |
|
63
|
|
|
echo "done"; |
|
64
|
|
|
return; |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
if (isset($_GET['link'])) { |
|
68
|
|
|
$item = SiteTree::get_by_link($_GET['link']); |
|
69
|
|
|
if (!$item || !$item->exists()) die('not found: ' . $_GET['link']); |
|
|
|
|
|
|
70
|
|
|
$item->rebuildVFI(); |
|
71
|
|
|
echo "done"; |
|
72
|
|
|
return; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
if (isset($_GET['start'])) { |
|
76
|
|
|
$this->runFrom($_GET['class'], $_GET['start'], $_GET['field']); |
|
77
|
|
|
} |
|
78
|
|
|
else { |
|
79
|
|
|
foreach(array('framework','sapphire') as $dirname) { |
|
80
|
|
|
$script = sprintf("%s%s$dirname%scli-script.php", BASE_PATH, DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR); |
|
81
|
|
|
if(file_exists($script)) { |
|
82
|
|
|
break; |
|
83
|
|
|
} |
|
84
|
|
|
} |
|
85
|
|
|
|
|
86
|
|
|
$classes = VirtualFieldIndex::get_classes_with_vfi(); |
|
87
|
|
|
foreach ($classes as $class) { |
|
88
|
|
|
if (isset($_GET['class']) && $class != $_GET['class']) continue; |
|
89
|
|
|
$singleton = singleton($class); |
|
90
|
|
|
$query = $singleton->get($class); |
|
91
|
|
|
$dtaQuery = $query->dataQuery(); |
|
92
|
|
|
$sqlQuery = $dtaQuery->getFinalisedQuery(); |
|
93
|
|
|
$singleton->extend('augmentSQL',$sqlQuery,$dtaQuery); |
|
94
|
|
|
$total = $query->count(); |
|
95
|
|
|
$startFrom = isset($_GET['startfrom']) ? $_GET['startfrom'] : 0; |
|
96
|
|
|
$field = isset($_GET['field']) ? $_GET['field'] : ''; |
|
97
|
|
|
|
|
98
|
|
|
echo "Class: $class, total: $total\n\n"; |
|
99
|
|
|
|
|
100
|
|
|
for ($offset = $startFrom; $offset < $total; $offset += $this->stat('recordsPerRequest')) { |
|
101
|
|
|
echo "$offset.."; |
|
102
|
|
|
$cmd = "php $script dev/tasks/$self class=$class start=$offset field=$field"; |
|
|
|
|
|
|
103
|
|
|
if($verbose) echo "\n Running '$cmd'\n"; |
|
104
|
|
|
$res = $verbose ? passthru($cmd) : `$cmd`; |
|
105
|
|
|
if($verbose) echo " ".preg_replace('/\r\n|\n/', '$0 ', $res)."\n"; |
|
106
|
|
|
} |
|
107
|
|
|
} |
|
108
|
|
|
} |
|
109
|
|
|
} |
|
110
|
|
|
|
|
111
|
|
|
protected function runFrom($class, $start, $field) { |
|
112
|
|
|
$items = DataList::create($class)->limit($this->stat('recordsPerRequest'), $start); |
|
113
|
|
|
foreach ($items as $item) { |
|
114
|
|
|
$item->rebuildVFI($field); |
|
115
|
|
|
} |
|
116
|
|
|
} |
|
117
|
|
|
|
|
118
|
|
|
} |
|
119
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.