summaryrefslogtreecommitdiff
path: root/global.c
diff options
context:
space:
mode:
authorJinkun Jang <jinkun.jang@samsung.com>2013-03-13 02:21:06 +0900
committerJinkun Jang <jinkun.jang@samsung.com>2013-03-13 02:21:06 +0900
commit2606e979bb226560dea2cc9820302bc1f1e3c141 (patch)
tree8709ad87750384e4d727d2ef9c6783ec32ade7b5 /global.c
parent3366690e172a06e0b95718b8a5436004ce6116f8 (diff)
downloaded-tizen_2.2.tar.gz
ed-tizen_2.2.tar.bz2
ed-tizen_2.2.zip
Diffstat (limited to 'global.c')
-rw-r--r--global.c88
1 files changed, 88 insertions, 0 deletions
diff --git a/global.c b/global.c
new file mode 100644
index 0000000..2a71e58
--- /dev/null
+++ b/global.c
@@ -0,0 +1,88 @@
+/* global.c: global command routines for the ed line editor */
+/* GNU ed - The GNU line editor.
+ Copyright (C) 1993, 1994 Andrew Moore, Talke Studio
+ Copyright (C) 2006, 2007, 2008, 2009 Antonio Diaz Diaz.
+
+ 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/>.
+*/
+
+#include <errno.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "ed.h"
+
+
+static const line_t **active_list = 0; /* list of lines active in a global command */
+static int active_size = 0; /* size (in bytes) of active_list */
+static int active_len = 0; /* number of lines in active_list */
+static int active_ptr = 0; /* active_list index ( non-decreasing ) */
+static int active_ndx = 0; /* active_list index ( modulo active_last ) */
+
+
+/* clear the global-active list */
+void clear_active_list( void )
+ {
+ disable_interrupts();
+ if( active_list ) free( active_list );
+ active_list = 0;
+ active_size = active_len = active_ptr = active_ndx = 0;
+ enable_interrupts();
+ }
+
+
+/* return the next global-active line node */
+const line_t *next_active_node( void )
+ {
+ while( active_ptr < active_len && !active_list[active_ptr] )
+ ++active_ptr;
+ return ( active_ptr < active_len ) ? active_list[active_ptr++] : 0;
+ }
+
+
+/* add a line node to the global-active list */
+char set_active_node( const line_t *lp )
+ {
+ disable_interrupts();
+ if( !resize_line_buffer( &active_list, &active_size,
+ ( active_len + 1 ) * sizeof( line_t ** ) ) )
+ {
+ show_strerror( 0, errno ); set_error_msg( "Memory exhausted" );
+ enable_interrupts();
+ return 0;
+ }
+ enable_interrupts();
+ active_list[active_len++] = lp;
+ return 1;
+ }
+
+
+/* remove a range of lines from the global-active list */
+void unset_active_nodes( const line_t *np, const line_t *mp )
+ {
+ const line_t *lp = np;
+
+ while( lp != mp )
+ {
+ int i;
+ for( i = 0; i < active_len; ++i )
+ {
+ if( ++active_ndx >= active_len ) active_ndx = 0;
+ if( active_list[active_ndx] == lp )
+ { active_list[active_ndx] = 0; break; }
+ }
+ lp = lp->q_forw;
+ }
+ }