-# Copyright (C) 2023, 2024 Balthasar Szczepański
+# Copyright (C) 2023, 2024, 2025 Balthasar Szczepański
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
use Exporter;
-our $VERSION = '1.1.7';
+our $VERSION = '1.1.8';
our @ISA = qw(Exporter);
our @EXPORT = ();
our @EXPORT_OK = (
my $file_mode, my $no_fseek,
) = @_;
my $fh;
+ my @fl;
my %data;
my $eoh=0;
my @list;
$eoh = 1;
}
+ # check if $file is a list instead of a single string
+ if (ref($file) eq 'ARRAY') {
+ @fl = @$file;
+ $file = shift @fl;
+ }
+
# check if $file is actually a path or maybe a filehandle
# filehandles are references.
if (ref($file)) {
if ($file_mode eq '') {
$file_mode = '<';
}
- unless (open_encoded($fh, "$file_mode:encoding($encoding)", $file)) {
+ unless (open_encoded($fh, "$file_mode:encoding($encoding)", $file, @fl)) {
return %data;
}
}
my $file_mode, my $no_fseek
) = @_;
my $fh;
+ my @fl;
if ($encoding eq '') {
$encoding = 'UTF-8';
}
+ # check if $file is a list instead of a single string
+ if (ref($file) eq 'ARRAY') {
+ @fl = @$file;
+ $file = shift @fl;
+ }
+
# check if $file is actually a path or maybe a filehandle
# filehandles are references.
if (ref($file)) {
if ($file_mode eq '') {
$file_mode = '>';
}
- unless (open_encoded($fh, "$file_mode:encoding($encoding)", $file)) {
+ unless (open_encoded($fh, "$file_mode:encoding($encoding)", $file, @fl)) {
return 0;
}
}
sub write_postdata_file {
(my $file, my $encoding_file, my $encoding_data, my $data) = @_;
my $fh;
+ my @fl;
if ($encoding_file eq '') {
$encoding_file = 'UTF-8';
}
+ # check if $file is a list instead of a single string
+ if (ref($file) eq 'ARRAY') {
+ @fl = @$file;
+ $file = shift @fl;
+ }
+
# check if $file is actually a path or maybe a filehandle
# filehandles are references.
if (ref($file)) {
}
}
else {
- unless (open_encoded($fh, ">:encoding($encoding_file)", $file)) {
+ unless (open_encoded($fh, ">:encoding($encoding_file)", $file, @fl)) {
return 0;
}
}
sub read_list_file {
(my $file, my $encoding, my $limit) = @_;
my $fh;
+ my @fl;
my @data;
if ($encoding eq '') {
}
}
+ # check if $file is a list instead of a single string
+ if (ref($file) eq 'ARRAY') {
+ @fl = @$file;
+ $file = shift @fl;
+ }
+
# check if $file is actually a path or maybe a filehandle
# filehandles are references.
if (ref($file)) {
}
}
else {
- unless (open_encoded($fh, "<:encoding($encoding)", $file)) {
+ unless (open_encoded($fh, "<:encoding($encoding)", $file, @fl)) {
return @data;
}
}
sub write_list_file {
(my $file, my $encoding, my $data) = @_;
my $fh;
+ my @fl;
if ($encoding eq '') {
$encoding = 'UTF-8';
}
+ # check if $file is a list instead of a single string
+ if (ref($file) eq 'ARRAY') {
+ @fl = @$file;
+ $file = shift @fl;
+ }
+
# check if $file is actually a path or maybe a filehandle
# filehandles are references.
if (ref($file)) {
}
}
else {
- unless (open_encoded($fh, ">:encoding($encoding)", $file)) {
+ unless (open_encoded($fh, ">:encoding($encoding)", $file, @fl)) {
return 0;
}
}
sub read_header_file {
(my $file, my $encoding) = @_;
my $fh;
+ my @fl;
my %data;
my $status_line=1;
$encoding = 'utf8';
}
+ # check if $file is a list instead of a single string
+ if (ref($file) eq 'ARRAY') {
+ @fl = @$file;
+ $file = shift @fl;
+ }
+
# check if $file is actually a path or maybe a filehandle
# filehandles are references.
if (ref($file)) {
}
}
else {
- unless (open_encoded($fh, "<:encoding($encoding)", $file)) {
+ unless (open_encoded($fh, "<:encoding($encoding)", $file, @fl)) {
return %data;
}
}