//# 0 errors, 54 messages
//#
/*
    //#logastabdelimitedview.java:1:1: class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#logastabdelimitedview.java:1:1: method: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init
 * Copyright (c) 2003-2006, Simon Brown
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in
 *     the documentation and/or other materials provided with the
 *     distribution.
 *
 *   - Neither the name of Pebble nor the names of its contributors may
 *     be used to endorse or promote products derived from this software
 *     without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
package net.sourceforge.pebble.web.view.impl;

import net.sourceforge.pebble.web.view.PlainTextView;
import net.sourceforge.pebble.logging.Log;
import net.sourceforge.pebble.logging.LogEntry;
import net.sourceforge.pebble.domain.Blog;
import net.sourceforge.pebble.Constants;

import java.text.SimpleDateFormat;

/**
 * Represents the log file for today.
 *
 * @author    Simon Brown
 */
public class LogAsTabDelimitedView extends PlainTextView {
    //#logastabdelimitedview.java:47: method: void net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView()
    //#input(void net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView()): this
    //#unanalyzed(void net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView()): Effects-of-calling:net.sourceforge.pebble.web.view.JspView
    //#logastabdelimitedview.java:47: end of method: void net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView()

  private static final char SEPARATOR = '\t';

  /**
   * Prepares the view for presentation.
   */
  public void prepare() {
    Blog blog = (Blog)getModel().get(Constants.BLOG_KEY);
    //#logastabdelimitedview.java:55: method: void net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.prepare()
    //#logastabdelimitedview.java:55: Warning: method not available
    //#    -- call on Model net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: Model net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel()
    //#logastabdelimitedview.java:55: Warning: method not available
    //#    -- call on Object net.sourceforge.pebble.web.model.Model:get(String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: Object net.sourceforge.pebble.web.model.Model:get(String)
    //#input(void prepare()): this
    //#presumption(void prepare()): java.util.Iterator:next(...)@77 != null
    //#presumption(void prepare()): net.sourceforge.pebble.logging.Log:getLogEntries(...)@77 != null
    //#presumption(void prepare()): net.sourceforge.pebble.web.model.Model:get(...)@55 != null
    //#presumption(void prepare()): net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel(...)@103 != null
    //#presumption(void prepare()): net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel(...)@55 != null
    //#presumption(void prepare()): net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel(...)@56 != null
    //#test_vector(void prepare()): java.util.Iterator:hasNext(...)@77: {1}, {0}
    //#test_vector(void prepare()): net.sourceforge.pebble.logging.LogEntry:getReferer(...)@92: Addr_Set{null}, Inverse{null}
    //#test_vector(void prepare()): net.sourceforge.pebble.logging.LogEntry:getStatusCode(...)@86: {-1}, {-2_147_483_648..-2, 0..4_294_967_295}
    //#test_vector(void prepare()): net.sourceforge.pebble.web.model.Model:get(...)@56: Addr_Set{null}, Inverse{null}
    Log log = (Log)getModel().get("log");
    //#logastabdelimitedview.java:56: Warning: method not available
    //#    -- call on Model net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: Model net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel()
    //#logastabdelimitedview.java:56: Warning: method not available
    //#    -- call on Object net.sourceforge.pebble.web.model.Model:get(String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: Object net.sourceforge.pebble.web.model.Model:get(String)
    StringBuffer buf = new StringBuffer();
    SimpleDateFormat sdf = new SimpleDateFormat("dd-MMMM-yyyy HH:mm:ss Z");
    sdf.setTimeZone(blog.getTimeZone());
    //#logastabdelimitedview.java:59: Warning: method not available
    //#    -- call on TimeZone net.sourceforge.pebble.domain.Blog:getTimeZone()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: TimeZone net.sourceforge.pebble.domain.Blog:getTimeZone()

    buf.append("Host");
    buf.append(SEPARATOR);
    buf.append("Date/Time");
    buf.append(SEPARATOR);
    buf.append("Method");
    buf.append(SEPARATOR);
    buf.append("Request URI");
    buf.append(SEPARATOR);
    buf.append("Status");
    buf.append(SEPARATOR);
    buf.append("Referer");
    buf.append(SEPARATOR);
    buf.append("User-Agent");
    buf.append("\n");
    
    if (log != null) {
      for (LogEntry logEntry : log.getLogEntries()) {
    //#logastabdelimitedview.java:77: Warning: method not available
    //#    -- call on Collection net.sourceforge.pebble.logging.Log:getLogEntries()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: Collection net.sourceforge.pebble.logging.Log:getLogEntries()
        buf.append(logEntry.getHost());
    //#logastabdelimitedview.java:78: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.logging.LogEntry:getHost()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: String net.sourceforge.pebble.logging.LogEntry:getHost()
        buf.append(SEPARATOR);
        buf.append(sdf.format(logEntry.getDate()));
    //#logastabdelimitedview.java:80: Warning: method not available
    //#    -- call on Date net.sourceforge.pebble.logging.LogEntry:getDate()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: Date net.sourceforge.pebble.logging.LogEntry:getDate()
        buf.append(SEPARATOR);
        buf.append(logEntry.getRequestMethod());
    //#logastabdelimitedview.java:82: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.logging.LogEntry:getRequestMethod()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: String net.sourceforge.pebble.logging.LogEntry:getRequestMethod()
        buf.append(SEPARATOR);
        buf.append(logEntry.getRequestUri());
    //#logastabdelimitedview.java:84: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.logging.LogEntry:getRequestUri()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: String net.sourceforge.pebble.logging.LogEntry:getRequestUri()
        buf.append(SEPARATOR);
        if (logEntry.getStatusCode() != -1) {
    //#logastabdelimitedview.java:86: Warning: method not available
    //#    -- call on int net.sourceforge.pebble.logging.LogEntry:getStatusCode()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: int net.sourceforge.pebble.logging.LogEntry:getStatusCode()
          buf.append(logEntry.getStatusCode());
    //#logastabdelimitedview.java:87: Warning: method not available
    //#    -- call on int net.sourceforge.pebble.logging.LogEntry:getStatusCode()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: int net.sourceforge.pebble.logging.LogEntry:getStatusCode()
        } else {
          buf.append("");
        }
        buf.append(SEPARATOR);
        if (logEntry.getReferer() != null) {
    //#logastabdelimitedview.java:92: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.logging.LogEntry:getReferer()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: String net.sourceforge.pebble.logging.LogEntry:getReferer()
          buf.append(logEntry.getReferer());
    //#logastabdelimitedview.java:93: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.logging.LogEntry:getReferer()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: String net.sourceforge.pebble.logging.LogEntry:getReferer()
        } else {
          buf.append("");
        }
        buf.append(SEPARATOR);
        buf.append(logEntry.getAgent());
    //#logastabdelimitedview.java:98: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.logging.LogEntry:getAgent()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: String net.sourceforge.pebble.logging.LogEntry:getAgent()
        buf.append("\n");
      }
    }

    getModel().put("text", buf.toString());
    //#logastabdelimitedview.java:103: Warning: method not available
    //#    -- call on Model net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: Model net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView:getModel()
    //#logastabdelimitedview.java:103: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.web.model.Model:put(String, Object)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
    //#    method: void prepare()
    //#    unanalyzed callee: void net.sourceforge.pebble.web.model.Model:put(String, Object)
  }
    //#logastabdelimitedview.java:104: end of method: void net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.prepare()

  /**
   * Gets the content type of this view.
   *
   * @return the content type as a String
   */
  public String getContentType() {
    return "application/vnd.ms-excel";
    //#logastabdelimitedview.java:112: method: String net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.getContentType()
    //#output(String getContentType()): return_value
    //#post(String getContentType()): return_value == &"application.vnd.ms-excel"
    //#logastabdelimitedview.java:112: end of method: String net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.getContentType()
  }

}
    //#output(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Descendant_Table[net/sourceforge/pebble/web/view/impl/LogAsTabDelimitedView]
    //#output(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.dispatch(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Ljavax/servlet/ServletContext;)V
    //#output(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.getContentType()Ljava/lang/String;
    //#output(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.getUri()Ljava/lang/String;
    //#output(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.prepare()V
    //#output(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): net/sourceforge/pebble/web/view/PlainTextView.__Descendant_Table[net/sourceforge/pebble/web/view/impl/LogAsTabDelimitedView]
    //#post(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Descendant_Table[net/sourceforge/pebble/web/view/impl/LogAsTabDelimitedView] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): net/sourceforge/pebble/web/view/PlainTextView.__Descendant_Table[net/sourceforge/pebble/web/view/impl/LogAsTabDelimitedView] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.dispatch(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Ljavax/servlet/ServletContext;)V == &net/sourceforge/pebble/web/view/PlainTextView.dispatch
    //#post(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.getContentType()Ljava/lang/String; == &getContentType
    //#post(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.getUri()Ljava/lang/String; == &net/sourceforge/pebble/web/view/PlainTextView.getUri
    //#post(net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init): __Dispatch_Table.prepare()V == &prepare
    //#logastabdelimitedview.java:: end of method: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView.net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView__static_init
    //#logastabdelimitedview.java:: end of class: net.sourceforge.pebble.web.view.impl.LogAsTabDelimitedView
