PHP 8.4.0 RC3 available for testing

inotify_init

(PECL inotify >= 0.1.2)

inotify_initInicializa uma instância do Inotify

Descrição

inotify_init(): resource|false

Inicializa uma instância do Inotify para uso com inotify_add_watch().

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Um recurso de fluxo ou false em caso de erro.

Exemplos

Exemplo #1 Exemplo de uso de Inotify

<?php
// Abre uma instância Inotify
$fd = inotify_init();

// Monitora __FILE__ para alterações de metadados (por exemplo, data/horário de modificação)
$watch_descriptor = inotify_add_watch($fd, __FILE__, IN_ATTRIB);

// Gera um evento
touch(__FILE__);

// Lê os eventos
$events = inotify_read($fd);
print_r($events);

// Os métodos a seguir permitem usar funções Inotify sem bloquear em inotify_read():

// - Usando stream_select() em $fd:
$read = array($fd);
$write = null;
$except = null;
stream_select($read,$write,$except,0);

// - Usando stream_set_blocking() em $fd
stream_set_blocking($fd, 0);
inotify_read($fd); // Não bloqueia e retorna falso se nenhum evento estiver pendente

// - Usando inotify_queue_len() para verificar se a fila de eventos não está vazia
$queue_len = inotify_queue_len($fd); // Se > 0, inotify_read() não irá bloquear

// Encerra o monitoramento __FILE__ para alterações de metadados
inotify_rm_watch($fd, $watch_descriptor);

// Fecha a instância do Inotify
// Isso pode encerrar todos os monitoramentos se isso ainda não tiver sido feito
fclose($fd);

?>

O exemplo acima produzirá algo semelhante a:

array(
  array(
    'wd' => 1,     // Igual a $watch_descriptor
    'mask' => 4,   // Bit IN_ATTRIB definido
    'cookie' => 0, // ID esclusivo para conectar eventos relacionados (ex.:
                   // eventos IN_MOVE_FROM e IN_MOVE_TO)
    'name' => '',  // o nome de um arquivo (ex.: se as alterações são monitoradas
                   // em um diretório)
  ),
);

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
19
david dot schueler at tel-billig dot de
13 years ago
Example for tailing a file (like tail -f) using inotify.
<?php
/**
* Tail a file (UNIX only!)
* Watch a file for changes using inotify and return the changed data
*
* @param string $file - filename of the file to be watched
* @param integer $pos - actual position in the file
* @return string
*/
function tail($file,&$pos) {
// get the size of the file
if(!$pos) $pos = filesize($file);
// Open an inotify instance
$fd = inotify_init();
// Watch $file for changes.
$watch_descriptor = inotify_add_watch($fd, $file, IN_ALL_EVENTS);
// Loop forever (breaks are below)
while (true) {
// Read events (inotify_read is blocking!)
$events = inotify_read($fd);
// Loop though the events which occured
foreach ($events as $event=>$evdetails) {
// React on the event type
switch (true) {
// File was modified
case ($evdetails['mask'] & IN_MODIFY):
// Stop watching $file for changes
inotify_rm_watch($fd, $watch_descriptor);
// Close the inotify instance
fclose($fd);
// open the file
$fp = fopen($file,'r');
if (!
$fp) return false;
// seek to the last EOF position
fseek($fp,$pos);
// read until EOF
while (!feof($fp)) {
$buf .= fread($fp,8192);
}
// save the new EOF to $pos
$pos = ftell($fp); // (remember: $pos is called by reference)
// close the file pointer
fclose($fp);
// return the new data and leave the function
return $buf;
// be a nice guy and program good code ;-)
break;

// File was moved or deleted
case ($evdetails['mask'] & IN_MOVE):
case (
$evdetails['mask'] & IN_MOVE_SELF):
case (
$evdetails['mask'] & IN_DELETE):
case (
$evdetails['mask'] & IN_DELETE_SELF):
// Stop watching $file for changes
inotify_rm_watch($fd, $watch_descriptor);
// Close the inotify instance
fclose($fd);
// Return a failure
return false;
break;
}
}
}
}

// Use it like that:
$lastpos = 0;
while (
true) {
echo
tail($file,$lastpos);
}
?>
To Top