KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > workplace > threads > CmsReportTestThread


1 /*
2  * File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/threads/CmsReportTestThread.java,v $
3  * Date : $Date: 2006/03/27 14:52:27 $
4  * Version: $Revision: 1.8 $
5  *
6  * This library is part of OpenCms -
7  * the Open Source Content Mananagement System
8  *
9  * Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * For further information about Alkacon Software GmbH, please see the
22  * company website: http://www.alkacon.com
23  *
24  * For further information about OpenCms, please see the
25  * project website: http://www.opencms.org
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with this library; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  */

31
32 package org.opencms.workplace.threads;
33
34 import org.opencms.file.CmsObject;
35 import org.opencms.report.A_CmsReportThread;
36 import org.opencms.report.I_CmsReport;
37
38 /**
39  * Does a full static export of all system resources in the current site.<p>
40  *
41  * @author Alexander Kandzior
42  *
43  * @version $Revision: 1.8 $
44  *
45  * @since 6.0.0
46  */

47 public class CmsReportTestThread extends A_CmsReportThread {
48
49     private int m_count;
50
51     /**
52      * Creates a static export Thread.<p>
53      *
54      * @param cms the current cms context
55      * @param count the count for the test output
56      */

57     public CmsReportTestThread(CmsObject cms, int count) {
58
59         super(cms, Messages.get().getBundle().key(Messages.GUI_REPORT_TEST_THREAD_NAME_0));
60         m_count = count;
61         initHtmlReport(cms.getRequestContext().getLocale());
62         start();
63     }
64
65     /**
66      * @see org.opencms.report.A_CmsReportThread#getReportUpdate()
67      */

68     public String JavaDoc getReportUpdate() {
69
70         return getReport().getReportUpdate();
71     }
72
73     /**
74      * @see java.lang.Runnable#run()
75      */

76     public void run() {
77
78         I_CmsReport report = getReport();
79         report.println(Messages.get().container(Messages.RPT_TEST_REPORT_BEGIN_0), I_CmsReport.FORMAT_HEADLINE);
80         for (int i = 0; i < m_count; i++) {
81             report.print(org.opencms.report.Messages.get().container(
82                 org.opencms.report.Messages.RPT_SUCCESSION_2,
83                 String.valueOf(i),
84                 String.valueOf(m_count)));
85             report.println(Messages.get().container(Messages.RPT_TEST_REPORT_OUTPUT_0));
86             try {
87                 sleep(250);
88             } catch (InterruptedException JavaDoc e) {
89                 // just continue
90
}
91         }
92         getReport().println(Messages.get().container(Messages.RPT_TEST_REPORT_END_0), I_CmsReport.FORMAT_HEADLINE);
93     }
94 }
Popular Tags