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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2001-2002
* Sleepycat Software. All rights reserved.
*
* $Id: DbDispatcher.java,v 1.1.1.1 2003/11/20 22:13:49 toshok Exp $
*/
package com.sleepycat.db.rpcserver;
import com.sleepycat.db.*;
import java.io.IOException;
import org.acplt.oncrpc.OncRpcException;
/**
* Dispatcher for RPC messages for the Java RPC server.
* These are hooks that translate between RPC msg/reply structures and
* DB calls, which keeps the real implementation code in Rpc* classes cleaner.
*/
public abstract class DbDispatcher extends DbServerStub
{
abstract int addEnv(RpcDbEnv rdbenv);
abstract int addDb(RpcDb rdb);
abstract int addTxn(RpcDbTxn rtxn);
abstract int addCursor(RpcDbc rdbc);
abstract void delEnv(RpcDbEnv rdbenv);
abstract void delDb(RpcDb rdb);
abstract void delTxn(RpcDbTxn rtxn);
abstract void delCursor(RpcDbc rdbc);
abstract RpcDbEnv getEnv(int envid);
abstract RpcDb getDb(int dbid);
abstract RpcDbTxn getTxn(int txnbid);
abstract RpcDbc getCursor(int dbcid);
public DbDispatcher() throws IOException, OncRpcException
{
super();
}
//// Db methods
public __db_associate_reply __DB_db_associate_4001(__db_associate_msg args)
{
__db_associate_reply reply = new __db_associate_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.associate(this, args, reply);
return reply;
}
public __db_bt_maxkey_reply __DB_db_bt_maxkey_4001(__db_bt_maxkey_msg args)
{
__db_bt_maxkey_reply reply = new __db_bt_maxkey_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_bt_maxkey(this, args, reply);
return reply;
}
public __db_bt_minkey_reply __DB_db_bt_minkey_4001(__db_bt_minkey_msg args)
{
__db_bt_minkey_reply reply = new __db_bt_minkey_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_bt_minkey(this, args, reply);
return reply;
}
public __db_close_reply __DB_db_close_4001(__db_close_msg args)
{
__db_close_reply reply = new __db_close_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.close(this, args, reply);
return reply;
}
public __db_create_reply __DB_db_create_4001(__db_create_msg args)
{
__db_create_reply reply = new __db_create_reply();
RpcDb rdb = new RpcDb(getEnv(args.dbenvcl_id));
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.create(this, args, reply);
return reply;
}
public __db_cursor_reply __DB_db_cursor_4001(__db_cursor_msg args)
{
__db_cursor_reply reply = new __db_cursor_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.cursor(this, args, reply);
return reply;
}
public __db_del_reply __DB_db_del_4001(__db_del_msg args)
{
__db_del_reply reply = new __db_del_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.del(this, args, reply);
return reply;
}
public __db_encrypt_reply __DB_db_encrypt_4001(__db_encrypt_msg args)
{
__db_encrypt_reply reply = new __db_encrypt_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_encrypt(this, args, reply);
return reply;
}
public __db_extentsize_reply __DB_db_extentsize_4001(__db_extentsize_msg args)
{
__db_extentsize_reply reply = new __db_extentsize_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_q_extentsize(this, args, reply);
return reply;
}
public __db_flags_reply __DB_db_flags_4001(__db_flags_msg args)
{
__db_flags_reply reply = new __db_flags_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_flags(this, args, reply);
return reply;
}
public __db_get_reply __DB_db_get_4001(__db_get_msg args)
{
__db_get_reply reply = new __db_get_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.get(this, args, reply);
return reply;
}
public __db_h_ffactor_reply __DB_db_h_ffactor_4001(__db_h_ffactor_msg args)
{
__db_h_ffactor_reply reply = new __db_h_ffactor_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_h_ffactor(this, args, reply);
return reply;
}
public __db_h_nelem_reply __DB_db_h_nelem_4001(__db_h_nelem_msg args)
{
__db_h_nelem_reply reply = new __db_h_nelem_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_h_nelem(this, args, reply);
return reply;
}
public __db_join_reply __DB_db_join_4001(__db_join_msg args)
{
__db_join_reply reply = new __db_join_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.join(this, args, reply);
return reply;
}
public __db_key_range_reply __DB_db_key_range_4001(__db_key_range_msg args)
{
__db_key_range_reply reply = new __db_key_range_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.key_range(this, args, reply);
return reply;
}
public __db_lorder_reply __DB_db_lorder_4001(__db_lorder_msg args)
{
__db_lorder_reply reply = new __db_lorder_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_lorder(this, args, reply);
return reply;
}
public __db_open_reply __DB_db_open_4001(__db_open_msg args)
{
__db_open_reply reply = new __db_open_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.open(this, args, reply);
return reply;
}
public __db_pagesize_reply __DB_db_pagesize_4001(__db_pagesize_msg args)
{
__db_pagesize_reply reply = new __db_pagesize_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_pagesize(this, args, reply);
return reply;
}
public __db_pget_reply __DB_db_pget_4001(__db_pget_msg args)
{
__db_pget_reply reply = new __db_pget_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.pget(this, args, reply);
return reply;
}
public __db_put_reply __DB_db_put_4001(__db_put_msg args)
{
__db_put_reply reply = new __db_put_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.put(this, args, reply);
return reply;
}
public __db_remove_reply __DB_db_remove_4001(__db_remove_msg args)
{
__db_remove_reply reply = new __db_remove_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.remove(this, args, reply);
return reply;
}
public __db_rename_reply __DB_db_rename_4001(__db_rename_msg args)
{
__db_rename_reply reply = new __db_rename_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.rename(this, args, reply);
return reply;
}
public __db_re_delim_reply __DB_db_re_delim_4001(__db_re_delim_msg args)
{
__db_re_delim_reply reply = new __db_re_delim_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_re_delim(this, args, reply);
return reply;
}
public __db_re_len_reply __DB_db_re_len_4001(__db_re_len_msg args)
{
__db_re_len_reply reply = new __db_re_len_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_re_len(this, args, reply);
return reply;
}
public __db_re_pad_reply __DB_db_re_pad_4001(__db_re_pad_msg args)
{
__db_re_pad_reply reply = new __db_re_pad_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.set_re_pad(this, args, reply);
return reply;
}
public __db_stat_reply __DB_db_stat_4001(__db_stat_msg args)
{
__db_stat_reply reply = new __db_stat_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.stat(this, args, reply);
return reply;
}
public __db_sync_reply __DB_db_sync_4001(__db_sync_msg args)
{
__db_sync_reply reply = new __db_sync_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.sync(this, args, reply);
return reply;
}
public __db_truncate_reply __DB_db_truncate_4001(__db_truncate_msg args)
{
__db_truncate_reply reply = new __db_truncate_reply();
RpcDb rdb = getDb(args.dbpcl_id);
if (rdb == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdb.truncate(this, args, reply);
return reply;
}
//// Cursor methods
public __dbc_close_reply __DB_dbc_close_4001(__dbc_close_msg args)
{
__dbc_close_reply reply = new __dbc_close_reply();
RpcDbc rdbc = getCursor(args.dbccl_id);
if (rdbc == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbc.close(this, args, reply);
return reply;
}
public __dbc_count_reply __DB_dbc_count_4001(__dbc_count_msg args)
{
__dbc_count_reply reply = new __dbc_count_reply();
RpcDbc rdbc = getCursor(args.dbccl_id);
if (rdbc == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbc.count(this, args, reply);
return reply;
}
public __dbc_del_reply __DB_dbc_del_4001(__dbc_del_msg args)
{
__dbc_del_reply reply = new __dbc_del_reply();
RpcDbc rdbc = getCursor(args.dbccl_id);
if (rdbc == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbc.del(this, args, reply);
return reply;
}
public __dbc_dup_reply __DB_dbc_dup_4001(__dbc_dup_msg args)
{
__dbc_dup_reply reply = new __dbc_dup_reply();
RpcDbc rdbc = getCursor(args.dbccl_id);
if (rdbc == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbc.dup(this, args, reply);
return reply;
}
public __dbc_get_reply __DB_dbc_get_4001(__dbc_get_msg args)
{
__dbc_get_reply reply = new __dbc_get_reply();
RpcDbc rdbc = getCursor(args.dbccl_id);
if (rdbc == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbc.get(this, args, reply);
return reply;
}
public __dbc_pget_reply __DB_dbc_pget_4001(__dbc_pget_msg args) {
__dbc_pget_reply reply = new __dbc_pget_reply();
RpcDbc rdbc = getCursor(args.dbccl_id);
if (rdbc == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbc.pget(this, args, reply);
return reply;
}
public __dbc_put_reply __DB_dbc_put_4001(__dbc_put_msg args) {
__dbc_put_reply reply = new __dbc_put_reply();
RpcDbc rdbc = getCursor(args.dbccl_id);
if (rdbc == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbc.put(this, args, reply);
return reply;
}
//// Environment methods
public __env_cachesize_reply __DB_env_cachesize_4001(__env_cachesize_msg args)
{
__env_cachesize_reply reply = new __env_cachesize_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.set_cachesize(this, args, reply);
return reply;
}
public __env_close_reply __DB_env_close_4001(__env_close_msg args)
{
__env_close_reply reply = new __env_close_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.close(this, args, reply);
return reply;
}
public __env_create_reply __DB_env_create_4001(__env_create_msg args)
{
__env_create_reply reply = new __env_create_reply();
RpcDbEnv rdbenv = new RpcDbEnv();
rdbenv.create(this, args, reply);
return reply;
}
public __env_dbremove_reply __DB_env_dbremove_4001(__env_dbremove_msg args)
{
__env_dbremove_reply reply = new __env_dbremove_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.dbremove(this, args, reply);
return reply;
}
public __env_dbrename_reply __DB_env_dbrename_4001(__env_dbrename_msg args)
{
__env_dbrename_reply reply = new __env_dbrename_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.dbrename(this, args, reply);
return reply;
}
public __env_encrypt_reply __DB_env_encrypt_4001(__env_encrypt_msg args)
{
__env_encrypt_reply reply = new __env_encrypt_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.set_encrypt(this, args, reply);
return reply;
}
public __env_flags_reply __DB_env_flags_4001(__env_flags_msg args)
{
__env_flags_reply reply = new __env_flags_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.set_flags(this, args, reply);
return reply;
}
public __env_open_reply __DB_env_open_4001(__env_open_msg args)
{
__env_open_reply reply = new __env_open_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.open(this, args, reply);
return reply;
}
public __env_remove_reply __DB_env_remove_4001(__env_remove_msg args)
{
__env_remove_reply reply = new __env_remove_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.remove(this, args, reply);
return reply;
}
//// Transaction methods
public __txn_abort_reply __DB_txn_abort_4001(__txn_abort_msg args)
{
__txn_abort_reply reply = new __txn_abort_reply();
RpcDbTxn rdbtxn = getTxn(args.txnpcl_id);
if (rdbtxn == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbtxn.abort(this, args, reply);
return reply;
}
public __txn_begin_reply __DB_txn_begin_4001(__txn_begin_msg args)
{
__txn_begin_reply reply = new __txn_begin_reply();
RpcDbTxn rdbtxn = new RpcDbTxn(getEnv(args.dbenvcl_id), null);
rdbtxn.begin(this, args, reply);
return reply;
}
public __txn_commit_reply __DB_txn_commit_4001(__txn_commit_msg args)
{
__txn_commit_reply reply = new __txn_commit_reply();
RpcDbTxn rdbtxn = getTxn(args.txnpcl_id);
if (rdbtxn == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbtxn.commit(this, args, reply);
return reply;
}
public __txn_discard_reply __DB_txn_discard_4001(__txn_discard_msg args)
{
__txn_discard_reply reply = new __txn_discard_reply();
RpcDbTxn rdbtxn = getTxn(args.txnpcl_id);
if (rdbtxn == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbtxn.discard(this, args, reply);
return reply;
}
public __txn_prepare_reply __DB_txn_prepare_4001(__txn_prepare_msg args)
{
__txn_prepare_reply reply = new __txn_prepare_reply();
RpcDbTxn rdbtxn = getTxn(args.txnpcl_id);
if (rdbtxn == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbtxn.prepare(this, args, reply);
return reply;
}
public __txn_recover_reply __DB_txn_recover_4001(__txn_recover_msg args)
{
__txn_recover_reply reply = new __txn_recover_reply();
RpcDbEnv rdbenv = getEnv(args.dbenvcl_id);
if (rdbenv == null)
reply.status = Db.DB_NOSERVER_ID;
else
rdbenv.txn_recover(this, args, reply);
return reply;
}
}
|