Skip to content
Snippets Groups Projects
  1. Sep 28, 2009
  2. Sep 09, 2009
  3. Aug 24, 2009
  4. Aug 17, 2009
  5. Aug 11, 2009
  6. Aug 10, 2009
    • rtoy's avatar
      Fixes from Paul Foley: · 94ed0111
      rtoy authored
      o Standard streams no longer change formats when
        *default-external-format* changes.  Use
        stream:set-system-external-format instead, or (setf
        external-format).
      o char-to-octets properly handles surrogate characters being written.
      o Makes simple-streams work again.
      
      This change needs to be cross-compiled.  2009-07 binaries work for
      cross-compiling using the 19e/boot-2008-05-cross-unicode-*.lisp
      cross-compile script.
      94ed0111
  7. Jul 24, 2009
  8. Jul 23, 2009
    • rtoy's avatar
      code/extfmts.lisp: · 747efc31
      rtoy authored
      o Move the +ss-ef-foo+ constants to here from strategy.lisp, and
        update them so they don't overlap with existing +ef-foo+ constants.
      o Update +ef-max+ accordingly.
      
      pcl/simple-streams/impl.lisp:
      o Use +ss-ef-str+ instead of +ef-str+ in simple-stream-strlen.
      
      pcl/simple-streams/strategy.lisp:
      o Comment out +ss-ef-foo+ constants.
      o Use +ef-max+ instead of +ss-ef-max+, which is no longer defined.
      o Fix bugs in %dc-write-chars-fn:
        - Use ef variable
        - Need to call flush-out-buffer, not flush-buffer for dual-channel
          streams.
      747efc31
    • rtoy's avatar
      impl.lisp: · 8cf224b1
      rtoy authored
      internal.lisp:
      o Remove (debug 0) quality.
      8cf224b1
    • rtoy's avatar
      strategy.lisp: · eb4a0079
      rtoy authored
      o Add single-channel and dual-channel functions to write strings.  This
        allows proper handling of strings with surrogates.
      
      rt/simple-streams-test.lisp:
      o Add test for writing a large string with surrogate characters.
      eb4a0079
    • rtoy's avatar
      o Load simple-streams library if needed. · 9c4ee94e
      rtoy authored
      o For all tests that generate random characters, be sure to specify an
        external format of iso8859-1, just in case *default-external-format*
        is something else that might cause issues with random characters.
      9c4ee94e
    • rtoy's avatar
      strategy.lisp: · 1ae505d3
      rtoy authored
      o Update %read-chars-fn to support surrogates so that we can read
        surrogate pairs and correctly place them in a string.
      
      rt/simple-streams-test.lisp:
      o Add a couple of tests exercising %read-chars-fn.  These pass.
      o Add a test for writing strings with surrogates.  (Not yet
        implemented.)
      1ae505d3
    • rtoy's avatar
      strategy.lisp: · 3e0e5eb4
      rtoy authored
      o Comment out %char-to-octets and ef-obs-co-fn, which aren't used
        anymore.  (Remove this soon.)
      
      impl.lisp:
      o Fix %file-string-length, based on the equivalent code for
        fd-streams.
      3e0e5eb4
    • rtoy's avatar
      Make simple-streams work with the new Unicode external format · 84757efc
      rtoy authored
      support.  Add new functions def-ef-macro functions that do the dirty
      work and use them in the stream functions.  We leave the old versions
      around for now, but they should be removed.  %octets-to-char is no
      longer used.
      84757efc
  9. Jun 21, 2009
  10. Jun 19, 2009
    • rtoy's avatar
      SETF-SLOT-VALUE-USING-CLASS-DFUN was signaling errors when checking · 9cc0de48
      rtoy authored
      the new value against the declared slot type.  This shows up in
      simple-streams because the slot type stream:j-listen-fn is a hairy
      function type spec.  So, try to simplify the slot type before
      checking.  This is a slightly modified idea from Paul Foley.
      9cc0de48
  11. Jun 11, 2009
  12. Jan 21, 2009
  13. Jan 06, 2009
  14. Dec 07, 2008
  15. Dec 02, 2008
  16. Nov 12, 2008
  17. Jun 19, 2008
    • rtoy's avatar
      New external format stuff from Paul. · 4a665a5f
      rtoy authored
      bootfiles/19e/boot-2008-06-1.lisp:
      o Use this bootfile to compile the change in external-format
        structure.  Just needed to get rid of a restart when compiling pcl.
      
      code/exports.lisp:
      o Renames ENCODE-STRING to STRING-ENCODE.  Similarly for
        DECODE-STRING.
      
      code/extfmts.lisp:
      pcl/simple-streams/impl.lisp:
      pcl/simple-streams/strategy.lisp:
      pcl/simple-streams/external-formats/iso8859-1.lisp:
      pcl/simple-streams/external-formats/utf-8.lisp:
      pcl/simple-streams/external-formats/void.lisp:
      o Updated for new external format.  I think the main change is not
        having to do a funcall for each character.
      
      pcl/simple-streams/external-formats/aliases
      o New file describing different names for external formats.
      
      pcl/simple-streams/external-formats/crlf.lisp:
      o New file for composing external format for CR/LF
      
      pcl/simple-streams/external-formats/utf-16-be.lisp:
      pcl/simple-streams/external-formats/utf-16-le.lisp:
      o New files supporting UTF-16 BE and LE formats.
      
      tools/make-main-dist.sh:
      o Copy over the new files and the aliases file too.
      4a665a5f
  18. May 24, 2008
    • rtoy's avatar
      Fix issue with slot-value-using-class and · 6b6e7abd
      rtoy authored
      get-accessor-method-function.
      
      See cmucl-imp, 2008/04/03, PCL bug?.  Bug and link to solution
      provided by Hans Hubner.  Solution based on sbcl patch 0.8.14.27.
      
      Here's the test case:
      
      (in-package :cl-user)
      
      (use-package :pcl)
      
      (defclass test-metaclass (standard-class)
        ())
      
      (defmethod validate-superclass ((sub test-metaclass) (super standard-class))
        t)
      
      (defmethod (setf slot-value-using-class) :before (newval (class test-metaclass) object slotd)
        (print 'setf-slot-value-using-class-before))
      
      (defmethod (setf slot-value-using-class) :after (newval (class test-metaclass) object slotd)
        (print 'setf-slot-value-using-class-after))
      
      (defclass test-class ()
        (slot)
        (:metaclass test-metaclass))
      6b6e7abd
  19. Mar 25, 2008
    • rtoy's avatar
      Make compiler and interpreter handle slot-value the same. See thread · 4e65ef5d
      rtoy authored
      http://article.gmane.org/gmane.lisp.cmucl.devel/10471.
      
      These changes make the compiler and interpreter behave the same, and,
      as a side-effect, makes Nicolas's code work as he wants.
      
      pcl/slots.lisp:
      o Add LEGAL-SLOT-NAME-P-INTERNAL that returns two values.  If the
        slot-name is legal, return T.  If illegal, return NIL and a string
        indicating why.
      o Use this new function in the compiler macros for SLOT-VALUE, (SETF
        SLOT-VALUE) and SLOT-BOUNDP so that we use the fast ACCESSOR-*
        versions only when we know the slot-name is legal.  Otherwise, the
        compiler macros give up.
      
      pcl/methods.lisp:
      o Change the method LEGAL-SLOT-NAME-P to use
        LEGAL-SLOT-NAME-P-INTERNAL.
      o Update the call to LEGAL-SLOT-NAME-P in SHARED-INITIALIZE since
        LEGAL-SLOT-NAME-P returns 2 values now.
      4e65ef5d
  20. Nov 05, 2007
  21. Oct 25, 2007
    • rtoy's avatar
      Import Paul Foley's external-formats support. · e49c536b
      rtoy authored
      New files:
      o code/extfmts.lisp
      o pcl/simple-streams/external-formats/iso8859-1.lisp
      o pcl/simple-streams/external-formats/void.lisp
      
      code/exports.lisp:
      o Export the new symbols STRING-TO-OCTETS, OCTETS-TO-STRING,
        *DEFAULT-EXTERNAL-FORMAT*, ENCODE-STRING, and DECODE-STRING from the
        STREAM package
      o Make the symbols in the EXT package too.
      
      pcl/simple-streams/internal.lisp:
      o Move the implementation of STRING-TO-OCTETS and friends to a new
        file (extfmts.lisp).
      
      pcl/simple-streams/external-formats/utf-8.lisp:
      o New implementation.
      
      tools/make-main-dist.sh:
      o Create new target directory to hold external formats
      o Copy all of the external formats to the new directory.
      
      tools/pclcom.lisp:
      o Compile new code
      
      tools/worldcom.lisp:
      o Compile code/extfmts.lisp
      
      tools/worldload.lisp:
      o Load code/extfmts.lisp
      e49c536b
  22. Oct 08, 2007
  23. Sep 13, 2007
    • rtoy's avatar
      Oops. Really get rid of lisp::sxhash-instance. · 7d1f176f
      rtoy authored
      7d1f176f
    • rtoy's avatar
      Untracing of flet/labels functions wasn't working and neither was · 010270ec
      rtoy authored
      retracing flet/labels functions.  This was caused by the hash-table in
      *TRACE-FUNCTIONS* using an EQ test.  This doesn't work well when the
      functions are lists like (FLET INNER OUTER).
      
      code/ntrace.lisp:
      o Change *TRACED-FUNCTIONS* to use an EQUAL table so lists can match.
      
      pcl/braid.lisp:
      o Move LISP::SXHASH-INSTANCE to low.lisp because we need it defined
        earlier because of the change to tracing.  Can't build PCL without
        this change.
      
      pcl/low.lisp:
      o LISP::SXHASH-INSTANCE moved here.
      010270ec
  24. May 02, 2007
    • rtoy's avatar
      Apply fix for default-initargs where initialize-instance and · 41952a35
      rtoy authored
      shared-initialize were not getting :default-initargs.
      
      Patch from Madhu, Mar 28, 2007, based on fix in sbcl.
      
      pcl/ctor.lisp:
      o Pass default-initargs to initialize-instance and shared-initialize.
      
      pcl/rt/ctor.lisp:
      o Add test for this case
      
      pcl/rt/system.lisp:
      o Use *load-truename* to setup paths, instead of a hard-wired one.
      41952a35
  25. Feb 21, 2007
  26. Dec 21, 2006
    • rtoy's avatar
      Fix the bug reported by Madhu on cmucl-imp, 2006/12/16: · dd7132b7
      rtoy authored
      (defvar $f (open "/etc/passwd" :mapped t :class 'stream:file-simple-stream))
      (file-position $f)
      
      returns a negative value.
      
      I think this happens because of some possible confusion between
      buffer-ptr and buf-len in a mapped file-simple-stream.  I changed the
      code so that buffer-ptr is initialized to 0, and the various routines
      that check for eof compare buffpos against buf-len, instead of
      buffer-ptr.  I think this also means buffer-ptr is not used in mapped
      file-simple-streams.
      
      Add a couple of file-position tests too.
      dd7132b7
  27. Nov 30, 2006
  28. Oct 30, 2006
  29. Dec 01, 2005
Loading