2010-06-20 08:15:10 +02:00
|
|
|
# File: DualIndexHashObject.pm
|
|
|
|
#
|
2019-06-26 18:34:19 +02:00
|
|
|
# Purpose: Provides a hash-table object with an abstracted API that includes
|
2021-06-19 06:23:34 +02:00
|
|
|
# setting and deleting values, saving to and loading from files, etc.
|
|
|
|
#
|
|
|
|
# DualIndexHashObject extends the HashObject with an additional index key.
|
|
|
|
# Provides case-insensitive access to both index keys, while preserving
|
|
|
|
# original case when displaying the keys.
|
2020-03-04 22:25:41 +01:00
|
|
|
#
|
|
|
|
# Data is stored in working memory for lightning fast performance. If you have
|
|
|
|
# a huge amount of data, consider DualIndexSQLiteObject instead.
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2017-03-05 22:33:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2010-06-20 08:15:10 +02:00
|
|
|
package PBot::DualIndexHashObject;
|
|
|
|
|
2021-06-19 06:23:34 +02:00
|
|
|
use PBot::Imports;
|
2019-07-11 03:40:53 +02:00
|
|
|
|
2010-06-20 08:15:10 +02:00
|
|
|
use Text::Levenshtein qw(fastdistance);
|
2019-06-28 09:22:57 +02:00
|
|
|
use JSON;
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-14 22:32:12 +01:00
|
|
|
sub new {
|
2021-06-19 06:23:34 +02:00
|
|
|
my ($class, %args) = @_;
|
|
|
|
my $self = bless {}, $class;
|
|
|
|
Carp::croak("Missing pbot reference to " . __FILE__) unless exists $args{pbot};
|
|
|
|
$self->{pbot} = delete $args{pbot};
|
|
|
|
$self->initialize(%args);
|
2020-02-15 23:38:32 +01:00
|
|
|
return $self;
|
2020-02-14 22:32:12 +01:00
|
|
|
}
|
|
|
|
|
2010-06-20 08:15:10 +02:00
|
|
|
sub initialize {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, %conf) = @_;
|
2021-06-19 06:23:34 +02:00
|
|
|
$self->{name} = $conf{name} // 'unnamed';
|
2020-02-15 23:38:32 +01:00
|
|
|
$self->{filename} = $conf{filename} // Carp::carp("Missing filename to DualIndexHashObject, will not be able to save to or load from file.");
|
2020-05-15 01:57:34 +02:00
|
|
|
$self->{save_queue_timeout} = $conf{save_queue_timeout} // 0;
|
2021-06-19 06:23:34 +02:00
|
|
|
$self->{hash} = {};
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub load {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $filename) = @_;
|
|
|
|
$filename = $self->{filename} if not defined $filename;
|
2020-01-15 03:10:53 +01:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not defined $filename) {
|
|
|
|
Carp::carp "No $self->{name} filename specified -- skipping loading from file";
|
|
|
|
return;
|
2020-01-15 03:10:53 +01:00
|
|
|
}
|
|
|
|
|
2021-06-05 22:20:03 +02:00
|
|
|
$self->{pbot}->{logger}->log("Loading $self->{name} from $filename\n");
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
if (not open(FILE, "< $filename")) {
|
|
|
|
$self->{pbot}->{logger}->log("Skipping loading from file: Couldn't open $filename: $!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $contents = do {
|
|
|
|
local $/;
|
|
|
|
<FILE>;
|
|
|
|
};
|
|
|
|
|
|
|
|
$self->{hash} = decode_json $contents if length $contents;
|
|
|
|
close FILE;
|
|
|
|
|
|
|
|
# update existing entries to use _name to preserve case
|
|
|
|
# and lowercase any non-lowercased entries
|
|
|
|
foreach my $primary_index (keys %{$self->{hash}}) {
|
|
|
|
if (not exists $self->{hash}->{$primary_index}->{_name}) {
|
2020-04-23 01:46:09 +02:00
|
|
|
if ($primary_index ne lc $primary_index) {
|
|
|
|
if (exists $self->{hash}->{lc $primary_index}) {
|
|
|
|
Carp::croak "Cannot update $self->{name} primary index $primary_index; duplicate object found";
|
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
my $data = delete $self->{hash}->{$primary_index};
|
|
|
|
$data->{_name} = $primary_index;
|
|
|
|
$primary_index = lc $primary_index;
|
|
|
|
$self->{hash}->{$primary_index} = $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
foreach my $secondary_index (grep { $_ ne '_name' } keys %{$self->{hash}->{$primary_index}}) {
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not exists $self->{hash}->{$primary_index}->{$secondary_index}->{_name}) {
|
2020-04-23 01:46:09 +02:00
|
|
|
if ($secondary_index ne lc $secondary_index) {
|
2020-02-15 23:38:32 +01:00
|
|
|
if (exists $self->{hash}->{$primary_index}->{lc $secondary_index}) {
|
|
|
|
Carp::croak "Cannot update $self->{name} $primary_index sub-object $secondary_index; duplicate object found";
|
|
|
|
}
|
|
|
|
|
|
|
|
my $data = delete $self->{hash}->{$primary_index}->{$secondary_index};
|
|
|
|
$data->{_name} = $secondary_index;
|
|
|
|
$secondary_index = lc $secondary_index;
|
|
|
|
$self->{hash}->{$primary_index}->{$secondary_index} = $data;
|
|
|
|
}
|
|
|
|
}
|
2020-01-15 03:10:53 +01:00
|
|
|
}
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub save {
|
2020-02-15 23:38:32 +01:00
|
|
|
my $self = shift;
|
|
|
|
my $filename;
|
|
|
|
if (@_) { $filename = shift; }
|
|
|
|
else { $filename = $self->{filename}; }
|
|
|
|
|
|
|
|
if (not defined $filename) {
|
|
|
|
Carp::carp "No $self->{name} filename specified -- skipping saving to file.\n";
|
|
|
|
return;
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-05-15 01:57:34 +02:00
|
|
|
my $subref = sub {
|
|
|
|
$self->{pbot}->{logger}->log("Saving $self->{name} to $filename\n");
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-05-15 01:57:34 +02:00
|
|
|
if (not $self->get_data('$metadata$', '$metadata$', 'update_version')) {
|
|
|
|
$self->add('$metadata$', '$metadata$', { update_version => PBot::VERSION::BUILD_REVISION });
|
|
|
|
}
|
2020-04-22 04:44:14 +02:00
|
|
|
|
2020-05-15 01:57:34 +02:00
|
|
|
$self->set('$metadata$', '$metadata$', 'name', $self->{name}, 1);
|
2020-04-25 08:04:07 +02:00
|
|
|
|
2020-05-15 01:57:34 +02:00
|
|
|
my $json = JSON->new;
|
|
|
|
my $json_text = $json->pretty->canonical->utf8->encode($self->{hash});
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-05-15 01:57:34 +02:00
|
|
|
open(FILE, "> $filename") or die "Couldn't open $filename: $!\n";
|
|
|
|
print FILE "$json_text\n";
|
|
|
|
close FILE;
|
|
|
|
};
|
|
|
|
|
|
|
|
if ($self->{save_queue_timeout}) {
|
|
|
|
# enqueue the save to prevent save-thrashing
|
2021-06-22 02:57:04 +02:00
|
|
|
$self->{pbot}->{event_queue}->replace_subref_or_enqueue_event(
|
2020-05-15 01:57:34 +02:00
|
|
|
$subref,
|
|
|
|
$self->{save_queue_timeout},
|
|
|
|
"save $self->{name}",
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
# execute it right now
|
|
|
|
$subref->();
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
2017-08-06 05:15:15 +02:00
|
|
|
sub clear {
|
2020-02-15 23:38:32 +01:00
|
|
|
my $self = shift;
|
|
|
|
$self->{hash} = {};
|
2017-08-06 05:15:15 +02:00
|
|
|
}
|
|
|
|
|
2010-06-20 08:15:10 +02:00
|
|
|
sub levenshtein_matches {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index, $distance, $strictnamespace) = @_;
|
|
|
|
my $comma = '';
|
|
|
|
my $result = "";
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
$distance = 0.60 if not defined $distance;
|
2011-01-29 02:21:17 +01:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
$primary_index = '.*' if not defined $primary_index;
|
2019-06-26 18:34:19 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not $secondary_index) {
|
|
|
|
foreach my $index (sort keys %{$self->{hash}}) {
|
|
|
|
my $distance_result = fastdistance($primary_index, $index);
|
|
|
|
my $length = (length $primary_index > length $index) ? length $primary_index : length $index;
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if ($distance_result / $length < $distance) {
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name = $self->get_key_name($index);
|
2020-02-15 23:38:32 +01:00
|
|
|
if ($name =~ / /) { $result .= $comma . "\"$name\""; }
|
|
|
|
else { $result .= $comma . $name; }
|
|
|
|
$comma = ", ";
|
|
|
|
}
|
2018-08-09 02:38:57 +02:00
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
} else {
|
|
|
|
my $lc_primary_index = lc $primary_index;
|
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}) { return 'none'; }
|
|
|
|
|
|
|
|
my $last_header = "";
|
|
|
|
my $header = "";
|
|
|
|
|
|
|
|
foreach my $index1 (sort keys %{$self->{hash}}) {
|
2020-04-23 01:46:09 +02:00
|
|
|
$header = "[" . $self->get_key_name($index1) . "] ";
|
2020-02-15 23:38:32 +01:00
|
|
|
$header = '[global] ' if $header eq '[.*] ';
|
|
|
|
|
|
|
|
if ($strictnamespace) {
|
|
|
|
next unless $index1 eq '.*' or $index1 eq $lc_primary_index;
|
|
|
|
$header = "" unless $header eq '[global] ';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $index2 (sort keys %{$self->{hash}->{$index1}}) {
|
|
|
|
my $distance_result = fastdistance($secondary_index, $index2);
|
|
|
|
my $length = (length $secondary_index > length $index2) ? length $secondary_index : length $index2;
|
|
|
|
|
|
|
|
if ($distance_result / $length < $distance) {
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name = $self->get_key_name($index1, $index2);
|
2020-02-15 23:38:32 +01:00
|
|
|
$header = "" if $last_header eq $header;
|
|
|
|
$last_header = $header;
|
|
|
|
$comma = '; ' if $comma ne '' and $header ne '';
|
|
|
|
if ($name =~ / /) { $result .= $comma . $header . "\"$name\""; }
|
|
|
|
else { $result .= $comma . $header . $name; }
|
|
|
|
$comma = ", ";
|
|
|
|
}
|
|
|
|
}
|
2011-01-29 02:21:17 +01:00
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
$result =~ s/(.*), /$1 or /;
|
|
|
|
$result = 'none' if $comma eq '';
|
|
|
|
return $result;
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub set {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index, $key, $value, $dont_save) = @_;
|
|
|
|
my $lc_primary_index = lc $primary_index;
|
|
|
|
my $lc_secondary_index = lc $secondary_index;
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}) {
|
|
|
|
my $result = "$self->{name}: $primary_index not found; similiar matches: ";
|
|
|
|
$result .= $self->levenshtein_matches($primary_index);
|
|
|
|
return $result;
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}) {
|
|
|
|
my $secondary_text = $secondary_index =~ / / ? "\"$secondary_index\"" : $secondary_index;
|
2020-04-23 01:46:09 +02:00
|
|
|
my $result = "$self->{name}: [" . $self->get_key_name($lc_primary_index) . "] $secondary_text not found; similiar matches: ";
|
2020-02-15 23:38:32 +01:00
|
|
|
$result .= $self->levenshtein_matches($primary_index, $secondary_index);
|
|
|
|
return $result;
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name1 = $self->get_key_name($lc_primary_index);
|
|
|
|
my $name2 = $self->get_key_name($lc_primary_index, $lc_secondary_index);
|
2020-01-15 03:10:53 +01:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
$name1 = 'global' if $name1 eq '.*';
|
|
|
|
$name2 = "\"$name2\"" if $name2 =~ / /;
|
2020-01-15 03:10:53 +01:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not defined $key) {
|
|
|
|
my $result = "[$name1] $name2 keys:\n";
|
|
|
|
my $comma = '';
|
|
|
|
foreach my $key (sort keys %{$self->{hash}->{$lc_primary_index}->{$lc_secondary_index}}) {
|
|
|
|
next if $key eq '_name';
|
2021-02-07 22:43:39 +01:00
|
|
|
$result .= $comma . "$key: " . $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{$key};
|
2020-02-15 23:38:32 +01:00
|
|
|
$comma = ";\n";
|
|
|
|
}
|
|
|
|
$result .= "none" if ($comma eq '');
|
|
|
|
return $result;
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not defined $value) { $value = $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{$key}; }
|
|
|
|
else {
|
|
|
|
$self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{$key} = $value;
|
|
|
|
$self->save unless $dont_save;
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
return "[$name1] $name2: $key " . (defined $value ? "set to $value" : "is not set.");
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub unset {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index, $key) = @_;
|
|
|
|
my $lc_primary_index = lc $primary_index;
|
|
|
|
my $lc_secondary_index = lc $secondary_index;
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}) {
|
|
|
|
my $result = "$self->{name}: $primary_index not found; similiar matches: ";
|
|
|
|
$result .= $self->levenshtein_matches($primary_index);
|
|
|
|
return $result;
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name1 = $self->get_key_name($lc_primary_index);
|
2020-02-15 23:38:32 +01:00
|
|
|
$name1 = 'global' if $name1 eq '.*';
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}) {
|
|
|
|
my $result = "$self->{name}: [$name1] $secondary_index not found; similiar matches: ";
|
|
|
|
$result .= $self->levenshtein_matches($primary_index, $secondary_index);
|
|
|
|
return $result;
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name2 = $self->get_key_name($lc_primary_index, $lc_secondary_index);
|
2020-02-15 23:38:32 +01:00
|
|
|
$name2 = "\"$name2\"" if $name2 =~ / /;
|
2020-01-15 03:10:53 +01:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (defined delete $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{$key}) {
|
|
|
|
$self->save;
|
|
|
|
return "$self->{name}: [$name1] $name2: $key unset.";
|
|
|
|
} else {
|
|
|
|
return "$self->{name}: [$name1] $name2: $key does not exist.";
|
|
|
|
}
|
2020-02-13 22:31:36 +01:00
|
|
|
$self->save;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub exists {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index, $data_index) = @_;
|
|
|
|
return 0 if not defined $primary_index;
|
|
|
|
$primary_index = lc $primary_index;
|
|
|
|
return 0 if not exists $self->{hash}->{$primary_index};
|
|
|
|
return 1 if not defined $secondary_index;
|
|
|
|
$secondary_index = lc $secondary_index;
|
|
|
|
return 0 if not exists $self->{hash}->{$primary_index}->{$secondary_index};
|
|
|
|
return 1 if not defined $data_index;
|
|
|
|
return exists $self->{hash}->{$primary_index}->{$secondary_index}->{$data_index};
|
2020-02-13 22:31:36 +01:00
|
|
|
}
|
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
sub get_key_name {
|
|
|
|
my ($self, $primary_index, $secondary_index) = @_;
|
|
|
|
|
|
|
|
my $lc_primary_index = lc $primary_index;
|
|
|
|
|
|
|
|
return $lc_primary_index if not exists $self->{hash}->{$lc_primary_index};
|
|
|
|
|
|
|
|
if (not defined $secondary_index) {
|
|
|
|
if (exists $self->{hash}->{$lc_primary_index}->{_name}) {
|
|
|
|
return $self->{hash}->{$lc_primary_index}->{_name};
|
|
|
|
} else {
|
|
|
|
return $lc_primary_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my $lc_secondary_index = lc $secondary_index;
|
|
|
|
|
|
|
|
return $lc_secondary_index if not exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index};
|
|
|
|
|
|
|
|
if (exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{_name}) {
|
|
|
|
return $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{_name};
|
|
|
|
} else {
|
|
|
|
return $lc_secondary_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-13 22:31:36 +01:00
|
|
|
sub get_keys {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index) = @_;
|
2020-04-22 04:44:14 +02:00
|
|
|
return grep { $_ ne '$metadata$' } keys %{$self->{hash}} if not defined $primary_index;
|
2020-02-13 22:31:36 +01:00
|
|
|
|
2020-03-04 22:25:41 +01:00
|
|
|
my $lc_primary_index = lc $primary_index;
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not defined $secondary_index) {
|
2020-03-04 22:25:41 +01:00
|
|
|
return () if not exists $self->{hash}->{$lc_primary_index};
|
2020-04-22 04:44:14 +02:00
|
|
|
return grep { $_ ne '_name' and $_ ne '$metadata$' } keys %{$self->{hash}->{$lc_primary_index}};
|
2020-02-15 23:38:32 +01:00
|
|
|
}
|
2020-02-13 22:31:36 +01:00
|
|
|
|
2020-03-04 22:25:41 +01:00
|
|
|
my $lc_secondary_index = lc $secondary_index;
|
|
|
|
|
|
|
|
return () if not exists $self->{hash}->{$lc_primary_index}
|
|
|
|
or not exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index};
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
return grep { $_ ne '_name' } keys %{$self->{hash}->{lc $primary_index}->{lc $secondary_index}};
|
2020-02-13 22:31:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub get_data {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index, $data_index) = @_;
|
|
|
|
$primary_index = lc $primary_index if defined $primary_index;
|
|
|
|
$secondary_index = lc $secondary_index if defined $secondary_index;
|
|
|
|
return undef if not exists $self->{hash}->{$primary_index};
|
|
|
|
return $self->{hash}->{$primary_index} if not defined $secondary_index;
|
|
|
|
return $self->{hash}->{$primary_index}->{$secondary_index} if not defined $data_index;
|
|
|
|
return $self->{hash}->{$primary_index}->{$secondary_index}->{$data_index};
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub add {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index, $data, $dont_save, $quiet) = @_;
|
|
|
|
my $lc_primary_index = lc $primary_index;
|
|
|
|
my $lc_secondary_index = lc $secondary_index;
|
|
|
|
|
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}) {
|
2020-04-23 01:46:09 +02:00
|
|
|
# preserve case
|
|
|
|
if ($primary_index ne $lc_primary_index) {
|
|
|
|
$self->{hash}->{$lc_primary_index}->{_name} = $primary_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($secondary_index ne $lc_secondary_index) {
|
|
|
|
# preserve case
|
|
|
|
$data->{_name} = $secondary_index;
|
2020-02-15 23:38:32 +01:00
|
|
|
}
|
|
|
|
|
2020-04-29 01:59:58 +02:00
|
|
|
if (exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}) {
|
|
|
|
foreach my $key (keys %{$data}) {
|
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{$key}) {
|
|
|
|
$self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{$key} = $data->{$key};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$self->{hash}->{$lc_primary_index}->{$lc_secondary_index} = $data;
|
|
|
|
}
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
$self->save() unless $dont_save;
|
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name1 = $self->get_key_name($lc_primary_index);
|
|
|
|
my $name2 = $self->get_key_name($lc_primary_index, $lc_secondary_index);
|
2020-02-15 23:38:32 +01:00
|
|
|
$name1 = 'global' if $name1 eq '.*';
|
|
|
|
$name2 = "\"$name2\"" if $name2 =~ / /;
|
|
|
|
$self->{pbot}->{logger}->log("$self->{name}: [$name1]: $name2 added.\n") unless $dont_save or $quiet;
|
|
|
|
return "$self->{name}: [$name1]: $name2 added.";
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub remove {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $primary_index, $secondary_index, $data_index, $dont_save) = @_;
|
|
|
|
my $lc_primary_index = lc $primary_index;
|
|
|
|
my $lc_secondary_index = lc $secondary_index;
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}) {
|
|
|
|
my $result = "$self->{name}: $primary_index not found; similiar matches: ";
|
|
|
|
$result .= $self->levenshtein_matches($primary_index);
|
|
|
|
return $result;
|
2020-02-13 22:31:36 +01:00
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not defined $secondary_index) {
|
|
|
|
my $data = delete $self->{hash}->{$lc_primary_index};
|
|
|
|
if (defined $data) {
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name = exists $data->{_name} ? $data->{_name} : $lc_primary_index;
|
2020-02-15 23:38:32 +01:00
|
|
|
$name = 'global' if $name eq '.*';
|
|
|
|
$self->save unless $dont_save;
|
|
|
|
return "$self->{name}: $name removed.";
|
|
|
|
} else {
|
|
|
|
return "$self->{name}: $primary_index does not exist.";
|
|
|
|
}
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name1 = $self->get_key_name($lc_primary_index);
|
2020-02-15 23:38:32 +01:00
|
|
|
$name1 = 'global' if $name1 eq '.*';
|
2010-06-20 08:15:10 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not exists $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}) {
|
|
|
|
my $result = "$self->{name}: [$name1] $secondary_index not found; similiar matches: ";
|
|
|
|
$result .= $self->levenshtein_matches($primary_index, $secondary_index);
|
|
|
|
return $result;
|
|
|
|
}
|
2013-07-24 14:35:40 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not defined $data_index) {
|
|
|
|
my $data = delete $self->{hash}->{$lc_primary_index}->{$lc_secondary_index};
|
|
|
|
if (defined $data) {
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name2 = exists $data->{_name} ? $data->{_name} : $lc_secondary_index;
|
2020-02-15 23:38:32 +01:00
|
|
|
$name2 = "\"$name2\"" if $name2 =~ / /;
|
2013-07-24 14:35:40 +02:00
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
# remove primary group if no more secondaries
|
2020-04-25 03:17:25 +02:00
|
|
|
if ((grep { $_ ne '_name' } keys %{$self->{hash}->{$lc_primary_index}}) == 0) {
|
2020-04-23 01:46:09 +02:00
|
|
|
delete $self->{hash}->{$lc_primary_index};
|
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
$self->save unless $dont_save;
|
|
|
|
return "$self->{name}: [$name1] $name2 removed.";
|
|
|
|
} else {
|
|
|
|
return "$self->{name}: [$name1] $secondary_index does not exist.";
|
|
|
|
}
|
2020-02-13 22:31:36 +01:00
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
|
2020-04-23 01:46:09 +02:00
|
|
|
my $name2 = $self->get_key_name($lc_primary_index, $lc_secondary_index);
|
|
|
|
if (defined delete $self->{hash}->{$lc_primary_index}->{$lc_secondary_index}->{$data_index}) {
|
|
|
|
return "$self->{name}: [$name1] $name2.$data_index removed.";
|
|
|
|
} else {
|
|
|
|
return "$self->{name}: [$name1] $name2.$data_index does not exist.";
|
|
|
|
}
|
2010-06-20 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
2020-03-04 22:25:41 +01:00
|
|
|
# for compatibility with DualIndexSQLiteObject
|
2020-02-26 11:24:15 +01:00
|
|
|
sub create_metadata { }
|
|
|
|
|
2020-03-04 22:25:41 +01:00
|
|
|
# todo:
|
|
|
|
sub get_each { }
|
|
|
|
sub get_next { }
|
|
|
|
sub get_all { }
|
|
|
|
|
2010-06-20 08:15:10 +02:00
|
|
|
1;
|