2 Internal file viewer for the Midnight Commander
3 Function for work with growing bufers
5 Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
6 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
8 Written by: 1994, 1995, 1998 Miguel de Icaza
9 1994, 1995 Janne Kukonlehto
14 2004 Roland Illig <roland.illig@gmx.de>
15 2005 Roland Illig <roland.illig@gmx.de>
16 2009 Slava Zanko <slavazanko@google.com>
17 2009 Andrew Borodin <aborodin@vmail.ru>
18 2009 Ilia Maslakov <il.smind@gmail.com>
20 This file is part of the Midnight Commander.
22 The Midnight Commander is free software; you can redistribute it
23 and/or modify it under the terms of the GNU General Public License as
24 published by the Free Software Foundation; either version 2 of the
25 License, or (at your option) any later version.
27 The Midnight Commander is distributed in the hope that it will be
28 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
29 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
30 General Public License for more details.
32 You should have received a copy of the GNU General Public License
33 along with this program; if not, write to the Free Software
34 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
41 #include "lib/global.h"
42 #include "src/wtools.h"
44 #include "lib/vfs/mc-vfs/vfs.h"
48 /* Block size for reading files in parts */
49 #define VIEW_PAGE_SIZE ((size_t) 8192)
51 /*** global variables ****************************************************************************/
53 /*** file scope macro definitions ****************************************************************/
55 /*** file scope type declarations ****************************************************************/
57 /*** file scope variables ************************************************************************/
59 /*** file scope functions ************************************************************************/
61 /*** public functions ****************************************************************************/
63 /* --------------------------------------------------------------------------------------------- */
66 mcview_growbuf_init (mcview_t
* view
)
68 view
->growbuf_in_use
= TRUE
;
69 view
->growbuf_blockptr
= g_ptr_array_new ();
70 view
->growbuf_lastindex
= VIEW_PAGE_SIZE
;
71 view
->growbuf_finished
= FALSE
;
74 /* --------------------------------------------------------------------------------------------- */
77 mcview_growbuf_free (mcview_t
* view
)
79 assert (view
->growbuf_in_use
);
81 g_ptr_array_foreach (view
->growbuf_blockptr
, (GFunc
) g_free
, NULL
);
83 (void) g_ptr_array_free (view
->growbuf_blockptr
, TRUE
);
85 view
->growbuf_blockptr
= NULL
;
86 view
->growbuf_in_use
= FALSE
;
89 /* --------------------------------------------------------------------------------------------- */
92 mcview_growbuf_filesize (mcview_t
* view
)
94 assert (view
->growbuf_in_use
);
96 if (view
->growbuf_blockptr
->len
== 0)
99 return ((off_t
) view
->growbuf_blockptr
->len
- 1) * VIEW_PAGE_SIZE
+ view
->growbuf_lastindex
;
102 /* --------------------------------------------------------------------------------------------- */
104 /* Copies the output from the pipe to the growing buffer, until either
105 * the end-of-pipe is reached or the interval [0..ofs) of the growing
106 * buffer is completely filled. */
108 mcview_growbuf_read_until (mcview_t
* view
, off_t ofs
)
115 assert (view
->growbuf_in_use
);
117 if (view
->growbuf_finished
)
121 while (mcview_growbuf_filesize (view
) < ofs
|| short_read
)
123 if (view
->growbuf_lastindex
== VIEW_PAGE_SIZE
)
125 /* Append a new block to the growing buffer */
126 byte
*newblock
= g_try_malloc (VIEW_PAGE_SIZE
);
127 if (newblock
== NULL
)
130 g_ptr_array_add (view
->growbuf_blockptr
, newblock
);
131 view
->growbuf_lastindex
= 0;
133 p
= g_ptr_array_index (view
->growbuf_blockptr
,
134 view
->growbuf_blockptr
->len
- 1) + view
->growbuf_lastindex
;
136 bytesfree
= VIEW_PAGE_SIZE
- view
->growbuf_lastindex
;
138 if (view
->datasource
== DS_STDIO_PIPE
)
140 nread
= fread (p
, 1, bytesfree
, view
->ds_stdio_pipe
);
143 view
->growbuf_finished
= TRUE
;
144 (void) pclose (view
->ds_stdio_pipe
);
145 mcview_display (view
);
146 close_error_pipe (D_NORMAL
, NULL
);
147 view
->ds_stdio_pipe
= NULL
;
153 assert (view
->datasource
== DS_VFS_PIPE
);
156 nread
= mc_read (view
->ds_vfs_pipe
, p
, bytesfree
);
158 while (nread
== -1 && errno
== EINTR
);
159 if (nread
== -1 || nread
== 0)
161 view
->growbuf_finished
= TRUE
;
162 (void) mc_close (view
->ds_vfs_pipe
);
163 view
->ds_vfs_pipe
= -1;
167 short_read
= ((size_t) nread
< bytesfree
);
168 view
->growbuf_lastindex
+= nread
;
172 /* --------------------------------------------------------------------------------------------- */
175 mcview_get_byte_growing_buffer (mcview_t
* view
, off_t byte_index
, int *retval
)
183 pageno
= byte_index
/ VIEW_PAGE_SIZE
;
184 pageindex
= byte_index
% VIEW_PAGE_SIZE
;
186 assert (view
->growbuf_in_use
);
191 mcview_growbuf_read_until (view
, byte_index
+ 1);
192 if (view
->growbuf_blockptr
->len
== 0)
194 if (pageno
< view
->growbuf_blockptr
->len
- 1)
197 *retval
= *((byte
*) (g_ptr_array_index (view
->growbuf_blockptr
, pageno
) + pageindex
));
200 if (pageno
== view
->growbuf_blockptr
->len
- 1 && pageindex
< (off_t
) view
->growbuf_lastindex
)
203 *retval
= *((byte
*) (g_ptr_array_index (view
->growbuf_blockptr
, pageno
) + pageindex
));
209 /* --------------------------------------------------------------------------------------------- */
212 mcview_get_ptr_growing_buffer (mcview_t
* view
, off_t byte_index
)
214 off_t pageno
= byte_index
/ VIEW_PAGE_SIZE
;
215 off_t pageindex
= byte_index
% VIEW_PAGE_SIZE
;
217 assert (view
->growbuf_in_use
);
222 mcview_growbuf_read_until (view
, byte_index
+ 1);
223 if (view
->growbuf_blockptr
->len
== 0)
225 if (pageno
< view
->growbuf_blockptr
->len
- 1)
226 return (char *) (g_ptr_array_index (view
->growbuf_blockptr
, pageno
) + pageindex
);
227 if (pageno
== view
->growbuf_blockptr
->len
- 1 && pageindex
< (off_t
) view
->growbuf_lastindex
)
228 return (char *) (g_ptr_array_index (view
->growbuf_blockptr
, pageno
) + pageindex
);
232 /* --------------------------------------------------------------------------------------------- */