Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun In directory usw-pr-cvs1:/tmp/cvs-serv4591/net/sourceforge/javaprofiler/jpiimpl/commun Modified Files: BAD_COMMAND_Exception.java BAD_DATA_TYPE_Exception.java BAD_INFO_ID_Exception.java BAD_INFO_TYPE_Exception.java BAD_OBJ_ID_Exception.java Buffer.java COMMUN_Exception.java Commun.java CommunSetup.java CommunSetupShMem.java CommunSetupSocket.java CommunShMem.java CommunSocket.java IProf.java IProfException.java UNKNOWN_Exception.java Log Message: changes in communication interface IProf.getAll() and IProf.getChanged() methods changed Index: BAD_COMMAND_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/BAD_COMMAND_Exception.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** BAD_COMMAND_Exception.java 2001/10/14 22:08:56 1.1 --- BAD_COMMAND_Exception.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Bad command exception. This exception is raised when a request for ** specified objID is not possible (eg. when you try (in one call to *************** *** 43,51 **** public class BAD_COMMAND_Exception extends IProfException {}; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 43,44 ---- Index: BAD_DATA_TYPE_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/BAD_DATA_TYPE_Exception.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** BAD_DATA_TYPE_Exception.java 2001/10/14 22:08:56 1.1 --- BAD_DATA_TYPE_Exception.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Bad objID type exception. This exception is raised when used ID is ** of different type than specified (eg. when an object has statistic *************** *** 45,53 **** public class BAD_DATA_TYPE_Exception extends IProfException {}; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 45,46 ---- Index: BAD_INFO_ID_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/BAD_INFO_ID_Exception.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** BAD_INFO_ID_Exception.java 2001/10/14 22:08:56 1.1 --- BAD_INFO_ID_Exception.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Bad infoID exception. This exception is raised when used ID is not ** an infoID of an object (eg. when objID is used as an infoID, this *************** *** 44,52 **** public class BAD_INFO_ID_Exception extends IProfException {}; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 44,45 ---- Index: BAD_INFO_TYPE_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/BAD_INFO_TYPE_Exception.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** BAD_INFO_TYPE_Exception.java 2001/10/14 22:08:56 1.1 --- BAD_INFO_TYPE_Exception.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Bad infoID type exception. This exception is raised when type of ** infoID is bad (eg. infoID exists but is of different type than *************** *** 50,58 **** public class BAD_INFO_TYPE_Exception extends IProfException {}; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 50,51 ---- Index: BAD_OBJ_ID_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/BAD_OBJ_ID_Exception.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** BAD_OBJ_ID_Exception.java 2001/10/14 22:08:56 1.1 --- BAD_OBJ_ID_Exception.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Bad objectID exception. This exception is raised when used ID is not ** an objID of an object (eg. when an ID to which no object exists is *************** *** 44,52 **** public class BAD_OBJ_ID_Exception extends IProfException {}; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 44,45 ---- Index: Buffer.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/Buffer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Buffer.java 2001/10/14 22:08:56 1.1 --- Buffer.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** I/O buffer. This class implements an input/output buffer ** needed during communication between profiler dynamic library *************** *** 210,218 **** } }; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 210,211 ---- Index: COMMUN_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/COMMUN_Exception.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** COMMUN_Exception.java 2001/10/14 22:08:56 1.1 --- COMMUN_Exception.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Exception. This exception is raised when a communication failed ** (eg. when server falls down during communication). *************** *** 41,49 **** public class COMMUN_Exception extends IProfException {}; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 41,42 ---- Index: Commun.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/Commun.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Commun.java 2001/10/14 22:08:56 1.1 --- Commun.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Communication. This is a standard interface for all communication ** classes. Whole communication is done thru an instance of this *************** *** 89,97 **** public void stopCommun(); }; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 89,90 ---- Index: CommunSetup.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSetup.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CommunSetup.java 2001/10/14 22:08:56 1.1 --- CommunSetup.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Communication setup. Other classes holding setup data are inherited ** from this abstract class. *************** *** 71,79 **** } }; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 71,72 ---- Index: CommunSetupShMem.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSetupShMem.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CommunSetupShMem.java 2001/10/14 22:08:56 1.1 --- CommunSetupShMem.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Shared memory communication setup. This class contains setup data ** for shared memory communication. *************** *** 69,77 **** } }; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 69,70 ---- Index: CommunSetupSocket.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSetupSocket.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CommunSetupSocket.java 2001/10/14 22:08:56 1.1 --- CommunSetupSocket.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Socket communication setup. This class contains setup data ** for socket communication. *************** *** 80,88 **** } }; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 80,81 ---- Index: CommunShMem.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunShMem.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CommunShMem.java 2001/10/14 22:08:56 1.1 --- CommunShMem.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Shared memory communication. This class implements shared memory ** communication and offers the user of this class the standard *************** *** 127,135 **** } }; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 127,128 ---- Index: CommunSocket.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSocket.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CommunSocket.java 2001/10/14 22:08:56 1.1 --- CommunSocket.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + import java.io.*; import java.lang.*; *************** *** 228,236 **** } }; - - /* - * $Log$ - * Revision 1.1 2001/10/14 22:08:56 stolis - * Content of src2 directory moved into the new location. - * - */ \ No newline at end of file --- 228,229 ---- Index: IProf.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/IProf.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** IProf.java 2001/11/20 22:21:40 1.3 --- IProf.java 2001/11/21 22:05:55 1.4 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ [...1108 lines suppressed...] ! return ALLOC_THREAD_METHOD_TRACE_OBJECTS; ! ! case ALLOC_THREAD_OBJECT_METHODS: ! ! return ALLOC_THREAD_METHOD_OBJECTS; ! ! case ALLOC_THREAD_METHOD_OBJECTS: ! ! return ALLOC_THREAD_OBJECT_METHODS; ! ! case ALLOC_THREAD_METHOD_TRACE_OBJECTS: ! ! return ALLOC_THREAD_OBJECT_METHOD_TRACES; ! ! default: ! ! return NO_OPERATION; ! } ! } ! }; Index: IProfException.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/IProfException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** IProfException.java 2001/10/14 22:08:56 1.1 --- IProfException.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 34,37 **** --- 32,37 ---- * Lukas Petru and Marek Przeczek. */ + + package net.sourceforge.javaprofiler.jpiimpl.commun; /** Exception. All custom exceptions raised by IProf class should be Index: UNKNOWN_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/UNKNOWN_Exception.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** UNKNOWN_Exception.java 2001/10/14 22:08:56 1.1 --- UNKNOWN_Exception.java 2001/11/21 22:05:55 1.2 *************** *** 1,4 **** - package net.sourceforge.javaprofiler.jpiimpl.commun; - /* * Sun Public License Notice --- 1,2 ---- *************** *** 35,38 **** --- 33,38 ---- */ + package net.sourceforge.javaprofiler.jpiimpl.commun; + /** Unknown exception. This exception is raised when a failure cannot ** be recognised, the only thing we know is that it happened in IProf *************** *** 41,43 **** ** @author Marek Przeczek */ ! public class UNKNOWN_Exception extends IProfException {}; \ No newline at end of file --- 41,43 ---- ** @author Marek Przeczek */ ! public class UNKNOWN_Exception extends IProfException {}; |