IDEMPIERE-5256 Add Cache to MSession Refactor (#1283)
This commit is contained in:
parent
e9ab40a18f
commit
8d5f7768e4
|
@ -53,26 +53,27 @@ public class MSession extends X_AD_Session implements ImmutablePOSupport
|
||||||
* @param ctx context
|
* @param ctx context
|
||||||
* @param createNew create if not found
|
* @param createNew create if not found
|
||||||
* @return session session
|
* @return session session
|
||||||
* @deprecated get (Properties ctx, boolean createNew, boolean isCache) for caching support
|
* @deprecated use Get and Create functions.
|
||||||
*/
|
*/
|
||||||
public static MSession get (Properties ctx, boolean createNew)
|
public static MSession get (Properties ctx, boolean createNew)
|
||||||
{
|
{
|
||||||
return get(ctx, createNew, false);
|
MSession session = get(ctx);
|
||||||
|
if(session == null && createNew)
|
||||||
|
return MSession.create(ctx);
|
||||||
|
return session;
|
||||||
} // get
|
} // get
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get existing or create local session
|
* Get existing local session
|
||||||
* @param ctx context
|
* @param ctx context
|
||||||
* @param createNew create if not found
|
|
||||||
* @param isImmutable return Immutable Session Object (from Cache)
|
|
||||||
* @return session session
|
* @return session session
|
||||||
*/
|
*/
|
||||||
public static MSession get (Properties ctx, boolean createNew, boolean isImmutable)
|
public static MSession get (Properties ctx)
|
||||||
{
|
{
|
||||||
int AD_Session_ID = Env.getContextAsInt(ctx, Env.AD_SESSION_ID);
|
int AD_Session_ID = Env.getContextAsInt(ctx, Env.AD_SESSION_ID);
|
||||||
MSession session = isImmutable ? s_sessions.get(ctx, AD_Session_ID, e -> new MSession(ctx, e)) : new MSession(ctx, AD_Session_ID, null);
|
MSession session = s_sessions.get(ctx, AD_Session_ID, e -> new MSession(ctx, e));
|
||||||
// Try to load
|
// Try to load
|
||||||
if (isImmutable && session == null && AD_Session_ID > 0)
|
if (session == null && AD_Session_ID > 0)
|
||||||
{
|
{
|
||||||
session = new MSession(ctx, AD_Session_ID, null);
|
session = new MSession(ctx, AD_Session_ID, null);
|
||||||
if (session.get_ID () == AD_Session_ID)
|
if (session.get_ID () == AD_Session_ID)
|
||||||
|
@ -83,17 +84,22 @@ public class MSession extends X_AD_Session implements ImmutablePOSupport
|
||||||
session = null;
|
session = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Create New
|
return session;
|
||||||
if (session == null && createNew)
|
} // get
|
||||||
{
|
|
||||||
session = new MSession (ctx, (String)null); // local session
|
/**
|
||||||
session.saveEx();
|
* Get existing or create local session
|
||||||
AD_Session_ID = session.getAD_Session_ID();
|
* @param ctx context
|
||||||
Env.setContext (ctx, Env.AD_SESSION_ID, AD_Session_ID);
|
* @param createNew create if not found
|
||||||
if(isImmutable)
|
* @param isImmutable return Immutable Session Object (from Cache)
|
||||||
s_sessions.put (AD_Session_ID, session, e -> new MSession(Env.getCtx(), e));
|
* @return session session
|
||||||
}
|
*/
|
||||||
|
public static MSession create (Properties ctx)
|
||||||
|
{
|
||||||
|
MSession session = new MSession (ctx, (String)null); // local session
|
||||||
|
session.saveEx();
|
||||||
|
int AD_Session_ID = session.getAD_Session_ID();
|
||||||
|
Env.setContext (ctx, Env.AD_SESSION_ID, AD_Session_ID);
|
||||||
return session;
|
return session;
|
||||||
} // get
|
} // get
|
||||||
|
|
||||||
|
@ -104,26 +110,11 @@ public class MSession extends X_AD_Session implements ImmutablePOSupport
|
||||||
* @param Remote_Host remote host
|
* @param Remote_Host remote host
|
||||||
* @param WebSession web session
|
* @param WebSession web session
|
||||||
* @return session
|
* @return session
|
||||||
* @deprecated use get (Properties ctx, String Remote_Addr, String Remote_Host, String WebSession, boolean isCache)
|
|
||||||
*/
|
*/
|
||||||
public static MSession get (Properties ctx, String Remote_Addr, String Remote_Host, String WebSession)
|
public static MSession get (Properties ctx, String Remote_Addr, String Remote_Host, String WebSession)
|
||||||
{
|
|
||||||
return get(ctx, Remote_Addr, Remote_Host, WebSession, false);
|
|
||||||
} // get
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get existing or create remote session
|
|
||||||
* @param ctx context
|
|
||||||
* @param Remote_Addr remote address
|
|
||||||
* @param Remote_Host remote host
|
|
||||||
* @param WebSession web session
|
|
||||||
* @param isImmutable return Immutable Object (from Cache)
|
|
||||||
* @return session
|
|
||||||
*/
|
|
||||||
public static MSession get (Properties ctx, String Remote_Addr, String Remote_Host, String WebSession, boolean isImmutable)
|
|
||||||
{
|
{
|
||||||
int AD_Session_ID = Env.getContextAsInt(ctx, Env.AD_SESSION_ID);
|
int AD_Session_ID = Env.getContextAsInt(ctx, Env.AD_SESSION_ID);
|
||||||
MSession session = get(ctx, false, isImmutable);
|
MSession session = get(ctx);
|
||||||
|
|
||||||
if (session == null)
|
if (session == null)
|
||||||
{
|
{
|
||||||
|
@ -131,8 +122,8 @@ public class MSession extends X_AD_Session implements ImmutablePOSupport
|
||||||
session.saveEx();
|
session.saveEx();
|
||||||
AD_Session_ID = session.getAD_Session_ID();
|
AD_Session_ID = session.getAD_Session_ID();
|
||||||
Env.setContext(ctx, Env.AD_SESSION_ID, AD_Session_ID);
|
Env.setContext(ctx, Env.AD_SESSION_ID, AD_Session_ID);
|
||||||
if(isImmutable)
|
} else {
|
||||||
s_sessions.put (AD_Session_ID, session, e -> new MSession(Env.getCtx(), e));
|
session = new MSession(ctx, session.getAD_Session_ID(), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
return session;
|
return session;
|
||||||
|
|
|
@ -2661,7 +2661,7 @@ public abstract class PO
|
||||||
lobReset();
|
lobReset();
|
||||||
|
|
||||||
// Change Log
|
// Change Log
|
||||||
MSession session = MSession.get (p_ctx, false, true);
|
MSession session = MSession.get (p_ctx);
|
||||||
if (session == null)
|
if (session == null)
|
||||||
log.fine("No Session found");
|
log.fine("No Session found");
|
||||||
int AD_ChangeLog_ID = 0;
|
int AD_ChangeLog_ID = 0;
|
||||||
|
@ -3123,7 +3123,7 @@ public abstract class PO
|
||||||
lobReset();
|
lobReset();
|
||||||
|
|
||||||
// Change Log
|
// Change Log
|
||||||
MSession session = MSession.get (p_ctx, false, true);
|
MSession session = MSession.get (p_ctx);
|
||||||
if (session == null)
|
if (session == null)
|
||||||
log.fine("No Session found");
|
log.fine("No Session found");
|
||||||
int AD_ChangeLog_ID = 0;
|
int AD_ChangeLog_ID = 0;
|
||||||
|
@ -3719,7 +3719,7 @@ public abstract class PO
|
||||||
if( p_info.isChangeLog())
|
if( p_info.isChangeLog())
|
||||||
{
|
{
|
||||||
// Change Log
|
// Change Log
|
||||||
MSession session = MSession.get (p_ctx, false, true);
|
MSession session = MSession.get (p_ctx);
|
||||||
if (session == null)
|
if (session == null)
|
||||||
log.fine("No Session found");
|
log.fine("No Session found");
|
||||||
else if (m_IDs.length == 1)
|
else if (m_IDs.length == 1)
|
||||||
|
|
|
@ -912,7 +912,7 @@ public class ProcessInfo implements Serializable
|
||||||
}
|
}
|
||||||
|
|
||||||
private Timestamp getLastServerRebootDate() {
|
private Timestamp getLastServerRebootDate() {
|
||||||
MSession currentSession = MSession.get(Env.getCtx(), false, true);
|
MSession currentSession = MSession.get(Env.getCtx());
|
||||||
if (currentSession == null)
|
if (currentSession == null)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
|
|
@ -176,9 +176,11 @@ public final class Env
|
||||||
//hengsin, avoid unncessary query of session when exit without log in
|
//hengsin, avoid unncessary query of session when exit without log in
|
||||||
if (DB.isConnected(false)) {
|
if (DB.isConnected(false)) {
|
||||||
// End Session
|
// End Session
|
||||||
MSession session = MSession.get(Env.getCtx(), false, false); // finish
|
MSession session = MSession.get(Env.getCtx()); // finish
|
||||||
if (session != null)
|
if (session != null) {
|
||||||
|
session = new MSession(getCtx(), session.getAD_Session_ID(), null);
|
||||||
session.logout();
|
session.logout();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
reset(true); // final cache reset
|
reset(true); // final cache reset
|
||||||
|
@ -195,9 +197,11 @@ public final class Env
|
||||||
public static void logout()
|
public static void logout()
|
||||||
{
|
{
|
||||||
// End Session
|
// End Session
|
||||||
MSession session = MSession.get(Env.getCtx(), false, false); // finish
|
MSession session = MSession.get(Env.getCtx()); // finish
|
||||||
if (session != null)
|
if (session != null) {
|
||||||
|
session = new MSession(getCtx(), session.getAD_Session_ID(), null);
|
||||||
session.logout();
|
session.logout();
|
||||||
|
}
|
||||||
//
|
//
|
||||||
reset(true); // final cache reset
|
reset(true); // final cache reset
|
||||||
//
|
//
|
||||||
|
|
|
@ -98,7 +98,7 @@ public class AdempiereActivator extends AbstractActivator {
|
||||||
MSession localSession = null;
|
MSession localSession = null;
|
||||||
//Create Session to be able to create records in AD_ChangeLog
|
//Create Session to be able to create records in AD_ChangeLog
|
||||||
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
||||||
localSession = MSession.get(Env.getCtx(), true, false);
|
localSession = MSession.create(Env.getCtx());
|
||||||
localSession.setWebSession("AdempiereActivator");
|
localSession.setWebSession("AdempiereActivator");
|
||||||
localSession.saveEx();
|
localSession.saveEx();
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,7 +212,12 @@ public class Incremental2PackActivator extends AbstractActivator {
|
||||||
MSession localSession = null;
|
MSession localSession = null;
|
||||||
//Create Session to be able to create records in AD_ChangeLog
|
//Create Session to be able to create records in AD_ChangeLog
|
||||||
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
||||||
localSession = MSession.get(Env.getCtx(), true, false);
|
localSession = MSession.get(Env.getCtx());
|
||||||
|
if(localSession == null) {
|
||||||
|
localSession = MSession.create(Env.getCtx());
|
||||||
|
} else {
|
||||||
|
localSession = new MSession(Env.getCtx(), localSession.getAD_Session_ID(), null);
|
||||||
|
}
|
||||||
localSession.setWebSession("Incremental2PackActivator");
|
localSession.setWebSession("Incremental2PackActivator");
|
||||||
localSession.saveEx();
|
localSession.saveEx();
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,7 +101,12 @@ public class PackInApplicationActivator extends AbstractActivator{
|
||||||
if (getDBLock()) {
|
if (getDBLock()) {
|
||||||
//Create Session to be able to create records in AD_ChangeLog
|
//Create Session to be able to create records in AD_ChangeLog
|
||||||
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
||||||
localSession = MSession.get(Env.getCtx(), true, false);
|
localSession = MSession.get(Env.getCtx());
|
||||||
|
if(localSession == null) {
|
||||||
|
localSession = MSession.create(Env.getCtx());
|
||||||
|
} else {
|
||||||
|
localSession = new MSession(Env.getCtx(), localSession.getAD_Session_ID(), null);
|
||||||
|
}
|
||||||
localSession.setWebSession("PackInApplicationActivator");
|
localSession.setWebSession("PackInApplicationActivator");
|
||||||
localSession.saveEx();
|
localSession.saveEx();
|
||||||
}
|
}
|
||||||
|
|
|
@ -151,7 +151,12 @@ public class Version2PackActivator extends AbstractActivator{
|
||||||
if (getDBLock()) {
|
if (getDBLock()) {
|
||||||
//Create Session to be able to create records in AD_ChangeLog
|
//Create Session to be able to create records in AD_ChangeLog
|
||||||
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
if (Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID) <= 0) {
|
||||||
localSession = MSession.get(Env.getCtx(), true, false);
|
localSession = MSession.get(Env.getCtx());
|
||||||
|
if(localSession == null) {
|
||||||
|
localSession = MSession.create(Env.getCtx());
|
||||||
|
} else {
|
||||||
|
localSession = new MSession(Env.getCtx(), localSession.getAD_Session_ID(), null);
|
||||||
|
}
|
||||||
localSession.setWebSession("Version2PackActivator");
|
localSession.setWebSession("Version2PackActivator");
|
||||||
localSession.saveEx();
|
localSession.saveEx();
|
||||||
}
|
}
|
||||||
|
|
|
@ -119,7 +119,12 @@ public class AdempiereServerMgr implements ServiceTrackerCustomizer<IServerFacto
|
||||||
log.info("");
|
log.info("");
|
||||||
|
|
||||||
// Set Session
|
// Set Session
|
||||||
MSession session = MSession.get(getCtx(), true, false);
|
MSession session = MSession.get(getCtx());
|
||||||
|
if(session == null) {
|
||||||
|
session = MSession.create(getCtx());
|
||||||
|
} else {
|
||||||
|
session = new MSession(getCtx(), session.getAD_Session_ID(), null);
|
||||||
|
}
|
||||||
session.setWebStoreSession(false);
|
session.setWebStoreSession(false);
|
||||||
session.setWebSession("Server");
|
session.setWebSession("Server");
|
||||||
session.saveEx();
|
session.saveEx();
|
||||||
|
|
|
@ -132,7 +132,12 @@ public class Scheduler extends AdempiereServer
|
||||||
Env.setContext(getCtx(), Env.DATE, dateFormat4Timestamp.format(ts)+" 00:00:00" ); // JDBC format
|
Env.setContext(getCtx(), Env.DATE, dateFormat4Timestamp.format(ts)+" 00:00:00" ); // JDBC format
|
||||||
|
|
||||||
//Create new Session and set #AD_Session_ID to context
|
//Create new Session and set #AD_Session_ID to context
|
||||||
MSession session = MSession.get(getCtx(), true, false);
|
MSession session = MSession.get(Env.getCtx());
|
||||||
|
if(session == null) {
|
||||||
|
session = MSession.create(Env.getCtx());
|
||||||
|
} else {
|
||||||
|
session = new MSession(Env.getCtx(), session.getAD_Session_ID(), null);
|
||||||
|
}
|
||||||
MProcess process = new MProcess(getCtx(), scheduler.getAD_Process_ID(), null);
|
MProcess process = new MProcess(getCtx(), scheduler.getAD_Process_ID(), null);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
@ -273,7 +273,7 @@ public class AdempiereWebUI extends Window implements EventListener<Event>, IWeb
|
||||||
String x_Forward_IP = Executions.getCurrent().getHeader("X-Forwarded-For");
|
String x_Forward_IP = Executions.getCurrent().getHeader("X-Forwarded-For");
|
||||||
|
|
||||||
MSession mSession = MSession.get (ctx, x_Forward_IP!=null ? x_Forward_IP : Executions.getCurrent().getRemoteAddr(),
|
MSession mSession = MSession.get (ctx, x_Forward_IP!=null ? x_Forward_IP : Executions.getCurrent().getRemoteAddr(),
|
||||||
Executions.getCurrent().getRemoteHost(), httpSess.getId(), false );
|
Executions.getCurrent().getRemoteHost(), httpSess.getId());
|
||||||
if (clientInfo.userAgent != null) {
|
if (clientInfo.userAgent != null) {
|
||||||
mSession.setDescription(mSession.getDescription() + "\n" + clientInfo.toString());
|
mSession.setDescription(mSession.getDescription() + "\n" + clientInfo.toString());
|
||||||
mSession.saveEx();
|
mSession.saveEx();
|
||||||
|
|
|
@ -211,7 +211,8 @@ public final class AEnv
|
||||||
}
|
}
|
||||||
windowCache.remove(sessionID);
|
windowCache.remove(sessionID);
|
||||||
// End Session
|
// End Session
|
||||||
MSession session = MSession.get(Env.getCtx(), false, false); // finish
|
int ad_Session_ID = Env.getContextAsInt(Env.getCtx(), Env.AD_SESSION_ID);
|
||||||
|
MSession session = ad_Session_ID > 0 ? new MSession(Env.getCtx(), ad_Session_ID, null) : null; // finish
|
||||||
if (session != null)
|
if (session != null)
|
||||||
session.logout();
|
session.logout();
|
||||||
|
|
||||||
|
|
|
@ -265,9 +265,9 @@ public class SessionContextListener implements ExecutionInit,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MSession mSession = MSession.get(Env.getCtx(), false, false);
|
MSession mSession = MSession.get(Env.getCtx());
|
||||||
if(mSession!=null && !mSession.isProcessed()) {
|
if(mSession!=null && !mSession.isProcessed()) {
|
||||||
|
mSession = new MSession(Env.getCtx(), mSession.getAD_Session_ID(), null);
|
||||||
mSession.setProcessed(true);
|
mSession.setProcessed(true);
|
||||||
mSession.saveEx();
|
mSession.saveEx();
|
||||||
}
|
}
|
||||||
|
@ -318,9 +318,10 @@ public class SessionContextListener implements ExecutionInit,
|
||||||
{
|
{
|
||||||
setupExecutionContextFromSession(Executions.getCurrent());
|
setupExecutionContextFromSession(Executions.getCurrent());
|
||||||
}
|
}
|
||||||
MSession mSession = MSession.get(Env.getCtx(), false, false);
|
MSession mSession = MSession.get(Env.getCtx());
|
||||||
if(mSession!=null){
|
if(mSession!=null){
|
||||||
if (mSession.isProcessed()) {
|
if (mSession.isProcessed()) {
|
||||||
|
mSession = new MSession(Env.getCtx(), mSession.getAD_Session_ID(), null);
|
||||||
mSession.setProcessed(false);
|
mSession.setProcessed(false);
|
||||||
mSession.saveEx();
|
mSession.saveEx();
|
||||||
}
|
}
|
||||||
|
|
|
@ -288,11 +288,14 @@ public class CompiereService {
|
||||||
Env.setContext(getCtx(), Env.LANGUAGE, m_language.getAD_Language());
|
Env.setContext(getCtx(), Env.LANGUAGE, m_language.getAD_Language());
|
||||||
|
|
||||||
// Create session
|
// Create session
|
||||||
MSession session = MSession.get (getCtx(), false, false);
|
MSession session = MSession.get (getCtx());
|
||||||
if (session == null){
|
if (session == null){
|
||||||
log.fine("No Session found");
|
log.fine("No Session found");
|
||||||
session = MSession.get (getCtx(), true, false);
|
session = MSession.create (getCtx());
|
||||||
|
} else {
|
||||||
|
session = new MSession(getCtx(), session.getAD_Session_ID(), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
session.setWebSession("WebService");
|
session.setWebSession("WebService");
|
||||||
|
|
||||||
session.setDescription(session.getDescription() + "\nUser Agent: " + getCtx().getProperty("#UserAgent"));
|
session.setDescription(session.getDescription() + "\nUser Agent: " + getCtx().getProperty("#UserAgent"));
|
||||||
|
|
Loading…
Reference in New Issue