这是indexloc提供的服务,不要输入任何密码
Menu

[4ce0cf]: / Src / context.c  Maximize  Restore  History

Download this file

121 lines (98 with data), 3.1 kB

  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
117
118
119
120
/*
* context.c - context save and restore
*
* This file is part of zsh, the Z shell.
*
* Copyright (c) 2015 Peter Stephenson
* 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 Peter Stephenson 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 Peter Stephenson and the Zsh Development Group have been advised of
* the possibility of such damage.
*
* Peter Stephenson 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 Peter Stephenson 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;
queue_signals();
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;
unqueue_signals();
}
/* 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);
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.