Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: d67687a493d069ae22fb3df064258c42aa072328 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2002-2005 IBM Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   IBM - Initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsi.internal.core.log.impl;

import java.util.Vector;

import org.eclipse.wst.wsi.internal.core.WSIConstants;
import org.eclipse.wst.wsi.internal.core.WSIException;
import org.eclipse.wst.wsi.internal.core.log.Log;
import org.eclipse.wst.wsi.internal.core.log.MessageEntry;
import org.eclipse.wst.wsi.internal.core.util.TestUtils;
import org.eclipse.wst.wsi.internal.core.util.Utils;

import java.io.*;

/**
 * This class represents the message log file.
 * 
 * @version 1.0.1
 * @author Peter Brittenham (peterbr@us.ibm.com)
 */
public class LogImpl implements Log
{
  /**
   * Log URI.
   */
  protected String logURI = null;

  /**
   * Start time stamp.
   */
  protected String startTimestamp = null;

  /**
   * Log entries.
   */
  protected Vector logEntryList = new Vector();

  /**
   * Last log entry.
   */
  protected MessageEntry lastLogEntry = null;

  /**
   * Log title.
   */
  // ADD: Should we provide a way to set the log title?
  protected String logTitle = "Message Log File";

  /**
   * Style sheet string.
   */
  protected String styleSheetString = null;

  /**
   * @see org.eclipse.wst.wsi.internal.core.log.Log#addLogEntry(LogEntry)
   */
  public void addLogEntry(MessageEntry logEntry) throws WSIException
  {
    // Save last log entry
    lastLogEntry = logEntry;

    // Add log entry
    logEntryList.add(logEntry);
  }

  /**
   * @see org.eclipse.wst.wsi.internal.core.log.Log#getEntryCount()
   */
  public int getEntryCount()
  {
    return logEntryList.size();
  }

  /**
   * @see org.eclipse.wst.wsi.internal.core.log.Log#getLogEntry(int)
   */
  public MessageEntry getLogEntry(int index)
  {
    return (MessageEntry) logEntryList.elementAt(index);
  }

  /**
   * @see org.eclipse.wst.wsi.internal.core.log.Log#getLogEntryList()
   */
  public Vector getLogEntryList()
  {
    return logEntryList;
  }

  /**
   * Get last log entry.
   */
  public MessageEntry getLastLogEntry()
  {
    return lastLogEntry;
  }

  /**
   * Create log entry object.
   */
  public MessageEntry createLogEntry()
  {
    return new MessageEntryImpl();
  }

  /**
   * @see org.eclipse.wst.wsi.internal.core.document.WSIDocument#getLocation()
   */
  public String getLocation()
  {
    return this.logURI;
  }

  /**
   * @see org.eclipse.wst.wsi.internal.core.document.WSIDocument#setLocation(String)
   */
  public void setLocation(String documentURI)
  {
    this.logURI = documentURI;
  }

  /**
   * Set style sheet string.
   */
  public void setStyleSheetString(String styleSheetString)
  {
    this.styleSheetString = styleSheetString;
  }

  /**
   * Get start element string. 
   */
  public String getStartXMLString(String namespaceName)
  {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);

    String nsName = namespaceName;
    if ((!nsName.equals("") && (!nsName.endsWith(":"))))
      nsName += ":";

    // Create report element 
    pw.println(WSIConstants.XML_DECL);
    if (this.styleSheetString != null)
      pw.println(this.styleSheetString);

    // Add XML comment
    String comment;
    if ((comment = TestUtils.getXMLComment()) != null)
      pw.print(comment);

    // Log
    pw.print("<" + nsName + ELEM_NAME);

    // REMOVED: No longer required by the monitor spec
    //pw.print(" " + WSIConstants.ATTR_NAME + "=\"" + logTitle + "\"");
    pw.println(
      " " + WSIConstants.ATTR_TIMESTAMP + "=\"" + Utils.getTimestamp() + "\"");
    pw.println("    xmlns=\"" + WSIConstants.NS_URI_WSI_LOG + "\"");
    pw.println(
      "    xmlns:"
        + WSIConstants.NS_NAME_WSI_MONITOR_CONFIG
        + "=\""
        + WSIConstants.NS_URI_WSI_MONITOR_CONFIG
        + "\"");
    //pw.println("    xmlns:" + WSIConstants.NS_NAME_WSI_COMMON + "=\"" + 
    //      WSIConstants.NS_URI_WSI_COMMON + "\"");
    pw.println(
      "    xmlns:"
        + WSIConstants.NS_NAME_XSI
        + "=\""
        + WSIConstants.NS_URI_XSI
        + "\">");

    // Add  monitor tool info
    //pw.println(monitor.toXMLString(nsName));

    // Return XML string
    return sw.toString();
  }

  /**
   * Get end element string. 
   */
  public String getEndXMLString(String namespaceName)
  {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);

    String nsName = namespaceName;
    if ((!nsName.equals("") && (!nsName.endsWith(":"))))
      nsName += ":";

    // End log element 
    pw.println("</" + nsName + ELEM_NAME + ">");

    // Return XML string
    return sw.toString();
  }

  /**
   * @see org.eclipse.wst.wsi.internal.core.document.DocumentElement#toXMLString(String)
   */
  public String toXMLString(String namespaceName)
  {
    // ADD:
    return null;
  }

}

Back to the top