summaryrefslogtreecommitdiff
path: root/lib/xmemxfrm.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2010-08-04 16:10:10 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2010-08-04 16:10:59 -0700
commit2b49b140cc13cf36ec5ee5acaca5ac7bfeed6366 (patch)
treef527d9cdeae11387f80ee5ea81b3bfe869c55e8d /lib/xmemxfrm.c
parentdb48b362417e3f86671c040610ddfa27596bd258 (diff)
downloadcoreutils-2b49b140cc13cf36ec5ee5acaca5ac7bfeed6366.tar.xz
sort: -R now uses less memory on long lines with internal NULs
* lib/Makefile.am (libcoreutils_a_SOURCES): Remove xmemxfrm.c, xmemxfrm.h. * lib/memxfrm.c, lib/memxfrm.h, lib/xmemxfrm.c, lib/xmemxfrm.h: Remove. * m4/memxfrm.m4: Likewise. * m4/prereq.m4 (gl_PREREQ): Remove gl_MEMXFRM. * po/POTFILES.in: Remove lib/xmemxfrm.c. * src/sort.c: Don't include xmemxfrm.h. (cmp_hashes): Remove. (xstrxfrm): New function. (compare_random): If a line contains NULs, don't create a big buffer that contains the strxfrm output of each string in the line. Instead, accumulate checksums and differences as we go, so that at any one time we have to store at most the output of a single strxfrm call when processing the line. This removes the need for an memxfrm function.
Diffstat (limited to 'lib/xmemxfrm.c')
-rw-r--r--lib/xmemxfrm.c62
1 files changed, 0 insertions, 62 deletions
diff --git a/lib/xmemxfrm.c b/lib/xmemxfrm.c
deleted file mode 100644
index 9cdda9833..000000000
--- a/lib/xmemxfrm.c
+++ /dev/null
@@ -1,62 +0,0 @@
-/* Locale-specific memory transformation
-
- Copyright (C) 2006, 2009-2010 Free Software Foundation, Inc.
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-/* Written by Paul Eggert <eggert@cs.ucla.edu>. */
-
-#include <config.h>
-
-#include "xmemxfrm.h"
-
-#include <errno.h>
-#include <stdlib.h>
-
-#include "gettext.h"
-#define _(msgid) gettext (msgid)
-
-#include "error.h"
-#include "exitfail.h"
-#include "memxfrm.h"
-#include "quotearg.h"
-
-/* Store into DEST (of size DESTSIZE) the text in SRC (of size
- SRCSIZE) transformed so that the result of memcmp on two
- transformed texts (with ties going to the longer text) is the same
- as the result of memcoll on the two texts before their
- transformation. Perhaps temporarily modify the byte after SRC, but
- restore its original contents before returning.
-
- Return the size of the resulting text. DEST contains an
- indeterminate value if the resulting size is greater than DESTSIZE.
- Report an error and exit if there is an error. */
-
-size_t
-xmemxfrm (char *restrict dest, size_t destsize,
- char *restrict src, size_t srcsize)
-{
- size_t translated_size = memxfrm (dest, destsize, src, srcsize);
-
- if (errno)
- {
- error (0, errno, _("string transformation failed"));
- error (0, 0, _("set LC_ALL='C' to work around the problem"));
- error (exit_failure, 0,
- _("the untransformed string was %s"),
- quotearg_n_style_mem (0, locale_quoting_style, src, srcsize));
- }
-
- return translated_size;
-}