forked from interchange/interchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSessionDB.pm
191 lines (168 loc) · 4.12 KB
/
SessionDB.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# Vend::SessionDB - Stores Interchange session information in a database table
#
# $Id: SessionDB.pm,v 2.11 2007-10-09 13:56:46 jon Exp $
#
# Copyright (C) 2002-2007 Interchange Development Group
# Copyright (C) 1996-2002 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301 USA.
package Vend::SessionDB;
require Tie::Hash;
@ISA = qw(Tie::Hash);
use strict;
use Vend::Util;
use vars qw($VERSION);
$VERSION = substr(q$Revision: 2.11 $, 10);
sub TIEHASH {
my($class, $db) = @_;
$db = Vend::Data::database_exists_ref($db)
or die "Vend::SessionDB: bad database $db\n";
my $self = {
DB => $db,
DBH => $db->dbh(),
TABLE => $db->name(),
LOCK_VALUE => {},
};
bless $self, $class;
}
sub UNTIE {
my $self = shift;
%$self = ();
}
sub FETCH {
my($self, $key) = @_;
#::logDebug("$self fetch: $key (pid=$$)");
my $rc;
if($key =~ /^LOCK_/) {
return $self->{LOCK_VALUE}{$key}
if $self->{LOCK_VALUE}{$key};
my $val = time() . ":$$";
$self->{DOLOCK} ||=
$self->{DBH}->prepare(
"insert into $self->{TABLE} (code,sessionlock) values(?,?)",
);
eval {
$rc = $self->{DOLOCK}->execute($key, $val);
};
if($@ or $rc < 1) {
if($@) {
::logDebug("Error on session execute: $@");
}
else {
::logDebug("Session insert returned rc=$rc");
}
## Session exists
my $sth;
eval {
$sth = $self->{DBH}->prepare(
"select code,sessionlock from $self->{TABLE} where code = ?",
);
};
if($@) {
my $msg = errmsg("Session lock fetch prepare failed: %s", $@);
::logDebug($msg);
::logGlobal($msg);
}
eval {
$sth->execute($key)
or do {
logError("DBI query error when fetching session lock $key");
return undef;
};
};
if($@) {
my $msg = errmsg("Session lock fetch execute failed: %s", $@);
::logDebug($msg);
::logGlobal($msg);
}
my $ary = $sth->fetchrow_arrayref
or return undef;
return $ary->[1];
}
else {
## No session there already
$self->{LOCK_VALUE}{$key} = $val;
return undef;
}
}
else {
return $self->{SESSION_VALUE}{$key}
if $self->{SESSION_VALUE}{$key};
my $sth = $self->{FETCH} ||= $self->{DBH}->prepare(
"select session from $self->{TABLE} where code = ?"
);
eval {
$rc = $sth->execute($key);
};
if($@) {
## Session fetch error
logError("DBI error fetching session $key");
undef $@;
return undef;
}
my $ary = $sth->fetchrow_arrayref
or return undef;
return $self->{SESSION_VALUE}{$key} = $ary->[0];
}
}
sub FIRSTKEY {
my $self = shift;
my $tmp = pop @{$self->{DB}};
eval {
$self->{DB}->config('DELIMITER');
};
push @{$self->{DB}}, $tmp if $@;
my @pair = $self->{DB}->each_record();
while($pair[0] =~ /^LOCK_/) {
@pair = $self->{DB}->each_record();
}
return @pair;
}
sub NEXTKEY {
my $self = shift;
my @pair = $self->{DB}->each_record();
while($pair[0] =~ /^LOCK_/) {
@pair = $self->{DB}->each_record();
}
return @pair;
}
sub EXISTS {
my($self,$key) = @_;
#::logDebug("$self EXISTS check: $key");
return undef unless $self->{DB}->record_exists($key);
1;
}
sub DELETE {
my($self,$key) = @_;
#::logDebug("$self delete: $key");
$self->{DELHANDLE} ||= $self->{DBH}->prepare(
"delete from $self->{TABLE} where code = ?",
);
$self->{DELHANDLE}->execute($key);
}
sub STORE {
my($self, $key, $val) = @_;
if( $key =~ s/^LOCK_//) {
return $self->{LOCK_VALUE}{$key};
}
else {
$self->{DB}->set_field( $key, 'session', $val);
undef $self->{SESSION_VALUE}{$key};
return 1;
}
}
1;
__END__