costin      01/10/25 16:48:00

  Added:       jk/jkant ant.tasks
               jk/jkant/java/org/apache/jk/ant ApxsTask.java SoTask.java
  Log:
  Experimental code. Not working ( and will take some time to get it working ).
  
  Ant tasks to do things equivalent with apxs and libtool ( wrappers for start,
  decent code later ).
  
  If you hate libtool please help :-)
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat-connectors/jk/jkant/ant.tasks
  
  Index: ant.tasks
  ===================================================================
  apxs=org.apache.jk.ApxsTask
  
  
  1.1                  
jakarta-tomcat-connectors/jk/jkant/java/org/apache/jk/ant/ApxsTask.java
  
  Index: ApxsTask.java
  ===================================================================
  /*
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. 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.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Ant", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR
   * ITS 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.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  package org.apache.jk.ant;
  
  import org.apache.tools.ant.types.*;
  import org.apache.tools.ant.util.*;
  import org.apache.tools.ant.taskdefs.*;
  import org.apache.tools.ant.*;
  
  import java.io.*;
  
  /**
   * Task to compile Apache modules, using Apxs.
   * 
   * arguments:
   * <ul>
   * <li>source
   * </ul>
   *
   * <p>
   * When this task executes, it will recursively scan the sourcedir and
   * destdir looking for Java source files to compile. This task makes its
   * compile decision based on timestamp.
   *
   * @author Costin Manolache
   */
  public class ApxsTask extends Task {
      String apxs;
      Path src;
      Path include;
      Path libs;
      String module;
      
      public ApxsTask() {};
  
      /**
       *  Path to Apxs executable. Defaults to "apxs" using the current PATH.
       */
      public void setPath( String path ) {
        this.apxs=path;
      }
      
      /**
       * Source files ( .c )
       *
       * @return a nexted src element.
       */
      public Path createSrc() {
          if (src == null) {
              src = new Path(project);
          }
          return src.createPath();
      }
  
      /**
       * Include files
       */
      public Path createInclude() {
          if (include == null) {
              include = new Path(project);
          }
          return include.createPath();
      }
  
      /**
       * Libraries ( .so or .dll ) files to link to.
       */
      public Path createLib() {
          if (libs == null) {
              libs = new Path(project);
          }
          return libs.createPath();
      }
  
      
      
      /**
       * The name of the target file.
       * (XXX including extension - this should be automatically added )
       */
      public void setModule(String modName) {
          this.module = module;
      }
  
      public void execute() throws BuildException {
        
      }
  
  
  }
  
  
  
  
  1.1                  
jakarta-tomcat-connectors/jk/jkant/java/org/apache/jk/ant/SoTask.java
  
  Index: SoTask.java
  ===================================================================
  /*
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. 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.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Ant", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR
   * ITS 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.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  package org.apache.jk.ant;
  
  import org.apache.tools.ant.types.*;
  import org.apache.tools.ant.util.*;
  import org.apache.tools.ant.taskdefs.*;
  import org.apache.tools.ant.*;
  
  import java.io.*;
  
  /**
   * Task to generate a .so file, similar with ( or using ) libtool.
   * I hate libtool, so long term I would like to replace most of it
   * with decent java code. Short term it'll just use libtool and
   * hide some of the ugliness.
   * 
   * arguments:
   * <ul>
   * <li>source
   * </ul>
   *
   * <p>
   *
   * @author Costin Manolache
   */
  public class SoTask extends Task {
      String apxs;
      Path src;
      Path include;
      Path libs;
      String module;
      
      public SoTask() {};
  
      /**
       *  Path to Apxs executable. Defaults to "apxs" using the current PATH.
       */
      public void setPath( String path ) {
        this.apxs=path;
      }
      
      /**
       * Source files ( .c )
       *
       * @return a nexted src element.
       */
      public Path createSrc() {
          if (src == null) {
              src = new Path(project);
          }
          return src.createPath();
      }
  
      /**
       * Include files
       */
      public Path createInclude() {
          if (include == null) {
              include = new Path(project);
          }
          return include.createPath();
      }
  
      /**
       * Libraries ( .so or .dll ) files to link to.
       */
      public Path createLib() {
          if (libs == null) {
              libs = new Path(project);
          }
          return libs.createPath();
      }
  
      
      
      /**
       * The name of the target file.
       * (XXX including extension - this should be automatically added )
       */
      public void setModule(String modName) {
          this.module = module;
      }
  
      public void execute() throws BuildException {
        
      }
  
  
  }
  
  
  
  


Reply via email to