|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.rmi.server.RemoteObject
java.rmi.server.RemoteServer
java.rmi.server.UnicastRemoteObject
com.ibm.di.api.remote.impl.APIRemoteObject
com.ibm.di.api.remote.impl.SystemLogImpl
public class SystemLogImpl
This class implements various methods for getting system log information.
Field Summary |
---|
Fields inherited from class java.rmi.server.RemoteObject |
---|
ref |
Method Summary | |
---|---|
String |
cleanALLogs(String aConfigId,
String aALName,
String[] logsToBeDeleted)
Deletes all the logs which are specified in " logsToBeDeleted " array. |
void |
cleanAllOldALLogs(Date aMinDate)
Deletes all AssemblyLines' log files older than the specified date. |
void |
cleanAllOldALLogs(int aKeepNum)
Deletes all AssemblyLines' log files except those generated on the " aKeepNum " latest runs of all AssemblyLines. |
void |
cleanAllOldLogs(Date aMinDate)
Deletes all log files older than the specified date. |
void |
cleanAllOldLogs(int aKeepNum)
Deletes all log files except those generated on the " aKeepNum " latest runs of all components. |
Boolean |
cleanOldALLogs(String aConfigId,
String aALName,
Date aMinDate)
Deletes those log files of the specified AssemblyLine, that are older than the specified date. |
Boolean |
cleanOldALLogs(String aConfigId,
String aALName,
Date aMinDate,
Date aMaxDate)
Deletes those log files of the specified AssemblyLine, that are older than the specified date. |
Boolean |
cleanOldALLogs(String aConfigId,
String aALName,
int aKeepNum)
Deletes all log files of the specified AssemblyLine except those generated on the " aKeepNum " latest AssemblyLine runs. |
static SystemLogImpl |
createInstance(SystemLog aLocalSystemLog,
SessionImpl aSession)
Creates new instance of this class. |
String |
getALLastLogFileName(String aConfigId,
String aALName)
Returns the name of the log file created on the last run of a given AssemblyLine. |
String |
getALLog(String aConfigId,
String aALName,
String aLogFileName)
Given an AssemblyLine identification, and a log file name, retrieves the log of this AssemblyLine, stored in the specified file. |
String[] |
getALLogFileNames(String aConfigId,
String aALName)
Returns the names of all available log files for a given AssemblyLine. |
String[] |
getALLogFileNames(String aConfigId,
String aALName,
Date dDate)
Returns the names of all available log files prior to the specified 'date' for a given AssemblyLine. |
String[] |
getALLogFileNames(String aConfigId,
String aALName,
Date startDate,
Date endDate)
Returns the names of all available log files prior to the specified 'date' for a given AssemblyLine. |
String[] |
getALLogFileNames(String aConfigId,
String aALName,
int iNumber)
Returns the names of first 'n' log files for a given AssemblyLine. |
String |
getALLogLastChunk(String aConfigId,
String aALName,
String aLogFileName,
int aKilobytes)
Retrieves the last chunk from a specified AssemblyLine's log file. |
Methods inherited from class java.rmi.server.UnicastRemoteObject |
---|
clone, exportObject, exportObject, exportObject, unexportObject |
Methods inherited from class java.rmi.server.RemoteServer |
---|
getClientHost, getLog, setLog |
Methods inherited from class java.rmi.server.RemoteObject |
---|
equals, getRef, hashCode, toString, toStub |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public String[] getALLogFileNames(String aConfigId, String aALName) throws DIException, RemoteException
getALLogFileNames
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine.
DIException
- if an error occurs while obtaining AssemblyLine's log file
names.
RemoteException
- if a communication-related exception occurs.public String getALLastLogFileName(String aConfigId, String aALName) throws DIException, RemoteException
getALLastLogFileName
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine.
DIException
- if an error occurs while obtaining the log file name.
RemoteException
- if a communication-related exception occurs.public String getALLog(String aConfigId, String aALName, String aLogFileName) throws DIException, RemoteException
getALLog
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine.aLogFileName
- the name of the log file; no file path should be specified -
just the file name.
DIException
- if an error occurs while obtaining AssemblyLine's log.
RemoteException
- if a communication-related exception occurs.public String[] getALLogFileNames(String aConfigId, String aALName, int iNumber) throws DIException, RemoteException
getALLogFileNames
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine.iNumber
- the max number of log files to be returned. If iNumber exceeds
the number of available log files then all the log files names
are returned.
DIException
- if an error occurs while obtaining AssemblyLine's log file
names.
RemoteException
- if a communication-related exception occurs.public String[] getALLogFileNames(String aConfigId, String aALName, Date dDate) throws DIException, RemoteException
getALLogFileNames
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine.dDate
- all the log files prior to this date will e listed.
DIException
- if an error occurs while obtaining AssemblyLine's log file
names.
RemoteException
- if a communication-related exception occurs.public String[] getALLogFileNames(String aConfigId, String aALName, Date startDate, Date endDate) throws DIException, RemoteException
getALLogFileNames
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine.startDate
- all the log files after this date will be listed.endDate
- all the log files before this date will be listed.
DIException
- if an error occurs while obtaining AssemblyLine's log file
names.
RemoteException
- if a communication-related exception occurs.public String getALLogLastChunk(String aConfigId, String aALName, String aLogFileName, int aKilobytes) throws DIException, RemoteException
getALLogLastChunk
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine.aLogFileName
- the name of the log file; no file path should be specified -
just the file name.aKilobytes
- specifies in kilobytes the size of the log's last chunk that
will be read.
DIException
- if an error occurs while obtaining AssemblyLine's log.
RemoteException
- if a communication-related exception occurs.public void cleanAllOldLogs(Date aMinDate) throws DIException, RemoteException
cleanAllOldLogs
in interface SystemLog
aMinDate
- only log files that were last modified before this date will
be deleted.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.public void cleanAllOldLogs(int aKeepNum) throws DIException, RemoteException
aKeepNum
" latest runs of all components.
cleanAllOldLogs
in interface SystemLog
aKeepNum
- specifies the number of the latest log files that should not
be deleted; If for example, aKeepNum == 5
, for
each component only the 5 latest log files will not be
deleted.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.public void cleanAllOldALLogs(Date aMinDate) throws DIException, RemoteException
cleanAllOldALLogs
in interface SystemLog
aMinDate
- only log files that were last modified before this date will
be deleted.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.public void cleanAllOldALLogs(int aKeepNum) throws DIException, RemoteException
aKeepNum
" latest runs of all AssemblyLines.
cleanAllOldALLogs
in interface SystemLog
aKeepNum
- specifies the number of the latest log files that should not
be deleted; If for example, aKeepNum == 5
, for
each AssemblyLine only the 5 latest log files will not be
deleted.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.public Boolean cleanOldALLogs(String aConfigId, String aALName, Date aMinDate) throws DIException, RemoteException
cleanOldALLogs
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine whose logs will be cleaned up.aMinDate
- only log files that were last modified after this date will
be deleted.
Boolean
that holds true
if the
log files were deleted successfully; and null
if
there is no log folder for the specified AssemblyLine.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.public Boolean cleanOldALLogs(String aConfigId, String aALName, Date aMinDate, Date aMaxDate) throws DIException, RemoteException
cleanOldALLogs
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine whose logs will be cleaned up.aMinDate
- only log files that were last modified after this date will
be deleted.aMaxDate
- only log files that were last modified before this date will
be deleted.
Boolean
that holds true
if the
log files were deleted successfully; and null
if
there is no log folder for the specified AssemblyLine.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.public Boolean cleanOldALLogs(String aConfigId, String aALName, int aKeepNum) throws DIException, RemoteException
aKeepNum
" latest AssemblyLine runs.
cleanOldALLogs
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine whose logs will be cleaned up.aKeepNum
- specifies the number of the latest log files that should not
be deleted; If for example, aKeepNum == 5
only
the 5 latest AssemblyLine's log files will not be deleted.
Boolean
that holds true
if the
log files were deleted successfully; and null
if
there is no log folder for the specified AssemblyLine.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.public static SystemLogImpl createInstance(SystemLog aLocalSystemLog, SessionImpl aSession) throws DIException, RemoteException
aLocalSystemLog
- local system logaSession
- the SessionImpl object
DIException
- if Runtime or Security exception occurs
RemoteException
- if a communication-related exception occurs.public String cleanALLogs(String aConfigId, String aALName, String[] logsToBeDeleted) throws DIException, RemoteException
logsToBeDeleted
" array.
cleanALLogs
in interface SystemLog
aConfigId
- identification of the AssemblyLine's Config Instance.aALName
- the name of the AssemblyLine whose logs will be cleaned up.logsToBeDeleted
- name of the log files which are to be deleted.
String
that holds null
if the log
files are deleted successfully; else comma seperated names of the
log files which are not deleted.
DIException
- if an error occurs while deleting log files.
RemoteException
- if a communication-related exception occurs.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |