zsh-workers
 help / color / mirror / code / Atom feed
bd8d191bf44cea6ffc56f0ad1088a0928136ef65 blob 3018 bytes (raw)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
 
/*
 * context.c - context save and restore
 *
 * This file is part of zsh, the Z shell.
 *
 * Copyright (c) 1992-1997 Paul Falstad
 * All rights reserved.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and to distribute modified versions of this software for any
 * purpose, provided that the above copyright notice and the following
 * two paragraphs appear in all copies of this software.
 *
 * In no event shall Paul Falstad or the Zsh Development Group be liable
 * to any party for direct, indirect, special, incidental, or consequential
 * damages arising out of the use of this software and its documentation,
 * even if Paul Falstad and the Zsh Development Group have been advised of
 * the possibility of such damage.
 *
 * Paul Falstad and the Zsh Development Group specifically disclaim any
 * warranties, including, but not limited to, the implied warranties of
 * merchantability and fitness for a particular purpose.  The software
 * provided hereunder is on an "as is" basis, and Paul Falstad and the
 * Zsh Development Group have no obligation to provide maintenance,
 * support, updates, enhancements, or modifications.
 *
 */
/*
 * This short file provides a home for the stack of saved contexts.
 * The actions for saving and restoring are encapsulated within
 * individual modules.
 */

#include "zsh.mdh"
#include "context.pro"

struct context_stack {
    struct context_stack *next;

    struct hist_stack hist_stack;
    struct lex_stack lex_stack;
    struct parse_stack parse_stack;
};

static struct context_stack *cstack;

/* save some or all of current context */

/**/
mod_export void
zcontext_save_partial(int parts)
{
    struct context_stack *cs;

    cs = (struct context_stack *)malloc(sizeof(struct context_stack));

    if (parts & ZCONTEXT_HIST) {
	hist_context_save(&cs->hist_stack, !cstack);
    }
    if (parts & ZCONTEXT_LEX) {
	lex_context_save(&cs->lex_stack, !cstack);
    }
    if (parts & ZCONTEXT_PARSE) {
	parse_context_save(&cs->parse_stack, !cstack);
    }

    cs->next = cstack;
    cstack = cs;
}

/* save context in full */

/**/
mod_export void
zcontext_save(void)
{
    zcontext_save_partial(ZCONTEXT_HIST|ZCONTEXT_LEX|ZCONTEXT_PARSE);
}

/* restore context or part thereof */

/**/
mod_export void
zcontext_restore_partial(int parts)
{
    struct context_stack *cs = cstack;

    DPUTS(!cstack, "BUG: zcontext_restore() without zcontext_save()");

    queue_signals();
    cstack = cstack->next;

    if (parts & ZCONTEXT_HIST) {
	hist_context_restore(&cs->hist_stack, !cstack);
    }
    if (parts & ZCONTEXT_LEX) {
	lex_context_restore(&cs->lex_stack, !cstack);
    }
    if (parts & ZCONTEXT_PARSE) {
	parse_context_restore(&cs->parse_stack, !cstack);
    }

    free(cs);

    unqueue_signals();
}

/* restore full context */

/**/
mod_export void
zcontext_restore(void)
{
    zcontext_restore_partial(ZCONTEXT_HIST|ZCONTEXT_LEX|ZCONTEXT_PARSE);
}
debug log:

solving bd8d191 ...
found bd8d191 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).