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 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
|
/*
* Copyright (c) 1998, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
// @author mobrien
// @since EclipseLink 1.0 enh# 235168
package org.eclipse.persistence.services;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;
import java.util.Vector;
import java.util.regex.PatternSyntaxException;
import javax.management.openmbean.CompositeData;
import javax.management.openmbean.CompositeDataSupport;
import javax.management.openmbean.CompositeType;
import javax.management.openmbean.OpenDataException;
import javax.management.openmbean.OpenType;
import javax.management.openmbean.SimpleType;
import javax.management.openmbean.TabularData;
import javax.management.openmbean.TabularDataSupport;
import javax.management.openmbean.TabularType;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor;
import org.eclipse.persistence.internal.databaseaccess.DatabasePlatform;
import org.eclipse.persistence.internal.databaseaccess.DatasourcePlatform;
import org.eclipse.persistence.internal.helper.ClassConstants;
import org.eclipse.persistence.internal.helper.Helper;
import org.eclipse.persistence.internal.identitymaps.CacheIdentityMap;
import org.eclipse.persistence.internal.identitymaps.CacheKey;
import org.eclipse.persistence.internal.identitymaps.FullIdentityMap;
import org.eclipse.persistence.internal.identitymaps.HardCacheWeakIdentityMap;
import org.eclipse.persistence.internal.identitymaps.IdentityMap;
import org.eclipse.persistence.internal.identitymaps.NoIdentityMap;
import org.eclipse.persistence.internal.identitymaps.SoftCacheWeakIdentityMap;
import org.eclipse.persistence.internal.identitymaps.SoftIdentityMap;
import org.eclipse.persistence.internal.identitymaps.WeakIdentityMap;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.internal.sessions.DatabaseSessionImpl;
import org.eclipse.persistence.logging.AbstractSessionLog;
import org.eclipse.persistence.logging.DefaultSessionLog;
import org.eclipse.persistence.logging.JavaLog;
import org.eclipse.persistence.logging.SessionLog;
import org.eclipse.persistence.platform.server.JMXEnabledPlatform;
import org.eclipse.persistence.sessions.DatabaseLogin;
import org.eclipse.persistence.sessions.DefaultConnector;
import org.eclipse.persistence.sessions.Session;
import org.eclipse.persistence.sessions.server.ConnectionPool;
import org.eclipse.persistence.sessions.server.ServerSession;
import org.eclipse.persistence.tools.profiler.PerformanceProfiler;
/**
* <p>
* <b>Purpose</b>: Provide a dynamic interface into the EclipseLink Session.
* <p>
* <b>Description</b>: This class is meant to provide a framework for gaining access to configuration
* of the EclipseLink Session during runtime. It will provide the basis for development
* of a JMX service and possibly other frameworks.
*
*/
public abstract class RuntimeServices {
/** stores access to the session object that we are controlling */
protected Session session;
/** This is the profile weight at server startup time. This is read-only */
private int deployedSessionProfileWeight;
/** This contains the session log from server startup time. This is read-only. */
private SessionLog deployedSessionLog;
public String objectName;
protected static final String EclipseLink_Product_Name = "EclipseLink";
/** Short name for the server platform - Must override in subclass */
protected static String PLATFORM_NAME = "Server";
/**
* Default Constructor
*/
public RuntimeServices() {
}
/**
* Constructor
* @param session the session to be used with these RuntimeServices
*/
public RuntimeServices(Session session) {
this.session = session;
}
/**
* INTERNAL:
*/
protected AbstractSession getSession() {
return (AbstractSession)this.session;
}
/**
* Answer the name of the EclipseLink session this MBean represents.
*/
public String getSessionName() {
return getSession().getName();
}
/**
* This method is used to determine if logging is turned on
*/
public boolean getShouldLogMessages() {
return getSession().shouldLogMessages();
}
/**
* This method is used to turn on Performance Profiling
*/
public void setShouldProfilePerformance(boolean shouldProfile) {
if (shouldProfile && (getSession().getProfiler() == null)) {
getSession().setProfiler(new PerformanceProfiler());
} else if (!shouldProfile) {
getSession().setProfiler(null);
}
}
/**
* This method will return if profiling is turned on or not
*/
public boolean getShouldProfilePerformance() {
return (getSession().getProfiler() != null) && ClassConstants.PerformanceProfiler_Class.isAssignableFrom(getSession().getProfiler().getClass());
}
/**
* This method is used to turn on Profile logging when using the Performance Profiler
*/
public void setShouldLogPerformanceProfiler(boolean shouldLogPerformanceProfiler) {
if ((getSession().getProfiler() != null) && ClassConstants.PerformanceProfiler_Class.isAssignableFrom(getSession().getProfiler().getClass())) {
((PerformanceProfiler)getSession().getProfiler()).setShouldLogProfile(shouldLogPerformanceProfiler);
}
}
/**
* Method indicates if Performance profile should be logged
*/
public boolean getShouldLogPerformanceProfiler() {
if ((getSession().getProfiler() != null) && ClassConstants.PerformanceProfiler_Class.isAssignableFrom(getSession().getProfiler().getClass())) {
return ((PerformanceProfiler)getSession().getProfiler()).shouldLogProfile();
}
return false;
}
/**
* Method used to set if statements should be cached. Please note that Statements can not be cached when
* using an external connection pool
*/
public void setShouldCacheAllStatements(boolean shouldCacheAllStatements) {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return;
}
((DatabaseLogin)getSession().getDatasourceLogin()).setShouldCacheAllStatements(shouldCacheAllStatements);
}
/**
* Used to set the statement cache size. This is only valid if using cached Statements
*/
public void setStatementCacheSize(int size) {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return;
}
((DatabaseLogin)getSession().getDatasourceLogin()).setStatementCacheSize(size);
}
/**
* Returns the statement cache size. Only valid if statements are being cached
*/
public int getStatementCacheSize() {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return 0;
}
return ((DatabaseLogin)getSession().getDatasourceLogin()).getStatementCacheSize();
}
/**
* This method provide access for setting the sequence pre-allocation size
*/
public void setSequencePreallocationSize(int size) {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return;
}
((DatasourcePlatform)getSession().getDatasourcePlatform()).setSequencePreallocationSize(size);
}
/**
* Method returns the value of the Sequence Preallocation size
*/
public int getSequencePreallocationSize() {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return 0;
}
return ((DatasourcePlatform)getSession().getDatasourcePlatform()).getSequencePreallocationSize();
}
/**
* This method allows the client to set the pool size for a particular pool, based on the pool name
* @param poolName the name of the pool to be updated.
* @param maxSize the new maximum number of connections
* @param minSize the new minimum number of connections
*/
public void updatePoolSize(String poolName, int maxSize, int minSize) {
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
ConnectionPool connectionPool = ((ServerSession)getSession()).getConnectionPool(poolName);
if (connectionPool != null) {
connectionPool.setMaxNumberOfConnections(maxSize);
connectionPool.setMinNumberOfConnections(minSize);
}
}
}
/**
* This method will return the available Connection pools within this Server Session
* @return java.util.List the available pools.
*/
public List getAvailableConnectionPools() {
Vector list = null;
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
Map pools = ((ServerSession)getSession()).getConnectionPools();
list = new Vector(pools.size());
Iterator poolNames = pools.keySet().iterator();
while (poolNames.hasNext()) {
list.add(poolNames.next());
}
} else {
list = new Vector();
}
return list;
}
/**
* This method will retrieve the size of a particular connection pool
* @param poolName the name of the pool to get the size for
* @return java.util.List a list containing two values. The first value is the Maximun size of the pool.
* The second value is the Minimum size of the pool.
*/
public List getSizeForPool(String poolName) {
Vector results = new Vector(2);
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
ConnectionPool connectionPool = ((ServerSession)getSession()).getConnectionPool(poolName);
if (connectionPool != null) {
results.add(Integer.valueOf(connectionPool.getMaxNumberOfConnections()));
results.add(Integer.valueOf(connectionPool.getMinNumberOfConnections()));
}
}
return results;
}
/**
* This method provides client with access to add a new connection pool to a EclipseLink
* ServerSession.
* @param poolName the name of the new pool
* @param maxSize the maximum number of connections in the pool
* @param minSize the minimum number of connections in the pool
* @param platform the fully qualified name of the EclipseLink platform to use with this pool.
* @param driverClassName the fully qualified name of the JDBC driver class
* @param url the URL of the database to connect to
* @param userName the user name to connect to the database with
* @param password the password to connect to the database with
* @exception ClassNotFoundException if any of the class names are misspelled.
*/
public void addNewConnectionPool(String poolName, int maxSize, int minSize, String platform, String driverClassName, String url, String userName, String password) throws ClassNotFoundException {
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
DatabaseLogin login = new DatabaseLogin();
login.setPlatformClassName(platform);
login.setDriverClassName(driverClassName);
login.setConnectionString(url);
login.setUserName(userName);
login.setEncryptedPassword(password);
((ServerSession)getSession()).addConnectionPool(poolName, login, minSize, maxSize);
}
}
/**
* This method is used to reset connections from the session to the database. Please
* Note that this will not work with a SessionBroker at this time
*/
public void resetAllConnections() {
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
Iterator enumtr = ((ServerSession)getSession()).getConnectionPools().values().iterator();
while (enumtr.hasNext()) {
ConnectionPool pool = (ConnectionPool)enumtr.next();
pool.shutDown();
pool.startUp();
}
} else if (ClassConstants.PublicInterfaceDatabaseSession_Class.isAssignableFrom(getSession().getClass())) {
getSession().getAccessor().reestablishConnection(getSession());
}
}
/**
* This method is used to return those Class Names that have identity Maps in the Session.
* Please note that SubClasses and aggregates will be missing form this list as they do not have
* separate identity maps.
* @return java.util.List contains all of the classes which have identity maps in the current session.
*/
public List getClassesInSession() {
return getSession().getIdentityMapAccessorInstance().getIdentityMapManager().getClassesRegistered();
}
/**
* This method will return a collection of the objects in the Identity Map.
* There is no particular order to these objects.
* @param className the fully qualified classname of the class to the instances of
* @exception ClassNotFoundException thrown then the IdentityMap for that class name could not be found
*/
public List getObjectsInIdentityMap(String className) throws ClassNotFoundException {
Class classToChange = (Class)getSession().getDatasourcePlatform().getConversionManager().convertObject(className, ClassConstants.CLASS);
IdentityMap map = getSession().getIdentityMapAccessorInstance().getIdentityMap(classToChange);
Vector results = new Vector(map.getSize());
Enumeration objects = map.keys();
while (objects.hasMoreElements()) {
results.add(((CacheKey)objects.nextElement()).getObject());
}
return results;
}
/**
* This method is used to return the number of objects in a particular Identity Map
* @param className the fully qualified name of the class to get number of instances of.
* @exception ClassNotFoundException thrown then the IdentityMap for that class name could not be found
*/
public Integer getNumberOfObjectsInIdentityMap(String className) throws ClassNotFoundException {
Class classToChange = (Class)getSession().getDatasourcePlatform().getConversionManager().convertObject(className, ClassConstants.CLASS);
return Integer.valueOf(getSession().getIdentityMapAccessorInstance().getIdentityMap(classToChange).getSize());
}
/**
* This method is used to return a Map of the objects in a particular Identity Map's
* subcache. Only works for those identity Maps with a sub cache (ie Hard Cache Weak Identity Map)
* This method replaces getObjectsInIdentityMapSubCache(className) which returns a list instead
* of a Map
* @param className the fully qualified name of the class to get number of instances of.
* @exception ClassNotFoundException thrown then the IdentityMap for that class name could not be found
*/
public List getObjectsInIdentityMapSubCacheAsMap(String className) throws ClassNotFoundException {
Class classToChange = (Class)getSession().getDatasourcePlatform().getConversionManager().convertObject(className, ClassConstants.CLASS);
IdentityMap map = getSession().getIdentityMapAccessorInstance().getIdentityMap(classToChange);
//CR3855
List subCache = new ArrayList(0);
if (ClassConstants.HardCacheWeakIdentityMap_Class.isAssignableFrom(map.getClass())) {
subCache = ((HardCacheWeakIdentityMap)map).getReferenceCache();
}
return subCache;
}
/**
* This method is used to return the number of objects in a particular Identity Map's
* subcache. Only works for those identity Maps with a sub cache (ie Hard Cache Weak Identity Map)
* @param className the fully qualified name of the class to get number of instances of.
* @exception ClassNotFoundException thrown then the IdentityMap for that class name could not be found
*/
public Integer getNumberOfObjectsInIdentityMapSubCache(String className) throws ClassNotFoundException {
//This needs to use the Session's active class loader (not implemented yet)
Integer result = Integer.valueOf(0);
Class classToChange = (Class)getSession().getDatasourcePlatform().getConversionManager().convertObject(className, ClassConstants.CLASS);
IdentityMap map = getSession().getIdentityMapAccessorInstance().getIdentityMap(classToChange);
if (map.getClass().isAssignableFrom(ClassConstants.HardCacheWeakIdentityMap_Class)) {
List subCache = ((HardCacheWeakIdentityMap)map).getReferenceCache();
result = Integer.valueOf(subCache.size());
}
return result;
}
/**
* <p>
* Return the log level
* </p><p>
*
* @return the log level
* </p><p>
* @param category the string representation of an EclipseLink category, e.g. "sql", "transaction" ...
* </p>
*/
public int getLogLevel(String category) {
return getSession().getLogLevel(category);
}
/**
* <p>
* Set the log level
* </p><p>
*
* @param level the new log level
* </p>
*/
public void setLogLevel(int level) {
getSession().setLogLevel(level);
}
/**
* <p>
* Check if a message of the given level would actually be logged.
* </p><p>
*
* @return true if the given message level will be logged
* </p><p>
* @param Level the log request level
* @param category the string representation of an EclipseLink category
* </p>
*/
public boolean shouldLog(int Level, String category) {
return getSession().shouldLog(Level, category);
}
/**
* Return the DMS sensor weight
* @return
*/
public int getProfileWeight() {
if (getSession().isInProfile()) {
return getSession().getProfiler().getProfileWeight();
} else {
return 0;
}
}
/**
* This method is used to change DMS sensor weight.
*/
public void setProfileWeight(int weight) {
if (getSession().isInProfile()) {
getSession().getProfiler().setProfileWeight(weight);
}
}
/**
* This method is used to initialize the identity maps specified by className.
* @param className the fully qualified classnames identifying the identity map to initialize
*/
public synchronized void initializeIdentityMap(String className) throws ClassNotFoundException {
Class registeredClass;
//get identity map, and initialize
registeredClass = (Class)getSession().getDatasourcePlatform().getConversionManager()
.convertObject(className, ClassConstants.CLASS);
getSession().getIdentityMapAccessor().initializeIdentityMap(registeredClass);
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_identity_map_initialized", className);
}
/**
* This method will log the instance level locks in all Identity Maps in the session.
*/
public void printIdentityMapLocks() {
getSession().getIdentityMapAccessorInstance().getIdentityMapManager().printLocks();
}
/**
* This method will log the instance level locks in the Identity Map for the given class in the session.
*/
public void printIdentityMapLocks(String registeredClassName) {
Class registeredClass = (Class)getSession().getDatasourcePlatform().getConversionManager()
.convertObject(registeredClassName, ClassConstants.CLASS);
getSession().getIdentityMapAccessorInstance().getIdentityMapManager().printLocks(registeredClass);
}
/**
* This method assumes EclipseLink Profiling (as opposed to Java profiling).
* This will log at the INFO level a summary of all elements in the profile.
*/
public void printProfileSummary() {
if (!this.getUsesEclipseLinkProfiling().booleanValue()) {
return;
}
PerformanceProfiler performanceProfiler = (PerformanceProfiler)getSession().getProfiler();
getSession().getSessionLog().info(performanceProfiler.buildProfileSummary().toString());
}
/**
* INTERNAL:
* utility method to get rid of leading and trailing {}'s
*/
private String trimProfileString(String originalProfileString) {
String trimmedString;
if (originalProfileString.length() > 1) {
trimmedString = originalProfileString.substring(0, originalProfileString.length());
if ((trimmedString.charAt(0) == '{') && (trimmedString.charAt(trimmedString.length() - 1) == '}')) {
trimmedString = trimmedString.substring(1, trimmedString.length() - 1);
}
return trimmedString;
} else {
return originalProfileString;
}
}
/**
* This method assumes EclipseLink Profiling (as opposed to Java profiling).
* This will log at the INFO level a summary of all elements in the profile, categorized
* by Class.
*/
public void printProfileSummaryByClass() {
if (!this.getUsesEclipseLinkProfiling().booleanValue()) {
return;
}
PerformanceProfiler performanceProfiler = (PerformanceProfiler)getSession().getProfiler();
//trim the { and } from the beginning at end, because they cause problems for the logger
getSession().getSessionLog().info(trimProfileString(performanceProfiler.buildProfileSummaryByClass().toString()));
}
/**
* This method assumes EclipseLink Profiling (as opposed to Java profiling).
* This will log at the INFO level a summary of all elements in the profile, categorized
* by Query.
*/
public void printProfileSummaryByQuery() {
if (!this.getUsesEclipseLinkProfiling().booleanValue()) {
return;
}
PerformanceProfiler performanceProfiler = (PerformanceProfiler)getSession().getProfiler();
getSession().getSessionLog().info(trimProfileString(performanceProfiler.buildProfileSummaryByQuery().toString()));
}
/**
* This method is used to get the type of profiling.
* Possible values are: "EclipseLink" or "None".
*/
public synchronized String getProfilingType() {
if (getUsesEclipseLinkProfiling().booleanValue()) {
return EclipseLink_Product_Name;
} else {
return "None";
}
}
/**
* This method is used to select the type of profiling.
* Valid values are: "EclipseLink" or "None". These values are not case sensitive.
* null is considered to be "None".
*/
public synchronized void setProfilingType(String profileType) {
if ((profileType == null) || (profileType.compareToIgnoreCase("None") == 0)) {
this.setUseNoProfiling();
} else if (profileType.compareToIgnoreCase(EclipseLink_Product_Name) == 0) {
this.setUseEclipseLinkProfiling();
}
}
/**
* This method is used to turn on EclipseLink Performance Profiling
*/
public void setUseEclipseLinkProfiling() {
if (getUsesEclipseLinkProfiling().booleanValue()) {
return;
}
getSession().setProfiler(new PerformanceProfiler());
}
/**
* This method is used to turn off all Performance Profiling, DMS or EclipseLink.
*/
public void setUseNoProfiling() {
getSession().setProfiler(null);
}
/**
* This method answers true if EclipseLink Performance Profiling is on.
*/
public Boolean getUsesEclipseLinkProfiling() {
return Boolean.valueOf(getSession().getProfiler() instanceof PerformanceProfiler);
}
/**
* PUBLIC: Answer the EclipseLink log level at deployment time. This is read-only.
*/
public String getDeployedEclipseLinkLogLevel() {
return getNameForLogLevel(getDeployedSessionLog().getLevel());
}
/**
* PUBLIC: Answer the EclipseLink log level that is changeable.
* This does not affect the log level in the project (i.e. The next
* time the application is deployed, changes are forgotten)
*/
public String getCurrentEclipseLinkLogLevel() {
return getNameForLogLevel(this.getSession().getSessionLog().getLevel());
}
/**
* PUBLIC: Set the EclipseLink log level to be used at runtime.
*
* This does not affect the log level in the project (i.e. The next
* time the application is deployed, changes are forgotten)
*
* @param newLevel new log level
*/
public synchronized void setCurrentEclipseLinkLogLevel(String newLevel) {
this.getSession().setLogLevel(this.getLogLevelForName(newLevel));
}
/**
* INTERNAL: Answer the name for the log level given.
*
* @return String (one of OFF, SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL)
*/
private String getNameForLogLevel(int logLevel) {
switch (logLevel) {
case SessionLog.ALL:
return SessionLog.ALL_LABEL;
case SessionLog.SEVERE:
return SessionLog.SEVERE_LABEL;
case SessionLog.WARNING:
return SessionLog.WARNING_LABEL;
case SessionLog.INFO:
return SessionLog.INFO_LABEL;
case SessionLog.CONFIG:
return SessionLog.CONFIG_LABEL;
case SessionLog.FINE:
return SessionLog.FINE_LABEL;
case SessionLog.FINER:
return SessionLog.FINER_LABEL;
case SessionLog.FINEST:
return SessionLog.FINEST_LABEL;
case SessionLog.OFF:
return SessionLog.OFF_LABEL;
default:
return "N/A";
}
}
/**
* INTERNAL: Answer the log level for the given name.
*
* @return int for OFF, SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL
*/
private int getLogLevelForName(String levelName) {
if (levelName.equals(SessionLog.ALL_LABEL)) {
return SessionLog.ALL;
}
if (levelName.equals(SessionLog.SEVERE_LABEL)) {
return SessionLog.SEVERE;
}
if (levelName.equals(SessionLog.WARNING_LABEL)) {
return SessionLog.WARNING;
}
if (levelName.equals(SessionLog.INFO_LABEL)) {
return SessionLog.INFO;
}
if (levelName.equals(SessionLog.CONFIG_LABEL)) {
return SessionLog.CONFIG;
}
if (levelName.equals(SessionLog.FINE_LABEL)) {
return SessionLog.FINE;
}
if (levelName.equals(SessionLog.FINER_LABEL)) {
return SessionLog.FINER;
}
if (levelName.equals(SessionLog.FINEST_LABEL)) {
return SessionLog.FINEST;
}
return SessionLog.OFF;
}
/**
* INTERNAL:
* Define the deployment time data associated with logging and profiling
*
*/
protected void updateDeploymentTimeData() {
this.deployedSessionLog = (SessionLog)((AbstractSessionLog)session.getSessionLog()).clone();
if (session.getProfiler() == null) {
this.deployedSessionProfileWeight = -1;//there is no profiler
} else {
this.deployedSessionProfileWeight = session.getProfiler().getProfileWeight();
}
}
public int getDeployedSessionProfileWeight() {
return deployedSessionProfileWeight;
}
public SessionLog getDeployedSessionLog() {
return deployedSessionLog;
}
public String getObjectName() {
return objectName;
}
/**
* Return whether this session is an EclipseLink JPA session.
* The absence of this function or a value of false will signify that the session
* belongs to a provider other than EclipseLink.
* @return
*/
public boolean isJPASession() {
return true;
}
/**
* Answer the type of the EclipseLink session this MBean represents.
* Types include: "ServerSession", "DatabaseSession", "SessionBroker"
*/
public String getSessionType() {
return Helper.getShortClassName(getSession().getClass());
}
/**
* Provide an instance of 2 Dimensional Array simulating tabular format information about all
* classes in the session whose class names match the provided filter.
*
* The 2 Dimensional array contains each item with values being row object array. Each row object array
* represents EclipseLink class details info with respect to below attributes:
* ["Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size"]
*
*/
public Object[][] getClassSummaryDetailsUsingFilter(String filter){
try{
return tabularDataTo2DArray(buildClassSummaryDetailsUsingFilter(filter),new String[] {
"Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size" });
} catch (Exception exception) {
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, exception);
}
return null;
}
/**
* PUBLIC: Provide an instance of 2 Dimensional Array simulating tabular format information about all
* classes in the session.
*
* The 2 Dimensional array contains each item with values being row object array. Each row object array
* represents EclipseLink class details info with respect to below attributes:
* ["Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size"]
*
*/
public Object[][] getClassSummaryDetails() {
try{
return tabularDataTo2DArray(buildClassSummaryDetails(),new String[] {
"Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size" });
} catch (Exception exception){
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, exception);
}
return null;
}
/**
* INTERNAL:
* Answer the fully qualified names of the classes mapped in the session.
* This uses the mappedClass from the CMPPolicy.
*
* @return java.util.Vector
*/
private Vector getMappedClassNames() {
Map alreadyAdded = new HashMap();
Vector mappedClassNames = new Vector();
String mappedClassName = null;
Iterator descriptorsIterator = getSession().getProject().getDescriptors()
.values().iterator();
while (descriptorsIterator.hasNext()) {
ClassDescriptor nextDescriptor = (ClassDescriptor) descriptorsIterator.next();
// differentiate between a generated class and not, by comparing the descriptor's Java class
if (nextDescriptor.getCMPPolicy() != null) {
if (nextDescriptor.getCMPPolicy().getMappedClass() != null) {
mappedClassName = nextDescriptor.getCMPPolicy().getMappedClass().getName();
}
}
if (mappedClassName == null) {
mappedClassName = nextDescriptor.getJavaClassName();
}
if (alreadyAdded.get(mappedClassName) == null) {
alreadyAdded.put(mappedClassName, Boolean.TRUE);
mappedClassNames.addElement(mappedClassName);
}
mappedClassName = null;
}
return mappedClassNames;
}
/**
* INTERNAL:
* This method traverses the EclipseLink descriptors and returns a Vector of the descriptor's
* reference class names that match the provided filter. The filter is a comma separated
* list of strings to match against.
*
* @param filter A comma separated list of strings to match against.
* @return A Vector of class names that match the filter.
*/
public Vector getMappedClassNamesUsingFilter(String filter) {
//Output Vector
Vector outputVector = new Vector();
//Input mapped class names
Vector mappedClassNames = getMappedClassNames();
//Input filter values
ArrayList filters = new ArrayList();
StringTokenizer lineTokens = new StringTokenizer(filter, ",");
while (lineTokens.hasMoreTokens()) {
filters.add(lineTokens.nextToken());
}
for (int i = 0; i < mappedClassNames.size(); i++) {
String className = (String)mappedClassNames.get(i);
String classNameLowerCase = ((String)mappedClassNames.get(i)).toLowerCase();
for (int j = 0; j < filters.size(); j++) {
String filterValue = (Helper.rightTrimString((String)filters.get(j)).trim()).toLowerCase();
if (filterValue.indexOf('*') == 0) {
filterValue = filterValue.substring(1);
}
try {
//Note: String.matches(String regex) since jdk1.4
if (classNameLowerCase.matches(new StringBuilder().append("^.*").append(filterValue).append(".*$").toString())) {
if (!outputVector.contains(className)) {
outputVector.add(className);
}
}
} catch (PatternSyntaxException exception) {
//regular expression syntax error
AbstractSessionLog.getLog().log(SessionLog.FINEST, "pattern_syntax_error", exception);
}
}
}
Collections.sort(outputVector);
return outputVector;
}
/**
* INTERNAL:
* getCacheTypeFor: Give a more UI-friendly version of the cache type
*/
protected String getCacheTypeFor(Class identityMapClass) {
if (identityMapClass == CacheIdentityMap.class) {
return "Cache";
} else if (identityMapClass == FullIdentityMap.class) {
return "Full";
} else if (identityMapClass == HardCacheWeakIdentityMap.class) {
return "HardWeak";
} else if (identityMapClass == NoIdentityMap.class) {
return "None";
} else if (identityMapClass == SoftCacheWeakIdentityMap.class) {
return "SoftWeak";
} else if (identityMapClass == WeakIdentityMap.class) {
return "Weak";
} else if (identityMapClass == SoftIdentityMap.class) {
return "Soft";
}
return "N/A";
}
/**
* getModuleName(): Answer the name of the context-root of the application that this session is associated with.
* Answer "unknown" if there is no module name available.
* Default behavior is to return "unknown" - we override this behavior here for WebLogic.
*/
public String getModuleName() {
return ((DatabaseSessionImpl)getSession())
.getServerPlatform().getModuleName();
}
/**
* getApplicationName(): Answer the name of the module (EAR name) that this session is associated with.
* Answer "unknown" if there is no application name available.
* Default behavior is to return "unknown" - we override this behavior here for all platform implementors of JMXEnabledPlatform
*/
public String getApplicationName() {
return ((JMXEnabledPlatform)((DatabaseSessionImpl)getSession())
.getServerPlatform()).getApplicationName();
}
/**
* Method returns if all Parameters should be bound or not
*/
public Boolean getShouldBindAllParameters() {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return Boolean.FALSE;
}
return Boolean.valueOf(((DatabaseLogin)getSession().getDatasourceLogin()).shouldBindAllParameters());
}
/**
* Return the size of strings after which will be bound into the statement
* If we are not using a DatabaseLogin, or we're not using string binding,
* answer 0 (zero).
*/
public Integer getStringBindingSize() {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return Integer.valueOf(0);
}
if (!((DatabaseLogin)getSession().getDatasourceLogin()).getPlatform().usesStringBinding()) {
return Integer.valueOf(0);
}
return Integer.valueOf(((DatabaseLogin)getSession().getDatasourceLogin()).getStringBindingSize());
}
/**
* This method will return if batchWriting is in use or not.
*/
public Boolean getUsesBatchWriting() {
return Boolean.valueOf(getSession().getDatasourceLogin().getPlatform().usesBatchWriting());
}
/**
* This method will return a long indicating the exact time in Milliseconds that the
* session connected to the database.
*/
public Long getTimeConnectionEstablished() {
return Long.valueOf(((DatabaseSessionImpl)getSession()).getConnectedTime());
}
/**
* This method will return if batchWriting is in use or not.
*/
public Boolean getUsesJDBCBatchWriting() {
if (!(getSession().getDatasourceLogin().getDatasourcePlatform() instanceof DatabasePlatform)) {
return Boolean.FALSE;
}
return Boolean.valueOf(getSession().getDatasourceLogin().getPlatform().usesJDBCBatchWriting());
}
/**
* Shows if Byte Array Binding is turned on or not
*/
public Boolean getUsesByteArrayBinding() {
if (!(getSession().getDatasourceLogin().getDatasourcePlatform() instanceof DatabasePlatform)) {
return Boolean.FALSE;
}
return Boolean.valueOf(getSession().getDatasourceLogin().getPlatform().usesByteArrayBinding());
}
/**
* Shows if native SQL is being used
*/
public Boolean getUsesNativeSQL() {
if (!(getSession().getDatasourceLogin().getDatasourcePlatform() instanceof DatabasePlatform)) {
return Boolean.FALSE;
}
return Boolean.valueOf(getSession().getDatasourceLogin().getPlatform().usesNativeSQL());
}
/**
* This method indicates if streams are being used for binding
*/
public Boolean getUsesStreamsForBinding() {
if (!(getSession().getDatasourceLogin().getDatasourcePlatform() instanceof DatabasePlatform)) {
return Boolean.FALSE;
}
return Boolean.valueOf(getSession().getDatasourceLogin().getPlatform().usesStreamsForBinding());
}
/**
* This method indicates if Strings are being bound
*/
public Boolean getUsesStringBinding() {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return Boolean.FALSE;
}
return Boolean.valueOf(((DatabaseLogin)getSession().getDatasourceLogin()).getPlatform().usesStringBinding());
}
/**
* Returns if statements should be cached or not
*/
public boolean getShouldCacheAllStatements() {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return Boolean.FALSE;
}
return Boolean.valueOf(((DatabaseLogin)getSession().getDatasourceLogin()).shouldCacheAllStatements());
}
/**
* Used to clear the statement cache. Only valid if statements are being cached
*/
public synchronized void clearStatementCache() {
if (!(getSession().getDatasourceLogin() instanceof DatabaseLogin)) {
return;
}
((DatabaseAccessor)getSession().getAccessor()).clearStatementCache(getSession());
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_statement_cache_cleared");
}
/**
* This method will print the available Connection pools to the SessionLog.
*/
public void printAvailableConnectionPools() {
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
Map pools = ((ServerSession)getSession()).getConnectionPools();
Iterator poolNames = pools.keySet().iterator();
while (poolNames.hasNext()) {
String poolName = poolNames.next().toString();
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_pool_name", poolName);
}
} else {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_no_connection_pools_available");
}
}
/**
* This method will retrieve the max size of a particular connection pool
* @param poolName the name of the pool to get the max size for
* @return Integer for the max size of the pool. Return -1 if pool doesn't exist.
*/
public Integer getMaxSizeForPool(String poolName) {
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
ConnectionPool connectionPool = ((ServerSession)getSession()).getConnectionPool(poolName);
if (connectionPool != null) {
return Integer.valueOf(connectionPool.getMaxNumberOfConnections());
}
}
return Integer.valueOf(-1);
}
/**
* This method will retrieve the min size of a particular connection pool
* @param poolName the name of the pool to get the min size for
* @return Integer for the min size of the pool. Return -1 if pool doesn't exist.
*/
public Integer getMinSizeForPool(String poolName) {
if (ClassConstants.ServerSession_Class.isAssignableFrom(getSession().getClass())) {
ConnectionPool connectionPool = ((ServerSession)getSession()).getConnectionPool(poolName);
if (connectionPool != null) {
return Integer.valueOf(connectionPool.getMinNumberOfConnections());
}
}
return Integer.valueOf(-1);
}
/**
* This method is used to output those Class Names that have identity Maps in the Session.
* Please note that SubClasses and aggregates will be missing from this list as they do not have
* separate identity maps.
*/
public void printClassesInSession() {
Vector classes = getSession().getIdentityMapAccessorInstance().getIdentityMapManager().getClassesRegistered();
int index;
if (classes.isEmpty()) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_no_classes_in_session");
return;
}
for (index = 0; index < classes.size(); index++) {
getSession().getSessionLog().log(SessionLog.FINEST, (String)classes.elementAt(index));
}
}
/**
* This method will log the objects in the Identity Map.
* There is no particular order to these objects.
* @param className the fully qualified classname identifying the identity map
* @exception ClassNotFoundException thrown then the IdentityMap for that class name could not be found
*/
public void printObjectsInIdentityMap(String className) throws ClassNotFoundException {
Class classWithMap = (Class)getSession().getDatasourcePlatform().getConversionManager().convertObject(className, ClassConstants.CLASS);
IdentityMap map = getSession().getIdentityMapAccessorInstance().getIdentityMap(classWithMap);
//check if the identity map exists
if (null == map) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_identity_map_non_existent", className);
return;
}
//check if there are any objects in the identity map. Print if so.
Enumeration objects = map.keys();
if (!objects.hasMoreElements()) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_identity_map_empty", className);
}
CacheKey cacheKey;
while (objects.hasMoreElements()) {
cacheKey = (CacheKey)objects.nextElement();
if(null != cacheKey && null != cacheKey.getKey() && null != cacheKey.getObject()) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_print_cache_key_value",
cacheKey.getKey().toString(), cacheKey.getObject().toString());
}
}
}
/**
* This method will log the types of Identity Maps in the session.
*/
public void printAllIdentityMapTypes() {
Vector classesRegistered = getSession().getIdentityMapAccessorInstance().getIdentityMapManager().getClassesRegistered();
String registeredClassName;
Class registeredClass;
//Check if there aren't any classes registered
if (classesRegistered.size() == 0) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_no_identity_maps_in_session");
return;
}
//get each identity map, and log the type
for (int index = 0; index < classesRegistered.size(); index++) {
registeredClassName = (String)classesRegistered.elementAt(index);
registeredClass = (Class)getSession().getDatasourcePlatform().getConversionManager().convertObject(registeredClassName, ClassConstants.CLASS);
IdentityMap map = getSession().getIdentityMapAccessorInstance().getIdentityMap(registeredClass);
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_identity_map_class",
registeredClassName, map.getClass());
}
}
/**
* This method will log all objects in all Identity Maps in the session.
*/
public void printObjectsInIdentityMaps() {
Vector classesRegistered = getSession().getIdentityMapAccessorInstance().getIdentityMapManager().getClassesRegistered();
String registeredClassName;
//Check if there aren't any classes registered
if (classesRegistered.size() == 0) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_no_identity_maps_in_session");
return;
}
//get each identity map, and log the type
for (int index = 0; index < classesRegistered.size(); index++) {
registeredClassName = (String)classesRegistered.elementAt(index);
try {
this.printObjectsInIdentityMap(registeredClassName);
} catch (ClassNotFoundException classNotFound) {
//we are enumerating registered classes, so this shouldn't happen. Print anyway
classNotFound.printStackTrace();
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, classNotFound);
}
}
}
/**
* This method will SUM and return the number of objects in all Identity Maps in the session.
*/
public Integer getNumberOfObjectsInAllIdentityMaps() {
Vector classesRegistered = getSession().getIdentityMapAccessorInstance().getIdentityMapManager().getClassesRegistered();
String registeredClassName;
int sum = 0;
//Check if there aren't any classes registered
if (classesRegistered.size() == 0) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_no_identity_maps_in_session");
return Integer.valueOf(0);
}
//get each identity map, and log the size
for (int index = 0; index < classesRegistered.size(); index++) {
registeredClassName = (String)classesRegistered.elementAt(index);
try {
sum += this.getNumberOfObjectsInIdentityMap(registeredClassName).intValue();
} catch (ClassNotFoundException classNotFound) {
//we are enumerating registered classes, so this shouldn't happen. Print anyway
classNotFound.printStackTrace();
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, classNotFound);
}
}
return Integer.valueOf(sum);
}
/**
* This method will answer the number of persistent classes contained in the session.
* This does not include aggregates.
*/
public Integer getNumberOfPersistentClasses() {
Map classesTable = new HashMap();
ClassDescriptor currentDescriptor;
//use a table to eliminate duplicate classes. Ignore Aggregates
Iterator descriptors = getSession().getProject().getDescriptors().values().iterator();
while (descriptors.hasNext()) {
currentDescriptor = (ClassDescriptor)descriptors.next();
if (!currentDescriptor.isAggregateDescriptor()) {
classesTable.put(currentDescriptor.getJavaClassName(), Boolean.TRUE);
}
}
return Integer.valueOf(classesTable.size());
}
/**
* Return the log type, either "EclipseLink", "Java" or the simple name of the logging class used.
*
* @return the log type
*/
public String getLogType() {
if (this.getSession().getSessionLog().getClass() == JavaLog.class) {
return "Java";
} else if (this.getSession().getSessionLog().getClass() == DefaultSessionLog.class) {
return EclipseLink_Product_Name;
} else {
return this.getSession().getSessionLog().getClass().getSimpleName();
}
}
/**
* Return the database platform used by the DatabaseSession.
*
* @return String databasePlatform
*/
public String getDatabasePlatform() {
return getSession().getDatasourcePlatform().getClass().getName();
}
/**
* Return JDBCConnection detail information. This includes URL and datasource information.
*/
public synchronized String getJdbcConnectionDetails() {
return getSession().getLogin().getConnector().getConnectionDetails();
}
/**
* Return connection pool type. Values include: "Internal", "External" and "N/A".
*/
public synchronized String getConnectionPoolType() {
if (getSession().getLogin().shouldUseExternalConnectionPooling()) {
return "External";
} else {
return "N/A";
}
}
/**
* Return db driver class name. This only applies to DefaultConnector. Return "N/A" otherwise.
*/
public synchronized String getDriver() {
if (getSession().getLogin().getConnector() instanceof DefaultConnector) {
return getSession().getLogin().getDriverClassName();
}
return "N/A";
}
/**
* Return the log filename. This returns the fully qualified path of the log file when
* EclipseLink DefaultSessionLog instance is used. Null is returned otherwise.
*
* @return String logFilename
*/
public String getLogFilename() {
// returns String or null.
if ( session.getSessionLog() instanceof DefaultSessionLog) {
return ((DefaultSessionLog)session.getSessionLog()).getWriterFilename();
} else {
return null;
}
}
/**
* This method is used to initialize the identity maps in the session.
*/
public synchronized void initializeAllIdentityMaps() {
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
}
/**
* This method is used to initialize the identity maps specified by the Vector of classNames.
*
* @param classNames String[] of fully qualified classnames identifying the identity maps to initialize
*/
public synchronized void initializeIdentityMaps(String[] classNames) throws ClassNotFoundException {
for (int index = 0; index < classNames.length; index++) {
initializeIdentityMap(classNames[index]);
}
}
/**
* This method is used to invalidate the identity maps in the session.
*/
public synchronized void invalidateAllIdentityMaps() {
Vector classesRegistered = getSession().getIdentityMapAccessorInstance().getIdentityMapManager().getClassesRegistered();
String registeredClassName;
Class registeredClass;
if (classesRegistered.isEmpty()) {
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_no_identity_maps_in_session");
}
//get each identity map, and invalidate
for (int index = 0; index < classesRegistered.size(); index++) {
registeredClassName = (String)classesRegistered.elementAt(index);
registeredClass = (Class)getSession().getDatasourcePlatform().getConversionManager()
.convertObject(registeredClassName, ClassConstants.CLASS);
getSession().getIdentityMapAccessor().invalidateClass(registeredClass);
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_identity_map_invalidated", registeredClassName);
}
}
/**
* This method is used to invalidate the identity maps specified by the String[] of classNames.
*
* @param classNamesParam String[] of fully qualified classnames identifying the identity maps to invalidate
* @param recurse Boolean indicating if we want to invalidate the children identity maps too
*/
public synchronized void invalidateIdentityMaps(String[] classNamesParam, Boolean recurse) throws ClassNotFoundException {
String[] classNames = classNamesParam;
for (int index = 0; index < classNames.length; index++) {
invalidateIdentityMap(classNames[index], recurse);
}
}
/**
* This method is used to invalidate the identity maps specified by className. This does not
* invalidate the children identity maps
*
* @param className the fully qualified classname identifying the identity map to invalidate
*/
public synchronized void invalidateIdentityMap(String className) throws ClassNotFoundException {
this.invalidateIdentityMap(className, Boolean.FALSE);
}
/**
* This method is used to invalidate the identity maps specified by className.
*
* @param className the fully qualified classname identifying the identity map to invalidate
* @param recurse Boolean indicating if we want to invalidate the children identity maps too
*/
public synchronized void invalidateIdentityMap(String className, Boolean recurse) throws ClassNotFoundException {
Class registeredClass;
//get identity map, and invalidate
registeredClass = (Class)getSession().getDatasourcePlatform().getConversionManager()
.convertObject(className, ClassConstants.CLASS);
getSession().getIdentityMapAccessor().invalidateClass(registeredClass);
((AbstractSession)session).log(SessionLog.INFO, SessionLog.SERVER, "jmx_mbean_runtime_services_identity_map_invalidated", className);
}
/**
*
* INTERNAL:
* Convert the TabularData to a two-dimensional array
* @param tdata the TabularData to be converted
* @param names the order of the columns
* @return a two-dimensional array
* @throws Exception
*/
private Object[][] tabularDataTo2DArray(TabularData tdata, String[] names) throws Exception {
if(tdata==null){
return null;
}
Object[] rows = tdata.values().toArray();
Object[][] data = new Object[rows.length][];
for (int i = 0; i < rows.length; i++) {
CompositeData cdata = ((CompositeData) rows[i]);
Object[] returnRow = new Object[names.length];
for (int j = 0; j < names.length; j++) {
String name = names[j];
Object value = cdata.get(name);
returnRow[j] = name + " : " + String.valueOf(value);
}
data[i] = returnRow;
}
return data;
}
/**
* INTERNAL:
* Define the session that this instance is providing runtime services for
*
* @param newSession The session to be used with these RuntimeServices
*/
protected void setSession(AbstractSession newSession) {
this.session = newSession;
this.updateDeploymentTimeData();
}
/**
* INTERNAL:
* Answer the CompositeType describing the CompositeData that we return for
* each IdentityMap (or subclass).
*
* This is mostly for the client side to see what kind of information is returned.
* @return javax.management.openmbean.CompositeType
*/
private CompositeType buildCompositeTypeForClassSummaryDetails() throws OpenDataException {
return new CompositeType("Class Details", "Details of class for Class Summary", new String[] {
"Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size" }, new String[] {
"Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size" }, new OpenType[] {
SimpleType.STRING, SimpleType.STRING, SimpleType.STRING, SimpleType.STRING, SimpleType.STRING });
}
/**
* Provide a list of instance of ClassSummaryDetail containing information about the
* classes in the session whose class names match the provided filter.
*
* ClassSummaryDetail is a model specific class that can be used internally by the Portable JMX Framework to
* convert class attribute to JMX required open type, it has:-
* 1. model specific type that needs to be converted : ["Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size"]
* 2. convert methods.
*
* @param filter A comma separated list of strings to match against.
* @return A ArrayList of instance of ClassSummaryDetail containing class information for the class names that match the filter.
*/
/**
* Provide a list of instance of ClassSummaryDetail containing information about the
* classes in the session whose class names match the provided filter.
*
* ClassSummaryDetail is a model specific class that can be used internally by the Portable JMX Framework to
* convert class attribute to JMX required open type, it has:-
* 1. model specific type that needs to be converted : ["Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size"]
* 2. convert methods.
*
* @param filter A comma separated list of strings to match against.
* @return A ArrayList of instance of ClassSummaryDetail containing class information for the class names that match the filter.
*/
public List <ClassSummaryDetailBase> getClassSummaryDetailsUsingFilterArray(String filter) {
// if the filter is null, return all the details
if (filter == null) {
return getClassSummaryDetailsArray();
}
try {
Vector mappedClassNames = getMappedClassNamesUsingFilter(filter);
String mappedClassName;
List classSummaryDetails = new ArrayList<ClassSummaryDetailBase>();
// Check if there aren't any classes mapped
if (mappedClassNames.size() == 0) {
return null;
}
// get details for each class, and add the details to the summary
for (int index = 0; index < mappedClassNames.size(); index++) {
mappedClassName = (String)mappedClassNames.elementAt(index);
classSummaryDetails.add(buildLowlevelDetailsFor(mappedClassName));
}
return classSummaryDetails;
} catch (Exception openTypeException) {
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, openTypeException);
openTypeException.printStackTrace();
}
// wait to get requirements from EM
return null;
}
/**
* Provide a list of instance of ClassSummaryDetail containing information about all
* classes in the session.
*
* ClassSummaryDetail is a model specific class that can be used internally by the Portable JMX Framework to
* convert class attribute to JMX required open type, it has:-
* 1. model specific type that needs to be converted : ["Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size"]
* 2. convert methods.
*
* @return A List of instance of ClassSummaryDetail objects containing class information for the class names that match the filter.
*/
public List <ClassSummaryDetailBase> getClassSummaryDetailsArray() {
try {
Vector mappedClassNames = getMappedClassNames();
List classSummaryDetails = new ArrayList<ClassSummaryDetailBase>();
// Check if there aren't any classes mapped
if (mappedClassNames.size() == 0) {
return null;
}
// get details for each class, and add the details to the summary
for (int index = 0; index < mappedClassNames.size(); index++) {
String mappedClassName = (String)mappedClassNames.elementAt(index);
classSummaryDetails.add(buildLowlevelDetailsFor(mappedClassName));
}
return classSummaryDetails;
} catch (Exception openTypeException) {
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, openTypeException);
openTypeException.printStackTrace();
}
// wait to get requirements from EM
return null;
}
/**
* INTERNAL:
* Answer the TabularType describing the TabularData that we return from
* getCacheSummaryDetails() and getCacheSummaryDetails(String filter)
*
* This is mostly for the client side to see what kind of information is returned.
*
* @return javax.management.openmbean.TabularType
*/
private TabularType buildTabularTypeForClassSummaryDetails() throws OpenDataException {
return new TabularType(getSessionName(), "Session description", buildCompositeTypeForClassSummaryDetails(),
new String[] { "Class Name" });
}
/**
* INTERNAL:
* Answer the CompositeData containing the cache details for the given mappedClassName
* This uses a CompositeDataSupport, which implements CompositeData
*
* @param mappedClassName fullyQualified class name of the class
* @param detailsType describes the format of the returned CompositeData
* @return javax.management.openmbean.CompositeData
*/
private CompositeData buildDetailsFor(String mappedClassName, CompositeType detailsType) throws Exception {
return new CompositeDataSupport(detailsType, buildLowlevelDetailsFor(mappedClassName));
}
/**
* INTERNAL:
* Helper to build a HashMap to help in the construction of a CompositeData
*
* @param mappedClassName fullyQualified class name of the class
* @return HashMap
*/
private HashMap buildLowlevelDetailsFor(String mappedClassName) {
Class mappedClass = (Class)getSession().getDatasourcePlatform().getConversionManager().convertObject(mappedClassName, ClassConstants.CLASS);
ClassDescriptor descriptor = getSession().getProject().getDescriptor(mappedClass);
String cacheType = "";
String configuredSize = "";
String currentSize = "";
String parentClassName = "";
// Aggregate descriptors do not have an IdentityMap
if (!descriptor.isAggregateDescriptor()) {
IdentityMap identityMap = getSession().getIdentityMapAccessorInstance().getIdentityMap(descriptor);
cacheType = getCacheTypeFor(identityMap.getClass());
configuredSize = String.valueOf(identityMap.getMaxSize());
//show the current size, including subclasses
currentSize = String.valueOf(identityMap.getSize(mappedClass, true));
}
//If I have a parent class name, get it. Otherwise, leave blank
if (descriptor.hasInheritance()) {
if (descriptor.getInheritancePolicy().getParentDescriptor() != null) {
parentClassName = descriptor.getInheritancePolicy().getParentClassName();
}
}
boolean isChildDescriptor = descriptor.isChildDescriptor();
HashMap details = new HashMap(5);
details.put("Class Name", mappedClassName);
details.put("Cache Type", (isChildDescriptor ? "" : cacheType));
details.put("Configured Size", (isChildDescriptor ? "" : configuredSize));
details.put("Current Size", currentSize);
details.put("Parent Class Name", parentClassName);
return details;
}
/**
* INTERNAL:
* Provide an instance of TabularData containing information about the
* classes in the session whose class names match the provided filter.
*
* The TabularData contains rowData with values being CompositeData(s)
*
* CompositeData has:
* CompositeType: column names are ["Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size"]
*
* Each CompositeData can have get(myColumnName) sent to it.
*
*
* @param filter A comma separated list of strings to match against.
* @return A TabularData of information for the class names that match the filter.
*/
private TabularData buildClassSummaryDetailsUsingFilter(String filter) {
// if the filter is null, return all the details
if (filter == null) {
return buildClassSummaryDetails();
}
try {
Vector mappedClassNames = getMappedClassNamesUsingFilter(filter);
String mappedClassName;
TabularDataSupport rowData = new TabularDataSupport(buildTabularTypeForClassSummaryDetails());
// Check if there aren't any classes mapped
if (mappedClassNames.size() == 0) {
return null;
}
// get details for each class, and add the details to the summary
for (int index = 0; index < mappedClassNames.size(); index++) {
mappedClassName = (String)mappedClassNames.elementAt(index);
String[] key = new String[] { mappedClassName };
rowData.put(key, buildDetailsFor(mappedClassName, rowData.getTabularType().getRowType()));
}
return rowData;
} catch (Exception exception) {
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, exception);
}
// wait to get requirements from EM
return null;
}
/**
* INTERNAL:
* Provide an instance of TabularData containing information about all
* classes in the session.
*
* The TabularData contains rowData with values being CompositeData(s)
*
* CompositeData has:
* CompositeType: column names are ["Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size"]
*
* Each CompositeData can have get(myColumnName) sent to it.
*
*/
private TabularData buildClassSummaryDetails() {
try {
Vector mappedClassNames = getMappedClassNames();
String mappedClassName;
TabularDataSupport rowData = new TabularDataSupport(buildTabularTypeForClassSummaryDetails());
// Check if there aren't any classes mapped
if (mappedClassNames.size() == 0) {
return null;
}
// get details for each class, and add the details to the summary
for (int index = 0; index < mappedClassNames.size(); index++) {
mappedClassName = (String)mappedClassNames.elementAt(index);
String[] key = new String[] { mappedClassName };
rowData.put(key, buildDetailsFor(mappedClassName, rowData.getTabularType().getRowType()));
}
return rowData;
} catch (Exception exception) {
AbstractSessionLog.getLog().log(SessionLog.SEVERE, "jmx_enabled_platform_mbean_runtime_exception", PLATFORM_NAME, exception);
}
// wait to get requirements from EM
return null;
}
}
|