adinan-cenci/file-editor

A library to read and write files.

v1.1.1 2023-07-22 14:29 UTC

This package is auto-updated.

Last update: 2024-04-22 16:09:43 UTC


README

A small library to edit and read files.

This used to be part of my json-lines library, but I decided to move to a separated repository for the sake of organization.



How to use it

Instantiating

use AdinanCenci\FileEditor\File;

$file = new File('my-file.txt');



Iterating

foreach ($file->lines as $lineN => $line) {
    echo "$lineN: $line <br>";
}



Add a line to the end of the file

$file->addLine('foo-bar');



Add a line to the middle of the file

$lineN = 5;
$line  = 'foo-bar';
$file->addLine($line, $lineN);

If the file has less than $line lines, the gap will be filled with blank lines.



Add several lines to the end of the file

$lines = [
    'foo: bar',
    'bar: foo',
];

$file->addLines($lines);



Add several lines in the middle of the file

$lines = [
    2 => 'foo: bar',
    6 => 'bar: foo',
];

$file->addLines($lines, false);



Replace an existing line

$lineN = 10;
$line  = 'foo-bar';
$file->setLine($lineN, $line);

The difference between ::addLine() and ::setLine() is that ::setLine() will overwrite whatever is already present at $line.



Set multiple lines

$lines = [
    0 => 'foo: bar',
    5 => 'bar: foo',
];

$file->setLines($lines);



Retrieve lines

$lineN = 10;
$line  = $file->getLine($lineN);

Returns null if the line does not exist.



Retrieve multiple objects

$linesN = [0, 1, 2];
$lines  = $file->getLines($linesN);



Delete lines

$lineN = 10;
$file->deleteLine($lineN);



Delete multiple lines

$linesN = [0, 1, 2];
$file->deleteLines($linesN);



Search

The library also provides a way to query the file.
Instantiate a new Search object, give it conditions and call the ::find() method, it will return an array of matching lines indexed by their line in the file.

$search = $file->search();
$search->condition('content', 'value to compare', 'operator');
$results = $search->find();



Equals operator

$search->condition('lineNumber', 10, '=');
// Will match the 11th line in the file.



In operator

$search->condition('content', ['Iliad', ' Odyssey'], 'IN');
// Will match lines that match either "Iliad" or "Odyssey" 
// ( case insensitive ).



Like operator

$search->condition('content', 'foo', 'LIKE');
// Will match lines that contains the word "foo"
// e.g: "foo", "foo bar", "foofighters" etc ( case insensitive ).

$search->condition('content', ['foo', 'bar'], 'LIKE');
// It also accept arrays. This will match match 
// "fool", "barrier", "barista" etc.



Regex operator

$search->condition('content', '#\d{2}\/\d{2}\/\d{4}#', 'REGEX');
// Will match lines against a regex expression.



Number comparison operators

It also supports "less than", "greater than", "less than or equal", "greater than or equal" and "between".

$search
  ->condition('lineNumber', 2022, '<')
  ->condition('lineNumber', 1990, '>')
  ->condition('lineNumber', 60, '<=')
  ->condition('lineNumber', 18, '>=')
  ->condition('length', [10, 50], 'BETWEEN');



Negating operators

You may also negate the operators.

$search
  ->condition('content', 'Iliad', '!=') // Different to ( case insensitive ).
  ->condition('content', ['Iliad', ' Odyssey'], 'NOT IN') // case insensitive.
  ->condition('length', [10, 50], 'NOT BETWEEN')
  ->condition('content', ['foo', 'bar'], 'UNLIKE');



Multiple conditions

You may add multiple conditions to a search. By default all of the conditions must be met.

$search = $file->search();
$search
  ->condition('content', 'Iron Maiden', '=')
  ->condition('lineNumber', 2000, '<');
$results = $search->find();
// Will match entries for Iron Maiden, before the line 2000.

But you can make it so that only one needs to be met.

$search = $file->search('OR');
$search
  ->condition('content', 'Blind Guardian', '=')
  ->condition('content', 'Demons & Wizards', '=');
$results = $search->find();
// Will match entries for both Blind Guardian and Demons & Wizards.



Conditions groups

You may also group conditons to create complex queries.

$search = $file->search('OR');

$search->andConditionGroup()
  ->condition('content', 'Angra', '=')
  ->condition('lineNumber', 2010, '<');

$search->andConditionGroup()
  ->condition('content', 'Almah', '=')
  ->condition('lineNumber', 2010, '>');

$results = $search->find();
// Will match entries for Angra from before line 2010 OR
// entries for Almah from after that



License

MIT



How to install it

Use composer.

composer require adinan-cenci/file-editor