Skip to content
Snippets Groups Projects
Commit 4a89d4cc authored by Angie Byron's avatar Angie Byron
Browse files

#605374 by catch: Don't add non-existing files to the registry.

parent 28bca620
No related branches found
No related tags found
No related merge requests found
......@@ -123,24 +123,27 @@ function registry_get_parsed_files() {
function _registry_parse_files($files) {
$parsed_files = array();
foreach ($files as $filename => $file) {
$filectime = filectime($filename);
$filemtime = filemtime($filename);
$modified_file = !isset($file['filectime']) || !isset($file['filemtime'])
|| $filectime != $file['filectime'] || $filemtime != $file['filemtime'];
if ($modified_file) {
$contents = file_get_contents($filename);
$parsed_files[] = $filename;
// We update the filectime/filemtime after we've saved the files resources
// rather than here, so if we don't make it through this rebuild, the next
// run will reparse the file.
_registry_parse_file($filename, $contents, $file['module'], $file['weight']);
db_merge('registry_file')
->key(array('filename' => $filename))
->fields(array(
'filectime' => $filectime,
'filemtime' => $filemtime,
))
->execute();
if (file_exists($filename)) {
$filectime = filectime($filename);
$filemtime = filemtime($filename);
$modified_file = !isset($file['filectime']) || !isset($file['filemtime'])
|| $filectime != $file['filectime'] || $filemtime != $file['filemtime'];
if ($modified_file) {
$contents = file_get_contents($filename);
$parsed_files[] = $filename;
// We update the filectime/filemtime after we've saved the files resources
// rather than here, so if we don't make it through this rebuild, the next
// run will reparse the file.
_registry_parse_file($filename, $contents, $file['module'], $file['weight']);
db_merge('registry_file')
->key(array('filename' => $filename))
->fields(array(
'filectime' => $filectime,
'filemtime' => $filemtime,
))
->execute();
}
}
}
return $parsed_files;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment