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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: TestUtils.java,v 1.88.2.2 2010/01/04 15:30:48 cwl Exp $
*/
package com.sleepycat.je.util;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FilenameFilter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.text.NumberFormat;
import java.util.Random;
import junit.framework.TestCase;
import com.sleepycat.je.CacheMode;
import com.sleepycat.je.Cursor;
import com.sleepycat.je.Database;
import com.sleepycat.je.DatabaseException;
import com.sleepycat.je.DbInternal;
import com.sleepycat.je.DbTestProxy;
import com.sleepycat.je.Environment;
import com.sleepycat.je.EnvironmentConfig;
import com.sleepycat.je.ExceptionEvent;
import com.sleepycat.je.ExceptionListener;
import com.sleepycat.je.StatsConfig;
import com.sleepycat.je.dbi.CursorImpl;
import com.sleepycat.je.dbi.EnvironmentImpl;
import com.sleepycat.je.latch.LatchSupport;
import com.sleepycat.je.log.FileManager;
import com.sleepycat.je.tree.BIN;
import com.sleepycat.je.tree.ChildReference;
import com.sleepycat.je.tree.IN;
import com.sleepycat.je.tree.SearchResult;
import com.sleepycat.je.tree.Tree;
import com.sleepycat.je.tree.WithRootLatched;
import com.sleepycat.util.test.SharedTestUtils;
public class TestUtils {
public static String DEST_DIR = SharedTestUtils.DEST_DIR;
public static String NO_SYNC = SharedTestUtils.NO_SYNC;
public static final String LOG_FILE_NAME = "00000000.jdb";
public static final StatsConfig FAST_STATS;
static {
FAST_STATS = new StatsConfig();
FAST_STATS.setFast(true);
}
private static final boolean DEBUG = true;
private static Random rnd = new Random();
public void debugMsg(String message) {
if (DEBUG) {
System.out.println
(Thread.currentThread().toString() + " " + message);
}
}
static public void setRandomSeed(int seed) {
rnd = new Random(seed);
}
static public void generateRandomAlphaBytes(byte[] bytes) {
byte[] aAndZ = "AZ".getBytes();
int range = aAndZ[1] - aAndZ[0] + 1;
for (int i = 0; i < bytes.length; i++) {
bytes[i] = (byte) (rnd.nextInt(range) + aAndZ[0]);
}
}
static public void checkLatchCount() {
TestCase.assertTrue(LatchSupport.countLatchesHeld() == 0);
}
static public void printLatchCount(String msg) {
System.out.println(msg + " : " + LatchSupport.countLatchesHeld());
}
static public void printLatches(String msg) {
System.out.println(msg + " : ");
LatchSupport.dumpLatchesHeld();
}
/**
* Generate a synthetic base 26 four byte alpha key from an int.
* The bytes of the key are between 'A' and 'Z', inclusive. 0 maps
* to 'AAAA', 1 to 'AAAB', etc.
*/
static public int alphaKey(int i) {
int ret = 0;
for (int j = 0; j < 4; j++) {
byte b = (byte) (i % 26);
ret <<= 8;
ret |= (b + 65);
i /= 26;
}
return ret;
}
/**
* Marshall an unsigned int (long) into a four byte buffer.
*/
static public void putUnsignedInt(byte[] buf, long value) {
int i = 0;
buf[i++] = (byte) (value >>> 0);
buf[i++] = (byte) (value >>> 8);
buf[i++] = (byte) (value >>> 16);
buf[i] = (byte) (value >>> 24);
}
/**
* All flavors of removeLogFiles should check if the remove has been
* disabled. (Used for debugging, so that the tester can dump the
* log file.
*/
private static boolean removeDisabled() {
String doRemove = System.getProperty("removeLogFiles");
return ((doRemove != null) && doRemove.equalsIgnoreCase("false"));
}
/**
* Remove je log files from the home directory. Will be disabled
* if the unit test is run with -DremoveLogFiles=false
* @param msg prefix to append to error messages
* @param envFile environment directory
*/
public static void removeLogFiles(String msg,
File envFile,
boolean checkRemove)
throws IOException {
removeFiles(msg, envFile, FileManager.JE_SUFFIX, checkRemove);
}
/**
* Remove files with this suffix from the je home directory
* @param msg prefix to append to error messages
* @param envFile environment directory
* @param suffix files with this suffix will be removed
*/
public static void removeFiles(String msg,
File envFile,
String suffix)
throws IOException {
removeFiles(msg, envFile, suffix, false);
}
/**
* Remove files with this suffix from the je home directory
* @param msg prefix to append to error messages
* @param envFile environment directory
* @param suffix files with this suffix will be removed
* @param checkRemove if true, check the -DremoveLogFiles system
* property before removing.
*/
public static void removeFiles(String msg,
File envFile,
String suffix,
boolean checkRemove)
throws IOException {
if (checkRemove && removeDisabled()) {
return;
}
String[] suffixes = new String[] { suffix };
String[] names = FileManager.listFiles(envFile, suffixes);
/* Clean up any target files in this directory. */
for (int i = 0; i < names.length; i++) {
File oldFile = new File(envFile, names[i]);
boolean done = oldFile.delete();
assert done :
msg + " couldn't delete " + names[i] + " out of " +
names[names.length - 1];
oldFile = null;
}
}
/**
* Remove files with the pattern indicated by the filename filter from the
* environment home directory.
* Note that BadFileFilter looks for this pattern: NNNNNNNN.bad.#
* InfoFileFilter looks for this pattern: je.info.#
* @param envFile environment directory
*/
public static void removeFiles(File envFile, FilenameFilter filter)
throws IOException {
if (removeDisabled()) {
return;
}
File[] targetFiles = envFile.listFiles(filter);
// Clean up any target files in this directory
for (int i = 0; i < targetFiles.length; i++) {
boolean done = targetFiles[i].delete();
if (!done) {
System.out.println
("Warning, couldn't delete "
+ targetFiles[i]
+ " out of "
+ targetFiles[targetFiles.length - 1]);
}
}
}
/**
* Useful utility for generating byte arrays with a known order.
* Vary the length just to introduce more variability.
* @return a byte array of length val % 100 with the value of "val"
*/
public static byte[] getTestArray(int val) {
int length = val % 10;
length = length < 4 ? 4 : length;
byte[] test = new byte[length];
test[3] = (byte) ((val >>> 0) & 0xff);
test[2] = (byte) ((val >>> 8) & 0xff);
test[1] = (byte) ((val >>> 16) & 0xff);
test[0] = (byte) ((val >>> 24) & 0xff);
return test;
}
/**
* Return the value of a test data array generated with getTestArray
* as an int
*/
public static int getTestVal(byte[] testArray) {
int val = 0;
val |= (testArray[3] & 0xff);
val |= ((testArray[2] & 0xff) << 8);
val |= ((testArray[1] & 0xff) << 16);
val |= ((testArray[0] & 0xff) << 24);
return val;
}
/**
* @return length and data of a byte array, printed as decimal numbers
*/
public static String dumpByteArray(byte[] b) {
StringBuffer sb = new StringBuffer();
sb.append("<byteArray len = ");
sb.append(b.length);
sb.append(" data = \"");
for (int i = 0; i < b.length; i++) {
sb.append(b[i]).append(",");
}
sb.append("\"/>");
return sb.toString();
}
/**
* @return a copy of the passed in byte array
*/
public static byte[] byteArrayCopy(byte[] ba) {
int len = ba.length;
byte[] ret = new byte[len];
System.arraycopy(ba, 0, ret, 0, len);
return ret;
}
/*
* Check that the stored memory count for all INs on the inlist
* matches their computed count. The environment mem usage check
* may be run with assertions or not.
*
* In a multithreaded environment (or one with daemons running),
* you can't be sure that the cached size will equal the calculated size.
*
* Nodes, txns, and locks are all counted within the memory budget.
*/
public static long validateNodeMemUsage(EnvironmentImpl envImpl,
boolean assertOnError)
throws DatabaseException {
long total = tallyNodeMemUsage(envImpl);
long nodeCacheUsage = envImpl.getMemoryBudget().getTreeMemoryUsage();
NumberFormat formatter = NumberFormat.getNumberInstance();
if (assertOnError) {
assert (total==nodeCacheUsage) :
"calculatedTotal=" + formatter.format(total) +
" envCacheUsage=" + formatter.format(nodeCacheUsage);
} else {
if (DEBUG) {
if (nodeCacheUsage != total) {
long diff = Math.abs(nodeCacheUsage - total);
if ((diff / nodeCacheUsage) > .05) {
System.out.println("calculatedTotal=" +
formatter.format(total) +
" envCacheUsage=" +
formatter.format(nodeCacheUsage));
}
}
}
}
return nodeCacheUsage;
}
public static long tallyNodeMemUsage(EnvironmentImpl envImpl)
throws DatabaseException {
long total = 0;
for (IN in : envImpl.getInMemoryINs()) {
in.latch();
try {
/*
* verifyMemorySize cannot currently be called for BINs
* containing FileSummaryLNs because the parent IN's in-memory
* size does not reflect changes to the FileSummaryLN's
* ObsoleteOffsets.
*/
if ((in.getDatabase() !=
envImpl.getUtilizationProfile().getFileSummaryDb()) ||
!(in instanceof BIN)) {
assert in.verifyMemorySize():
"in nodeId=" + in.getNodeId() +
' ' + in.getClass().getName();
}
total += in.getBudgetedMemorySize();
} finally {
in.releaseLatch();
}
}
return total;
}
/**
* Called by each unit test to enforce isolation level settings specified
* in the isolationLevel system property. Other system properties or
* default settings may be applied in the future.
*/
public static EnvironmentConfig initEnvConfig() {
EnvironmentConfig config = new EnvironmentConfig();
String val = System.getProperty("isolationLevel");
if (val != null && val.length() > 0) {
if ("serializable".equals(val)) {
config.setTxnSerializableIsolation(true);
} else if ("readCommitted".equals(val)) {
DbInternal.setTxnReadCommitted(config, true);
} else {
throw new IllegalArgumentException
("Unknown isolationLevel system property value: " + val);
}
}
return config;
}
/**
* If a unit test needs to override the isolation level, it should call
* this method after calling initEnvConfig.
*/
public static void clearIsolationLevel(EnvironmentConfig config) {
DbInternal.setTxnReadCommitted(config, false);
config.setTxnSerializableIsolation(false);
}
/**
* Loads the given resource relative to the given class, and copies it to
* log file zero in the given directory.
*/
public static void loadLog(Class<?> cls, String resourceName, File envHome)
throws IOException {
loadLog(cls, resourceName, envHome, LOG_FILE_NAME);
}
/**
* Loads the given resource relative to the given class, and copies it to
* the given log file in the given directory.
*/
public static void loadLog(Class cls,
String resourceName,
File envHome,
String logFileName)
throws IOException {
File logFile = new File(envHome, logFileName);
InputStream is = cls.getResourceAsStream(resourceName);
OutputStream os = new FileOutputStream(logFile);
byte[] buf = new byte[is.available()];
int len = is.read(buf);
if (buf.length != len) {
throw new IllegalStateException();
}
os.write(buf, 0, len);
is.close();
os.close();
}
/**
* Logs the BIN at the cursor provisionally and the parent IN
* non-provisionally. Used to simulate a partial checkpoint or eviction.
*/
public static void logBINAndIN(Environment env, Cursor cursor)
throws DatabaseException {
BIN bin = getBIN(cursor);
Tree tree = bin.getDatabase().getTree();
/* Log the BIN and update its parent entry. */
bin.latch();
SearchResult result = tree.getParentINForChildIN(bin, true,
CacheMode.DEFAULT);
assert result.parent != null;
assert result.exactParentFound;
IN binParent = result.parent;
long binLsn = logIN(env, bin, true, binParent);
binParent.updateNode(result.index, bin, binLsn, null /*lnSlotKey*/);
result.parent.releaseLatch();
/* Log the BIN parent and update its parent entry. */
binParent.latch();
result =
tree.getParentINForChildIN(binParent, true, CacheMode.DEFAULT);
IN inParent = null;
if (result.parent != null) {
result.parent.releaseLatch();
assert result.exactParentFound;
inParent = result.parent;
inParent.latch();
}
final long inLsn = logIN(env, binParent, false, null);
if (inParent != null) {
inParent.updateNode(result.index, binParent, inLsn,
null /*lnSlotKey*/);
inParent.releaseLatch();
} else {
tree.withRootLatchedExclusive(new WithRootLatched() {
public IN doWork(ChildReference root)
throws DatabaseException {
root.setLsn(inLsn);
return null;
}
});
}
}
/**
* Logs the given IN.
*/
public static long logIN(Environment env,
IN in,
boolean provisional,
IN parent)
throws DatabaseException {
EnvironmentImpl envImpl = DbInternal.envGetEnvironmentImpl(env);
in.latch();
long lsn;
if (provisional) {
lsn = in.log(envImpl.getLogManager(),
false, // allowDeltas
true, // isProvisional
false, // proactiveMigration
false, // backgroundIO
parent);// provisional parent
} else {
lsn = in.log(envImpl.getLogManager());
}
in.releaseLatch();
return lsn;
}
/**
* Returns the parent IN of the given IN.
*/
public static IN getIN(IN in)
throws DatabaseException {
Tree tree = in.getDatabase().getTree();
in.latch();
SearchResult result =
tree.getParentINForChildIN(in, true, CacheMode.DEFAULT);
assert result.parent != null;
result.parent.releaseLatch();
assert result.exactParentFound;
return result.parent;
}
/**
* Returns the target BIN for the given cursor.
*/
public static BIN getBIN(Cursor cursor)
throws DatabaseException {
CursorImpl impl = DbTestProxy.dbcGetCursorImpl(cursor);
BIN bin = impl.getDupBIN();
if (bin == null) {
bin = impl.getBIN();
assert bin != null;
}
return bin;
}
/**
* Assert if the tree is not this deep. Use to ensure that data setups
* are as expected.
*/
public static boolean checkTreeDepth(Database db, int desiredDepth)
throws DatabaseException {
Tree tree = DbInternal.dbGetDatabaseImpl(db).getTree();
IN rootIN = tree.getRootIN(CacheMode.UNCHANGED);
int level = 0;
if (rootIN != null) {
level = rootIN.getLevel() & IN.LEVEL_MASK;
rootIN.releaseLatch();
}
return (desiredDepth == level);
}
/**
* @return true if long running tests are enabled.
*/
static public boolean runLongTests() {
return SharedTestUtils.runLongTests();
}
/**
* Skip over the JE version number at the start of the exception
* message for tests which are looking for a specific message.
*/
public static String skipVersion(Exception e) {
int versionHeaderLen = DatabaseException.getVersionHeader().length();
return (e.getMessage().substring(versionHeaderLen));
}
/**
* Dump any exception messages to stderr.
*/
public static class StdErrExceptionListener
implements ExceptionListener {
public void exceptionThrown(ExceptionEvent event) {
System.err.println(Thread.currentThread() +
" received " +
event);
}
}
}
|