Return-Path: Delivered-To: apmail-logging-general-archive@www.apache.org Received: (qmail 36677 invoked from network); 21 Jul 2007 17:52:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Jul 2007 17:52:31 -0000 Received: (qmail 37489 invoked by uid 500); 21 Jul 2007 17:52:26 -0000 Delivered-To: apmail-logging-general-archive@logging.apache.org Received: (qmail 37417 invoked by uid 500); 21 Jul 2007 17:52:26 -0000 Mailing-List: contact general-help@logging.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Logging General" List-Id: Delivered-To: mailing list general@logging.apache.org Received: (qmail 37292 invoked by uid 99); 21 Jul 2007 17:52:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Jul 2007 10:52:25 -0700 X-ASF-Spam-Status: No, hits=-98.6 required=10.0 tests=ALL_TRUSTED,INFO_TLD,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Jul 2007 10:52:12 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id BD9F31A9887; Sat, 21 Jul 2007 10:50:56 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r558362 [23/33] - in /logging/site/trunk/docs/log4j/companions/receivers: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/log4j/ apidocs/org/apache/log4j/db/ apidocs/org/apache/log4j/db/class-use/ apidocs/org/apache/log4j/db... Date: Sat, 21 Jul 2007 17:50:44 -0000 To: general@logging.apache.org From: carnold@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070721175056.BD9F31A9887@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/FullCycleDBTest.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/FullCycleDBTest.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/FullCycleDBTest.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/FullCycleDBTest.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,340 @@ + + + +FullCycleDBTest xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one or more
+3    * contributor license agreements.  See the NOTICE file distributed with
+4    * this work for additional information regarding copyright ownership.
+5    * The ASF licenses this file to You under the Apache License, Version 2.0
+6    * (the "License"); you may not use this file except in compliance with
+7    * the License.  You may obtain a copy of the License at
+8    *
+9    *      http://www.apache.org/licenses/LICENSE-2.0
+10   *
+11   * Unless required by applicable law or agreed to in writing, software
+12   * distributed under the License is distributed on an "AS IS" BASIS,
+13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+14   * See the License for the specific language governing permissions and
+15   * limitations under the License.
+16   */
+17  package org.apache.log4j.db;
+18  
+19  import junit.framework.Test;
+20  import junit.framework.TestCase;
+21  import junit.framework.TestSuite;
+22  import org.apache.log4j.Hierarchy;
+23  import org.apache.log4j.Level;
+24  import org.apache.log4j.Logger;
+25  import org.apache.log4j.MDC;
+26  import org.apache.log4j.VectorAppender;
+27  import org.apache.log4j.LoggerRepositoryExImpl;
+28  import org.apache.log4j.helpers.Constants;
+29  import org.apache.log4j.xml.DOMConfigurator;
+30  import org.apache.log4j.spi.LocationInfo;
+31  import org.apache.log4j.spi.LoggingEvent;
+32  import org.apache.log4j.spi.RootLogger;
+33  import org.apache.log4j.spi.LoggerRepository;
+34  
+35  import java.sql.Connection;
+36  import java.sql.DriverManager;
+37  import java.sql.SQLException;
+38  import java.sql.Statement;
+39  import java.util.Iterator;
+40  import java.util.Map;
+41  import java.util.Vector;
+42  import java.util.HashMap;
+43  import java.io.InputStream;
+44  import java.io.IOException;
+45  
+46  
+47  /***
+48   * This test case writes a few events into a databases and reads them
+49   * back comparing the event written and read back.
+50   * 
+51   * <p>It relies heavily on the proper configuration of its environment
+52   * in joran config files as well system properties.
+53   * </p>
+54   * 
+55   * <p>See also the Ant build file in the tests/ directory.</p> 
+56   * 
+57   * @author Ceki G&uuml;lc&uuml
+58   */
+59  public class FullCycleDBTest
+60         extends TestCase {
+61    
+62    Vector witnessEvents;
+63    Hierarchy lrWrite;
+64    LoggerRepository lrRead;
+65    String appendConfigFile = null;
+66    String readConfigFile = null;
+67    
+68    
+69    /*
+70     * @see TestCase#setUp()
+71     */
+72    protected void setUp()
+73           throws Exception {
+74      super.setUp();
+75      appendConfigFile = "append-with-drivermanager1.xml";
+76      readConfigFile = "read-with-drivermanager1.xml";
+77  
+78      witnessEvents = new Vector();
+79      lrWrite = new Hierarchy(new RootLogger(Level.DEBUG));
+80      lrRead = new LoggerRepositoryExImpl(new Hierarchy(new RootLogger(Level.DEBUG)));
+81  
+82  
+83      //
+84      //   attempt to define tables in in-memory database
+85      //      will throw exception if already defined.
+86      //
+87          Class.forName("org.hsqldb.jdbcDriver");
+88          Connection connection = DriverManager.getConnection("jdbc:hsqldb:mem:testdb");
+89          try {
+90              Statement s = connection.createStatement();
+91              s.executeUpdate("CREATE TABLE logging_event " +
+92                "( sequence_number   BIGINT NOT NULL, " +
+93                 " timestamp         BIGINT NOT NULL, " +
+94                 " rendered_message  LONGVARCHAR NOT NULL, " +
+95                 " logger_name       VARCHAR NOT NULL, " +
+96                 " level_string      VARCHAR NOT NULL, " +
+97                 " ndc               LONGVARCHAR, " +
+98                 " thread_name       VARCHAR, " +
+99                 " reference_flag    SMALLINT, " +
+100                " caller_filename   VARCHAR, " +
+101                " caller_class      VARCHAR, " +
+102                " caller_method     VARCHAR, " +
+103                " caller_line       CHAR(4), " +
+104                " event_id          INT NOT NULL IDENTITY)");
+105             s.executeUpdate("CREATE TABLE logging_event_property " +
+106               "( event_id	      INT NOT NULL, " +
+107                " mapped_key        VARCHAR(254) NOT NULL, " +
+108                " mapped_value      LONGVARCHAR, " +
+109                " PRIMARY KEY(event_id, mapped_key), " +
+110                " FOREIGN KEY (event_id) REFERENCES logging_event(event_id))");
+111             s.executeUpdate("CREATE TABLE logging_event_exception" +
+112                     "  ( event_id         INT NOT NULL, " +
+113                     "    i                SMALLINT NOT NULL," +
+114                     "    trace_line       VARCHAR NOT NULL," +
+115                     "    PRIMARY KEY(event_id, i)," +
+116                     "    FOREIGN KEY (event_id) REFERENCES logging_event(event_id))");
+117         } catch(SQLException ex) {
+118             String s = ex.toString();
+119         } finally {
+120             connection.close();
+121         }
+122 
+123   }
+124 
+125 
+126   /*
+127    * @see TestCase#tearDown()
+128    */
+129   protected void tearDown()
+130          throws Exception {
+131     super.tearDown();
+132     lrRead.shutdown();
+133     witnessEvents = null;
+134   }
+135 
+136   /***
+137    * Constructor for DBReeceiverTest.
+138    * @param arg0
+139    */
+140   public FullCycleDBTest(String arg0) {
+141     super(arg0);
+142   }
+143 
+144   
+145   /***
+146    * This test starts by writing a single event to a DB using DBAppender
+147    * and then reads it back using DBReceiver.
+148    * 
+149    * DB related information is specified within the configuration files.
+150    * @throws Exception
+151    */
+152   public void testSingleOutput()
+153          throws Exception {
+154     DOMConfigurator jc1 = new DOMConfigurator();
+155     InputStream is = FullCycleDBTest.class.getResourceAsStream(appendConfigFile);
+156     jc1.doConfigure(is, lrWrite);
+157     is.close();
+158   
+159     long startTime = System.currentTimeMillis();
+160     System.out.println("***startTime is  "+startTime);
+161 
+162     // Write out just one log message
+163     Logger out = lrWrite.getLogger("testSingleOutput.out");
+164     out.debug("some message"+startTime);
+165 
+166     VectorAppender witnessAppender = (VectorAppender) lrWrite.getRootLogger().getAppender("VECTOR");
+167     witnessEvents = witnessAppender.getVector();
+168     assertEquals(1, witnessEvents.size());    
+169 
+170     // We have to close all appenders before starting to read
+171     lrWrite.shutdown();
+172 
+173     // now read it back
+174     readBack(readConfigFile, startTime);
+175 
+176   }
+177 
+178   /***
+179    * This test starts by writing a single event to a DB using DBAppender
+180    * and then reads it back using DBReceiver.
+181    * 
+182    * The written event includes MDC and repository properties as well as
+183    * exception info.
+184    * 
+185    * DB related information is specified within the configuration files.
+186    * @throws Exception
+187    */
+188   public void testAllFields() throws IOException {
+189     DOMConfigurator jc1 = new DOMConfigurator();
+190     InputStream is = FullCycleDBTest.class.getResourceAsStream(appendConfigFile);
+191     jc1.doConfigure(is, lrWrite);
+192     is.close();
+193   
+194     long startTime = System.currentTimeMillis();
+195     
+196     // Write out just one log message
+197     MDC.put("key1", "value1-"+startTime);
+198     MDC.put("key2", "value2-"+startTime);
+199     Map mdcMap = MDC.getContext();
+200 //    LogLog.info("**********"+mdcMap.size());
+201     
+202     // Write out just one log message
+203     Logger out = lrWrite.getLogger("out"+startTime);
+204 
+205     out.debug("some message"+startTime);
+206     MDC.put("key3", "value2-"+startTime);
+207     out.error("some error message"+startTime, new Exception("testing"));
+208     
+209     // we clear the MDC to avoid interference with the events read back from
+210     // the db
+211     MDC.remove("key1");
+212     MDC.remove("key2");
+213     MDC.remove("key3");
+214 
+215     VectorAppender witnessAppender = (VectorAppender) lrWrite.getRootLogger().getAppender("VECTOR");
+216     witnessEvents = witnessAppender.getVector();
+217     assertEquals(2, witnessEvents.size());    
+218 
+219     // We have to close all appenders just before starting to read
+220     lrWrite.shutdown();
+221     
+222     readBack(readConfigFile, startTime);
+223   }
+224 
+225 
+226   void readBack(String configfile, long startTime) throws IOException {
+227     DOMConfigurator jc2 = new DOMConfigurator();
+228     InputStream is = FullCycleDBTest.class.getResourceAsStream(configfile);
+229     jc2.doConfigure(is, lrRead);
+230     is.close();
+231     
+232     // wait a little to allow events to be read
+233     try { Thread.sleep(3100); } catch(Exception e) {}
+234     VectorAppender va = (VectorAppender) lrRead.getRootLogger().getAppender("VECTOR");
+235     Vector returnedEvents = getRelevantEventsFromVA(va, startTime);
+236     
+237     compareEvents(witnessEvents, returnedEvents);
+238     
+239   }
+240   
+241   void compareEvents(Vector l, Vector r) {
+242     assertNotNull("left vector of events should not be null");
+243     assertEquals(l.size(), r.size());
+244     
+245     for(int i = 0; i < r.size(); i++) {
+246       LoggingEvent le = (LoggingEvent) l.get(i);
+247       LoggingEvent re = (LoggingEvent) r.get(i);
+248       assertEquals(le.getMessage(),        re.getMessage());
+249       assertEquals(le.getLoggerName(),     re.getLoggerName());
+250       assertEquals(le.getLevel(),          re.getLevel());
+251       assertEquals(le.getThreadName(), re.getThreadName());
+252       if(re.getTimeStamp() < le.getTimeStamp()) {
+253         fail("Returned event cannot preceed witness timestamp");
+254       }
+255 
+256       Map sourceMap = re.getProperties();
+257       Map remap;
+258       if (sourceMap == null) {
+259           remap = new HashMap();
+260       } else {
+261           remap = new HashMap(sourceMap);
+262           if (remap.containsKey(Constants.LOG4J_ID_KEY)) {
+263               remap.remove(Constants.LOG4J_ID_KEY);
+264           }
+265       }
+266       if(le.getProperties() == null || le.getProperties().size() == 0) {
+267         if(remap.size() != 0) {
+268           System.out.println("properties are "+remap);
+269           fail("Returned event should have been empty");
+270         }
+271       } else {
+272         assertEquals(le.getProperties(), remap);
+273       }
+274       comprareStringArrays( le.getThrowableStrRep(),  re.getThrowableStrRep());
+275       compareLocationInfo(le, re);
+276     } 
+277   }
+278   
+279   void comprareStringArrays(String[] la, String[] ra) {
+280     if((la == null) && (ra == null)) {
+281       return;
+282     }
+283     assertEquals(la.length, ra.length);
+284     for(int i = 0; i < la.length; i++) {
+285       assertEquals(la[i], ra[i]);
+286     }
+287   }
+288   
+289   void compareLocationInfo(LoggingEvent l, LoggingEvent r) {
+290     if(l.locationInformationExists()) {
+291       assertEquals(l.getLocationInformation().fullInfo, r.getLocationInformation().fullInfo);
+292     } else {
+293       assertEquals(LocationInfo.NA_LOCATION_INFO, r.getLocationInformation());
+294     }
+295   }
+296   
+297   Vector getRelevantEventsFromVA(VectorAppender va, long startTime) {
+298     assertNotNull(va);
+299     Vector v = va.getVector();
+300     Vector r = new Vector();
+301     // remove all elements older than startTime
+302     for(Iterator i = v.iterator(); i.hasNext(); ) {
+303       LoggingEvent event = (LoggingEvent) i.next();  
+304       if(startTime > event.getTimeStamp()) {
+305         System.out.println("***Removing event with timestamp "+event.getTimeStamp());
+306       } else {
+307         System.out.println("***Keeping event with timestamo"+event.getTimeStamp());
+308         r.add(event);
+309       }
+310     }
+311     return r;
+312   }
+313 
+314   void dump(Vector v) {
+315     for(int i = 0; i < v.size(); i++) {
+316       LoggingEvent le = (LoggingEvent) v.get(i);
+317       System.out.println("---"+le.getLevel()+" "+le.getLoggerName()+" "+le.getMessage());
+318     }
+319   }
+320   
+321   public static Test XXsuite() {
+322     TestSuite suite = new TestSuite();
+323     suite.addTest(new FullCycleDBTest("testSingleOutput"));
+324     suite.addTest(new FullCycleDBTest("testAllFields"));
+325     return suite;
+326   }
+327 }
+
+
+ + Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/FullCycleDBTest.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-frame.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-frame.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-frame.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-frame.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,24 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference Package org.apache.log4j.db + + + + +

+ org.apache.log4j.db +

+ +

Classes

+ + + + + \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-frame.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-summary.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-summary.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-summary.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-summary.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,67 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference Package $name + + + +
+ +
+
+ +
+ +

Package org.apache.log4j.db

+ + + + + + + + + + + + +
Class Summary
+ FullCycleDBTest +
+ +
+ +
+
+ +
+
+ Copyright © null Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/db/package-summary.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/UtilLoggingLevelTest.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/UtilLoggingLevelTest.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/UtilLoggingLevelTest.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/UtilLoggingLevelTest.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,59 @@ + + + +UtilLoggingLevelTest xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one or more
+3    * contributor license agreements.  See the NOTICE file distributed with
+4    * this work for additional information regarding copyright ownership.
+5    * The ASF licenses this file to You under the Apache License, Version 2.0
+6    * (the "License"); you may not use this file except in compliance with
+7    * the License.  You may obtain a copy of the License at
+8    *
+9    *      http://www.apache.org/licenses/LICENSE-2.0
+10   *
+11   * Unless required by applicable law or agreed to in writing, software
+12   * distributed under the License is distributed on an "AS IS" BASIS,
+13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+14   * See the License for the specific language governing permissions and
+15   * limitations under the License.
+16   */
+17  
+18  package org.apache.log4j.helpers;
+19  
+20  import junit.framework.*;
+21  
+22  
+23  /***
+24   * Unit tests for UtilLoggingLevel.
+25   */
+26  
+27  public class UtilLoggingLevelTest extends TestCase {
+28  
+29      /***
+30       * Create new instance of test.
+31       *
+32       * @param testName test name
+33       */
+34      public UtilLoggingLevelTest(final String testName) {
+35          super(testName);
+36      }
+37  
+38      /***
+39       * Test toLevel("fiNeSt").
+40       */
+41      public void testToLevelFINEST() {
+42          assertSame(UtilLoggingLevel.FINEST, UtilLoggingLevel.toLevel("fiNeSt"));
+43      }
+44  
+45  }
+46  
+
+
+ + Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/UtilLoggingLevelTest.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-frame.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-frame.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-frame.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-frame.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,24 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference Package org.apache.log4j.helpers + + + + +

+ org.apache.log4j.helpers +

+ +

Classes

+ + + + + \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-frame.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-summary.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-summary.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-summary.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-summary.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,67 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference Package $name + + + +
+ +
+
+ +
+ +

Package org.apache.log4j.helpers

+ + + + + + + + + + + + +
Class Summary
+ UtilLoggingLevelTest +
+ +
+ +
+
+ +
+
+ Copyright © null Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/helpers/package-summary.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-frame.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-frame.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-frame.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-frame.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,24 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference Package org.apache.log4j + + + + +

+ org.apache.log4j +

+ +

Classes

+ + + + + \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-frame.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-summary.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-summary.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-summary.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-summary.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,67 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference Package $name + + + +
+ +
+
+ +
+ +

Package org.apache.log4j

+ + + + + + + + + + + + +
Class Summary
+ VectorAppender +
+ +
+ +
+
+ +
+
+ Copyright © null Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/org/apache/log4j/package-summary.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-frame.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-frame.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-frame.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-frame.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,31 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference + + + + +

+ All Classes +

+ +

Packages

+ + + + + + Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-frame.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-summary.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-summary.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-summary.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-summary.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,74 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference + + + +
+
    +
  • Overview
  • +
  • Package
  • +
+
+
+ +
+ +

Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference

+ + + + + + + + + + + + + + + + + + +
Packages
+ org.apache.log4j +
+ org.apache.log4j.db +
+ org.apache.log4j.helpers +
+ +
+
    +
  • Overview
  • +
  • Package
  • +
+
+
+ +
+ +
+ Copyright © null Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/overview-summary.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref-test/stylesheet.css URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref-test/stylesheet.css?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref-test/stylesheet.css (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref-test/stylesheet.css Sat Jul 21 10:50:33 2007 @@ -0,0 +1,96 @@ +/* Javadoc style sheet */ +/* Define colors, fonts and other style attributes here to override the defaults */ +body { + background-color: #fff; + font-family: Arial, Helvetica, sans-serif; +} + +a:link { + color: #00f; +} +a:visited { + color: #00a; +} + +a:active, a:hover { + color: #f30 !important; +} + +ul, li { + list-style-type:none ; + margin:0; + padding:0; +} + +table td{ + padding: 3px; + border: 1px solid #000; +} +table{ + width:100%; + border: 1px solid #000; + border-collapse: collapse; +} + +div.overview { + background-color:#ddd; + padding: 4px 4px 4px 0; +} +div.overview li, div.framenoframe li { + display: inline; +} +div.framenoframe { + text-align: center; + font-size: x-small; +} +div.framenoframe li { + margin: 0 3px 0 3px; +} +div.overview li { + margin:3px 3px 0 3px; + padding: 4px; +} +li.selected { + background-color:#888; + color: #fff; + font-weight: bold; +} + +table.summary { + margin-bottom: 20px; +} +table.summary td, table.summary th { + font-weight: bold; + text-align: left; + padding: 3px; +} +table.summary th{ + background-color:#036; + color: #fff; +} +table.summary td{ + background-color:#eee; + border: 1px solid black; +} + +em { + color: #A00; +} +em.comment { + color: #390; +} +.string { + color: #009; +} +div#footer { + text-align:center; +} +#overview { + padding:2px; +} + + +hr { + height: 1px; + color: #000; +} \ No newline at end of file Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref-test/stylesheet.css ------------------------------------------------------------------------------ svn:mime-type = text/css Added: logging/site/trunk/docs/log4j/companions/receivers/xref/allclasses-frame.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref/allclasses-frame.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref/allclasses-frame.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref/allclasses-frame.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,143 @@ + + + + + + All Classes + + + + +

All Classes

+ + + + + Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref/allclasses-frame.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref/index.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref/index.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref/index.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref/index.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,22 @@ + + + + + + Apache Receivers Companion for log4j 1.2. 1.1-SNAPSHOT Reference + + + + + + + + + + <h1>Frame Alert</h1> + <p> + You don't have frames. Go <a href="overview-summary.html">here</a> + </p> + + + Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref/index.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSource.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSource.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSource.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSource.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,82 @@ + + + +ConnectionSource xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one or more
+3    * contributor license agreements.  See the NOTICE file distributed with
+4    * this work for additional information regarding copyright ownership.
+5    * The ASF licenses this file to You under the Apache License, Version 2.0
+6    * (the "License"); you may not use this file except in compliance with
+7    * the License.  You may obtain a copy of the License at
+8    * 
+9    *      http://www.apache.org/licenses/LICENSE-2.0
+10   * 
+11   * Unless required by applicable law or agreed to in writing, software
+12   * distributed under the License is distributed on an "AS IS" BASIS,
+13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+14   * See the License for the specific language governing permissions and
+15   * limitations under the License.
+16   */
+17  
+18  package org.apache.log4j.db;
+19  
+20  import org.apache.log4j.spi.Component;
+21  import org.apache.log4j.spi.OptionHandler;
+22  
+23  import java.sql.Connection;
+24  import java.sql.SQLException;
+25  
+26  
+27  /***
+28   *  The <id>ConnectionSource</id> interface provides a pluggable means of
+29   *  transparently obtaining JDBC {@link java.sql.Connection}s for log4j classes
+30   *  that require the use of a {@link java.sql.Connection}.
+31   *
+32   *  @author <a href="mailto:rdecampo@twcny.rr.com">Ray DeCampo</a>
+33   */
+34  public interface ConnectionSource extends Component, OptionHandler {
+35  
+36    final int UNKNOWN_DIALECT = 0;
+37    final int POSTGRES_DIALECT = 1;
+38    final int MYSQL_DIALECT = 2;
+39    final int ORACLE_DIALECT = 3;
+40    final int MSSQL_DIALECT = 4;
+41    final int HSQL_DIALECT = 5;  
+42    /***
+43     *  Obtain a {@link java.sql.Connection} for use.  The client is
+44     *  responsible for closing the {@link java.sql.Connection} when it is no
+45     *  longer required.
+46     *
+47     *  @throws SQLException  if a {@link java.sql.Connection} could not be
+48     *                        obtained
+49     */
+50    Connection getConnection() throws SQLException;
+51  
+52    /***
+53     * Get the SQL dialect that should be used for this connection. Note that the
+54     * dialect is not needed if the JDBC driver supports the getGeneratedKeys 
+55     * method.
+56     */
+57    int getSQLDialectCode();
+58    
+59    /***
+60     * If the connection supports the JDBC 3.0 getGeneratedKeys method, then
+61     * we do not need any specific dialect support.
+62     */
+63    boolean supportsGetGeneratedKeys();
+64    
+65    /***
+66     * If the connection does not support batch updates, we will avoid using them.
+67     */  
+68    public boolean supportsBatchUpdates();
+69  }
+
+
+ + Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSource.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSourceSkeleton.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSourceSkeleton.html?view=auto&rev=558362 ============================================================================== --- logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSourceSkeleton.html (added) +++ logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSourceSkeleton.html Sat Jul 21 10:50:33 2007 @@ -0,0 +1,123 @@ + + + +ConnectionSourceSkeleton xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one or more
+3    * contributor license agreements.  See the NOTICE file distributed with
+4    * this work for additional information regarding copyright ownership.
+5    * The ASF licenses this file to You under the Apache License, Version 2.0
+6    * (the "License"); you may not use this file except in compliance with
+7    * the License.  You may obtain a copy of the License at
+8    *
+9    *      http://www.apache.org/licenses/LICENSE-2.0
+10   *
+11   * Unless required by applicable law or agreed to in writing, software
+12   * distributed under the License is distributed on an "AS IS" BASIS,
+13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+14   * See the License for the specific language governing permissions and
+15   * limitations under the License.
+16   */
+17  
+18  package org.apache.log4j.db;
+19  
+20  import org.apache.log4j.db.dialect.Util;
+21  import org.apache.log4j.spi.ComponentBase;
+22  
+23  import java.sql.Connection;
+24  import java.sql.DatabaseMetaData;
+25  import java.sql.SQLException;
+26  
+27  
+28  /***
+29   * @author Ceki G&uuml;lc&uuml;
+30   */
+31  public abstract class ConnectionSourceSkeleton extends ComponentBase implements ConnectionSource {
+32    private String user = null;
+33    private String password = null;
+34  
+35    // initially we have an unkonw dialect
+36    private int dialectCode = UNKNOWN_DIALECT;
+37    private boolean supportsGetGeneratedKeys = false;
+38    private boolean supportsBatchUpdates = false;
+39  
+40  
+41    /***
+42     * Learn relevant information about this connection source.
+43     *
+44     */
+45    public void discoverConnnectionProperties() {
+46      try {
+47        Connection connection = getConnection();
+48        if (connection == null) {
+49          getLogger().warn("Could not get a conneciton");
+50          return;
+51        }
+52        DatabaseMetaData meta = connection.getMetaData();
+53        Util util = new Util();
+54        util.setLoggerRepository(repository);
+55        supportsGetGeneratedKeys = util.supportsGetGeneratedKeys(meta);
+56        supportsBatchUpdates = util.supportsBatchUpdates(meta);
+57        dialectCode = Util.discoverSQLDialect(meta);
+58      } catch (SQLException se) {
+59        getLogger().warn("Could not discover the dialect to use.", se);
+60      }
+61    }
+62  
+63    /***
+64     * Does this connection support the JDBC Connection.getGeneratedKeys method?
+65     */
+66    public final boolean supportsGetGeneratedKeys() {
+67      return supportsGetGeneratedKeys;
+68    }
+69  
+70    public final int getSQLDialectCode() {
+71      return dialectCode;
+72    }
+73  
+74    /***
+75     * Get the password for this connection source.
+76     */
+77    public final String getPassword() {
+78      return password;
+79    }
+80  
+81    /***
+82     * Sets the password.
+83     * @param password The password to set
+84     */
+85    public final void setPassword(final String password) {
+86      this.password = password;
+87    }
+88  
+89    /***
+90     * Get the user for this connection source.
+91     */
+92    public final String getUser() {
+93      return user;
+94    }
+95  
+96    /***
+97     * Sets the username.
+98     * @param username The username to set
+99     */
+100   public final void setUser(final String username) {
+101     this.user = username;
+102   }
+103 
+104   /***
+105    * Does this connection support batch updates?
+106    */
+107   public final boolean supportsBatchUpdates() {
+108     return supportsBatchUpdates;
+109   }
+110 }
+
+
+ + Propchange: logging/site/trunk/docs/log4j/companions/receivers/xref/org/apache/log4j/db/ConnectionSourceSkeleton.html ------------------------------------------------------------------------------ svn:mime-type = text/html