all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jesper Harder <harder@myrealbox.com>
Subject: Re: UUIDGEN in lisp
Date: Sun, 15 Feb 2004 21:47:44 +0100	[thread overview]
Message-ID: <m3u11sdq8f.fsf@defun.localdomain> (raw)
In-Reply-To: mailman.2412.1076818749.928.help-gnu-emacs@gnu.org

Brad Collins <brad@studiojungle.net> writes:

> The major mode I'm working on will be GPL'd, is it okay to include
> this code in the mode?

Sure.

> Interesting to see that if you call the script twice in less than a
> second you get a duplicate id....  not sure why, but it means that
> one should take care it in scripts....

Ah, yes.  It happens because of the `(random t)' in `uuid-random'.
It seeds the RNG, which is necessary because otherwise you'll always
get the same sequence of random number.

But Emacs uses the current time (plus pid) as the seed, so you'll get
the same numbers if you call it with intervals shorter than the time
resolution.  So you should remove the (random t) from the function:

(defun uuid-random ()
  "Return a list of 16 random bytes."
  (if (file-readable-p "/dev/urandom")
      (let ((coding-system-for-read 'binary))
	(mapcar 'identity
		(substring
		 (string-as-unibyte
		  (shell-command-to-string
		   "dd count=16 bs=1 < /dev/urandom"))
		 0 16)))
    (mapcar 'random (make-list 16 255))))

and just place it at the top-level (or in the function that starts
your mode).

  parent reply	other threads:[~2004-02-15 20:47 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.2374.1076727586.928.help-gnu-emacs@gnu.org>
2004-02-14  4:05 ` UUIDGEN in lisp Jesper Harder
2004-02-14 18:23   ` Brad Collins
     [not found]   ` <mailman.2398.1076783242.928.help-gnu-emacs@gnu.org>
2004-02-15  0:27     ` Jesper Harder
2004-02-15  4:16       ` Brad Collins
2004-02-15 16:05         ` Brad Collins
     [not found]       ` <mailman.2412.1076818749.928.help-gnu-emacs@gnu.org>
2004-02-15 20:47         ` Jesper Harder [this message]
2004-02-16 10:04           ` Eli Zaretskii
2004-02-16 13:47           ` Brad Collins
     [not found]           ` <mailman.2461.1076925909.928.help-gnu-emacs@gnu.org>
2004-02-16 16:30             ` Jesper Harder
2004-02-16 19:48               ` Eli Zaretskii
     [not found]               ` <mailman.2509.1076960950.928.help-gnu-emacs@gnu.org>
2004-02-16 21:05                 ` Jesper Harder
2004-02-17  6:46                   ` Eli Zaretskii
     [not found]                   ` <mailman.2546.1077000306.928.help-gnu-emacs@gnu.org>
2004-02-17 18:45                     ` Jesper Harder
2004-02-17 20:08                       ` Eli Zaretskii
     [not found]                       ` <mailman.2586.1077048551.928.help-gnu-emacs@gnu.org>
2004-02-17 21:21                         ` Jesper Harder
2004-02-18  6:34                           ` Eli Zaretskii
2004-02-19 16:57                         ` Stefan Monnier
     [not found]           ` <mailman.2471.1076940207.928.help-gnu-emacs@gnu.org>
2004-02-16 17:10             ` Jesper Harder
2004-02-14 18:54 ` Kai Grossjohann
2004-02-15  2:37   ` Felix
2004-02-14  2:57 Brad Collins

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3u11sdq8f.fsf@defun.localdomain \
    --to=harder@myrealbox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.