ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/DB.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/DB.pm (file contents):
Revision 1.10 by root, Fri Jul 13 05:31:31 2007 UTC vs.
Revision 1.19 by root, Mon Aug 20 16:16:06 2007 UTC

16 16
17use strict; 17use strict;
18use utf8; 18use utf8;
19 19
20use Carp (); 20use Carp ();
21use AnyEvent ();
22use Storable (); 21use Storable ();
23use Config; 22use Config;
23use Event ();
24 24
25use CFPlus; 25use CFPlus;
26 26
27our $DB_HOME = "$Crossfire::VARDIR/cfplus-$BerkeleyDB::db_version-$Config{archname}"; 27our $DB_HOME = "$Crossfire::VARDIR/cfplus-$BerkeleyDB::db_version-$Config{archname}";
28 28
29sub path_of($) { 29sub path_of_res($) {
30 utf8::downgrade $_[0]; # bug in unpack "H*"
30 "$DB_HOME/res-data-$_[0]" 31 "$DB_HOME/res-data-" . unpack "H*", $_[0]
31} 32}
32 33
33sub sync { 34sub sync {
34 # for debugging 35 # for debugging
35 #CFPlus::DB::Server::req (sync => sub { }); 36 #CFPlus::DB::Server::req (sync => sub { });
50 51
51sub unlink($$) { 52sub unlink($$) {
52 CFPlus::DB::Server::req (unlink => @_); 53 CFPlus::DB::Server::req (unlink => @_);
53} 54}
54 55
56sub read_file($$) {
57 CFPlus::DB::Server::req (read_file => @_);
58}
59
55sub write_file($$$) { 60sub write_file($$$) {
56 CFPlus::DB::Server::req (write_file => @_); 61 CFPlus::DB::Server::req (write_file => @_);
62}
63
64sub prefetch_file($$$) {
65 CFPlus::DB::Server::req (prefetch_file => @_);
66}
67
68sub logprint($$$) {
69 CFPlus::DB::Server::req (logprint => @_);
57} 70}
58 71
59our $tilemap; 72our $tilemap;
60 73
61sub get_tile_id_sync($) { 74sub get_tile_id_sync($) {
97 -Cachesize => 8_000_000, 110 -Cachesize => 8_000_000,
98 -ErrFile => "$DB_HOME/errorlog.txt", 111 -ErrFile => "$DB_HOME/errorlog.txt",
99# -ErrPrefix => "DATABASE", 112# -ErrPrefix => "DATABASE",
100 -Verbose => 1, 113 -Verbose => 1,
101 -Flags => DB_CREATE | DB_RECOVER | DB_INIT_MPOOL | DB_INIT_LOCK | DB_INIT_TXN | $recover, 114 -Flags => DB_CREATE | DB_RECOVER | DB_INIT_MPOOL | DB_INIT_LOCK | DB_INIT_TXN | $recover,
102 -SetFlags => DB_AUTO_COMMIT | DB_LOG_AUTOREMOVE, 115 -SetFlags => DB_AUTO_COMMIT | DB_LOG_AUTOREMOVE | DB_TXN_WRITE_NOSYNC,
103 or die "unable to create/open database home $DB_HOME: $BerkeleyDB::Error"; 116 or die "unable to create/open database home $DB_HOME: $BerkeleyDB::Error";
104 117
105 1 118 1
106} 119}
107 120
115 -Env => $DB_ENV, 128 -Env => $DB_ENV,
116 -Filename => $table, 129 -Filename => $table,
117# -Filename => "database", 130# -Filename => "database",
118# -Subname => $table, 131# -Subname => $table,
119 -Property => DB_CHKSUM, 132 -Property => DB_CHKSUM,
120 -Flags => DB_CREATE | DB_UPGRADE, 133 -Flags => DB_AUTO_COMMIT | DB_CREATE | DB_UPGRADE,
121 or die "unable to create/open database table $_[0]: $BerkeleyDB::Error" 134 or die "unable to create/open database table $_[0]: $BerkeleyDB::Error"
122 } 135 }
123} 136}
124
125our $SYNC_INTERVAL = 60;
126 137
127our %CB; 138our %CB;
128our $FH; 139our $FH;
129our $ID = "aaa0"; 140our $ID = "aaa0";
130our ($fh_r_watcher, $fh_w_watcher); 141our ($fh_r_watcher, $fh_w_watcher);
131our $sync_timer; 142our $sync_timer;
132our $write_buf; 143our $write_buf;
133our $read_buf; 144our $read_buf;
134 145
146our $SYNC = Event->idle (min => 120, max => 180, parked => 1, cb => sub {
147 CFPlus::DB::Server::req (sync => sub { });
148 $_[0]->w->stop;
149});
150
135sub fh_write { 151sub fh_write {
136 my $len = syswrite $FH, $write_buf; 152 my $len = syswrite $FH, $write_buf;
137 153
138 substr $write_buf, 0, $len, ""; 154 substr $write_buf, 0, $len, "";
139 155
140 undef $fh_w_watcher 156 $fh_w_watcher->stop
141 unless length $write_buf; 157 unless length $write_buf;
142} 158}
143 159
144sub fh_read { 160sub fh_read {
145 my $status = sysread $FH, $read_buf, 16384, length $read_buf; 161 my $status = sysread $FH, $read_buf, 16384, length $read_buf;
181 197
182 my $id = ++$ID; 198 my $id = ++$ID;
183 $write_buf .= pack "N/a*", Storable::freeze [$id, $type, @args]; 199 $write_buf .= pack "N/a*", Storable::freeze [$id, $type, @args];
184 $CB{$id} = $cb; 200 $CB{$id} = $cb;
185 201
186 $fh_w_watcher = AnyEvent->io (fh => $FH, poll => 'w', cb => \&fh_write); 202 $fh_w_watcher->start;
187} 203 $SYNC->start;
188
189sub sync_tick {
190 req "sync", sub { };
191 $sync_timer = AnyEvent->timer (after => $SYNC_INTERVAL, cb => \&sync_tick);
192} 204}
193 205
194sub do_sync { 206sub do_sync {
195 $DB_ENV->txn_checkpoint (0, 0, 0); 207 $DB_ENV->txn_checkpoint (0, 0, 0);
196 () 208 ()
257 269
258 return $id; 270 return $id;
259 } 271 }
260 } 272 }
261 $txn->txn_abort; 273 $txn->txn_abort;
274 select undef, undef, undef, 0.01 * rand;
262 } 275 }
263 276
264 die "maximum number of transaction retries reached - database problems?"; 277 die "maximum number of transaction retries reached - database problems?";
265} 278}
266 279
267sub do_unlink { 280sub do_unlink {
268 unlink $_[0]; 281 unlink $_[0];
269} 282}
270 283
284sub do_read_file {
285 my ($path) = @_;
286
287 utf8::downgrade $path;
288 open my $fh, "<:raw", $path
289 or return;
290 sysread $fh, my $buf, -s $fh;
291
292 $buf
293}
294
271sub do_write_file { 295sub do_write_file {
272 my ($file, $data) = @_; 296 my ($path, $data) = @_;
273 297
274 utf8::downgrade $file; 298 utf8::downgrade $path;
275 utf8::downgrade $data; 299 utf8::downgrade $data;
276 open my $fh, ">:raw", CFPlus::DB::path_of $file 300 open my $fh, ">:raw", $path
277 or return; 301 or return;
278 print $fh $data; 302 syswrite $fh, $data;
279 close $fh; 303 close $fh;
280 304
281 1 305 1
306}
307
308sub do_prefetch_file {
309 my ($path, $size) = @_;
310
311 utf8::downgrade $path;
312 open my $fh, "<:raw", $path
313 or return;
314 sysread $fh, my $buf, $size;
315
316 1
317}
318
319our %LOG_FH;
320
321sub do_logprint {
322 my ($path, $line) = @_;
323
324 $LOG_FH{$path} ||= do {
325 open my $fh, ">>:utf8", $path
326 or warn "Couldn't open logfile $path: $!";
327
328 $fh->autoflush (1);
329
330 $fh
331 };
332
333 my ($sec, $min, $hour, $mday, $mon, $year) = localtime time;
334
335 my $ts = sprintf "%04d-%02d-%02d %02d:%02d:%02d",
336 $year + 1900, $mon + 1, $mday, $hour, $min, $sec;
337
338 print { $LOG_FH{$path} } "$ts $line\n"
282} 339}
283 340
284sub run { 341sub run {
285 ($FH, my $fh) = CFPlus::socketpipe; 342 ($FH, my $fh) = CFPlus::socketpipe;
286 343
288 my $oldfh = select $fh; $| = 1; select $oldfh; 345 my $oldfh = select $fh; $| = 1; select $oldfh;
289 346
290 my $pid = fork; 347 my $pid = fork;
291 348
292 if (defined $pid && !$pid) { 349 if (defined $pid && !$pid) {
350 local $SIG{QUIT};
293 local $SIG{__DIE__}; 351 local $SIG{__DIE__};
352 local $SIG{__WARN__};
294 eval { 353 eval {
295 close $FH; 354 close $FH;
296 355
297 unless (eval { open_db }) { 356 unless (eval { open_db }) {
298 eval { File::Path::rmtree $DB_HOME }; 357 eval { File::Path::rmtree $DB_HOME };
332 close $fh; 391 close $fh;
333 CFPlus::fh_nonblocking $FH, 1; 392 CFPlus::fh_nonblocking $FH, 1;
334 393
335 $CB{die} = sub { die shift }; 394 $CB{die} = sub { die shift };
336 395
337 $fh_r_watcher = AnyEvent->io (fh => $FH, poll => 'r', cb => \&fh_read); 396 $fh_r_watcher = Event->io (fd => $FH, poll => 'r', nice => 1, cb => \&fh_read);
338 397 $fh_w_watcher = Event->io (fd => $FH, poll => 'w', nice => -1, parked => 1, cb => \&fh_write);
339 sync_tick; 398 $SYNC->start;
340} 399}
341 400
342sub stop { 401sub stop {
343 close $FH; 402 close $FH;
344} 403}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines