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
|
/*
* 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
package org.eclipse.persistence.logging;
import java.io.Serializable;
import java.util.Date;
import org.eclipse.persistence.internal.databaseaccess.Accessor;
import org.eclipse.persistence.internal.sessions.AbstractSession;
/**
* SessionLogEntry is a simple container object that holds
* all the information pertinent to an EclipseLink logging event.
* It has a date/time stamp indicating when the event took
* place. It holds the session, thread, and accessor
* responsible for the event. And it holds whatever message
* was passed through to be logged.
*
* @see SessionLog
* @see DefaultSessionLog
*
* @author Big Country
* @since TOPLink/Java 3.0
*/
public class SessionLogEntry implements Serializable {
protected Date date;
protected transient AbstractSession session;
protected transient Thread thread;
protected transient Accessor connection;
protected String message;
protected Throwable throwable;
protected int level;
protected String nameSpace;
protected Object[] parameters;
protected boolean shouldTranslate;
protected String sourceClassName;
protected String sourceMethodName;
/**
* Create a new session log entry for a session.
*
* @param session the session
*/
public SessionLogEntry(AbstractSession session) {
this.date = new Date();
this.thread = Thread.currentThread();
this.session = session;
this.message = "";
this.level = SessionLog.INFO;
}
/**
* Create a new session log entry for a session and a throwable.
*
* @param session the session
* @param throwable the throwable
*/
public SessionLogEntry(AbstractSession session, Throwable throwable) {
this(session);
this.throwable = throwable;
this.level = SessionLog.SEVERE;
}
/**
* Create a new session log entry for a session and a message.
*
* @param session the session
* @param message the message
*/
public SessionLogEntry(AbstractSession session, String message) {
this(session);
this.message = message;
}
/**
* Create a new session log entry for a session, a message and an accessor.
*
* @param session the session
* @param message the message
* @param connection the accessor
*/
public SessionLogEntry(AbstractSession session, String message, Accessor connection) {
this(session, message);
this.connection = connection;
}
/**
* Create a new session log entry for a request level, a session, a message,
* parameters and an accessor. <br>
* Possible values for log level are listed in SessionLog.
*
* @param level the log level
* @param session the session
* @param message the message
* @param params array of parameters
* @param connection the accessor
* @param shouldTranslate true if the entry should be translated
*
* @see SessionLog
*/
public SessionLogEntry(int level, AbstractSession session, String message, Object[] params, Accessor connection, boolean shouldTranslate) {
this(session, message, connection);
this.level = level;
this.parameters = params;
this.shouldTranslate = shouldTranslate;
}
/**
* Create a new session log entry for a request level, a category, a session,
* a message, parameters and an accessor. <br>
* Possible values for log level and category are listed in SessionLog.
*
* @param level the log level
* @param category the category
* @param session the session
* @param message the message
* @param params array of parameters
* @param connection the accessor
* @param shouldTranslate true if the entry should be translated
*
* @see SessionLog
*/
public SessionLogEntry(int level, String category, AbstractSession session, String message, Object[] params, Accessor connection, boolean shouldTranslate) {
this(level, session, message, params, connection, shouldTranslate);
this.nameSpace = category;
}
/**
* Create a new session log entry for a session, a level, a category and an
* exception. <br>
* Possible values for log level and category are listed in SessionLog.
*
* @param session the session
* @param level the log level
* @param category the category
* @param throwable the exception
*
* @see SessionLog
*/
public SessionLogEntry(AbstractSession session, int level, String category, Throwable throwable) {
this(session, throwable);
this.level = level;
this.nameSpace = category;
}
/**
* Return the connection that generated the log entry.
*
* @return the connection accessor
*/
public Accessor getConnection() {
return connection;
}
/**
* Return the date of the log entry.
*
* @return the date
*/
public Date getDate() {
return date;
}
/**
* Return the exception that caused the log entry.
*
* @return the exception
*/
public Throwable getException() {
return throwable;
}
/**
* Return the log entry's message.
*
* @return the message
*/
public String getMessage() {
return message;
}
/**
* Return the session that generated the log entry.
*
* @return the session
*/
public AbstractSession getSession() {
return session;
}
/**
* Return the thread that was active when the log entry was generated.
*
* @return the thread
*/
public Thread getThread() {
return thread;
}
/**
* Return the request level of the log entry. <br>
* Possible values for log level are listed in SessionLog.
*
* @return the request level of the log entry
* @see SessionLog
*/
public int getLevel() {
return level;
}
/**
* Return the name space of the log entry. <br>
* Possible values for log category (a String) are listed in SessionLog.
*
* @return the name space of the log entry
* @see SessionLog
*/
public String getNameSpace() {
return nameSpace;
}
/**
* @return the array of parameters to the message.
*/
public Object[] getParameters() {
return parameters;
}
/**
* @return the source class name to the message
*/
public String getSourceClassName() {
return sourceClassName;
}
/**
* @return the source method name to the message
*/
public String getSourceMethodName() {
return sourceMethodName;
}
/**
* @return if the message should be translated.
*/
public boolean shouldTranslate() {
return shouldTranslate;
}
/**
* @return if the log entry was for an exception.
*/
public boolean hasException() {
return getException() != null;
}
/**
* @return if the log entry has a message
*/
public boolean hasMessage() {
return getMessage() != null && !(getMessage().length() == 0);
}
/**
* Set the connection that generated the log entry.
*
* @param connection the connection
*/
public void setConnection(Accessor connection) {
this.connection = connection;
}
/**
* Set the date of the log entry.
*
* @param date the date
*/
public void setDate(Date date) {
this.date = date;
}
/**
* Set the exception that caused the log entry.
*
* @param throwable the exception
*/
public void setException(Throwable throwable) {
this.throwable = throwable;
}
/**
* Set the entry's message.
*
* @param message the message
*/
public void setMessage(String message) {
this.message = message;
}
/**
* Set the session that generated the log entry.
*
* @param session the session
*/
public void setSession(AbstractSession session) {
this.session = session;
}
/**
* Set the thread that was active when the log entry was generated.
*
* @param thread the thread
*/
public void setThread(Thread thread) {
this.thread = thread;
}
/**
* Set the request level of the log entry. <br>
* Possible values for log level are listed in SessionLog.
*
* @param level the log level
*
* @see SessionLog
*/
public void setLevel(int level) {
this.level = level;
}
/**
* Set the name space of the log entry. <br>
* Possible values for log category (a String) are listed in SessionLog.
*
* @param nameSpace the log category
*
* @see SessionLog
*/
public void setNameSpace(String nameSpace) {
this.nameSpace = nameSpace;
}
/**
* Set the array of parameters to the message.
*
* @param params array of parameters
*/
public void setParameters(Object[] params) {
this.parameters = params;
}
/**
* Set if the message should be translated.
*
* @param shouldTranslate true if the message should be translated, false otherwise
*/
public void setShouldTranslate(boolean shouldTranslate) {
this.shouldTranslate = shouldTranslate;
}
/**
* Set the source class name to the message.
*
* @param sourceClassName source class name
*/
public void setSourceClassName(String sourceClassName) {
this.sourceClassName = sourceClassName;
}
/**
* Set the source method name to the message.
*
* @param sourceMethodName source method name
*/
public void setSourceMethodName(String sourceMethodName) {
this.sourceMethodName = sourceMethodName;
}
@Override
public String toString() {
return org.eclipse.persistence.internal.helper.Helper.getShortClassName(getClass()) + "(" + getMessage() + ")";
}
}
|