This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
set PERL_EXIT_DESTRUCT_END in all embeddings
[perl5.git] / NetWare / interface.c
... / ...
CommitLineData
1
2/*
3 * Copyright © 2001 Novell, Inc. All Rights Reserved.
4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
8 */
9
10/*
11 * FILENAME : interface.c
12 * DESCRIPTION : Calling Perl APIs.
13 * Author : SGP
14 * Date Created : January 2001.
15 * Date Modified: July 2nd 2001.
16 */
17
18
19
20#include "interface.h"
21#include "nwtinfo.h"
22
23static void xs_init(pTHX);
24
25EXTERN_C int RunPerl(int argc, char **argv, char **env);
26EXTERN_C void Perl_nw5_init(int *argcp, char ***argvp);
27EXTERN_C void boot_DynaLoader (pTHX_ CV* cv);
28
29EXTERN_C BOOL Remove_Thread_Ctx(void);
30
31
32ClsPerlHost::ClsPerlHost()
33{
34
35}
36
37ClsPerlHost::~ClsPerlHost()
38{
39
40}
41
42ClsPerlHost::VersionNumber()
43{
44 return 0;
45}
46
47bool
48ClsPerlHost::RegisterWithThreadTable()
49{
50 return(fnRegisterWithThreadTable());
51}
52
53bool
54ClsPerlHost::UnregisterWithThreadTable()
55{
56 return(fnUnregisterWithThreadTable());
57}
58
59int
60ClsPerlHost::PerlCreate(PerlInterpreter *my_perl)
61{
62/* if (!(my_perl = perl_alloc())) // Allocate memory for Perl.
63 return (1);*/
64 perl_construct(my_perl);
65 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
66
67 return 1;
68}
69
70int
71ClsPerlHost::PerlParse(PerlInterpreter *my_perl, int argc, char** argv, char** env)
72{
73 return(perl_parse(my_perl, xs_init, argc, argv, env)); // Parse the command line.
74}
75
76int
77ClsPerlHost::PerlRun(PerlInterpreter *my_perl)
78{
79 return(perl_run(my_perl)); // Run Perl.
80}
81
82int
83ClsPerlHost::PerlDestroy(PerlInterpreter *my_perl)
84{
85 return(perl_destruct(my_perl)); // Destructor for Perl.
86}
87
88void
89ClsPerlHost::PerlFree(PerlInterpreter *my_perl)
90{
91 perl_free(my_perl); // Free the memory allocated for Perl.
92
93 // Remove the thread context set during Perl_set_context
94 // This is added here since for web script there is no other place this gets executed
95 // and it cannot be included into cgi2perl.xs unless this symbol is exported.
96 Remove_Thread_Ctx();
97}
98
99/*============================================================================================
100
101 Function : xs_init
102
103 Description :
104
105 Parameters : pTHX (IN) -
106
107 Returns : Nothing.
108
109==============================================================================================*/
110
111static void xs_init(pTHX)
112{
113 char *file = __FILE__;
114
115 dXSUB_SYS;
116 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
117}
118
119
120EXTERN_C
121int RunPerl(int argc, char **argv, char **env)
122{
123 int exitstatus = 0;
124 ClsPerlHost nlm;
125
126 PerlInterpreter *my_perl = NULL; // defined in Perl.h
127 PerlInterpreter *new_perl = NULL; // defined in Perl.h
128
129 #ifdef PERL_GLOBAL_STRUCT
130 #define PERLVAR(prefix,var,type)
131 #define PERLVARA(prefix,var,type)
132 #define PERLVARI(prefix,var,type,init) PL_Vars.prefix##var = init;
133 #define PERLVARIC(prefix,var,type,init) PL_Vars.prefix##var = init;
134
135 #include "perlvars.h"
136
137 #undef PERLVAR
138 #undef PERLVARA
139 #undef PERLVARI
140 #undef PERLVARIC
141 #endif
142
143 PERL_SYS_INIT(&argc, &argv);
144
145 if (!(my_perl = perl_alloc())) // Allocate memory for Perl.
146 return (1);
147
148 if(nlm.PerlCreate(my_perl))
149 {
150 PL_perl_destruct_level = 0;
151
152 if(!nlm.PerlParse(my_perl, argc, argv, env))
153 {
154 #if defined(TOP_CLONE) && defined(USE_ITHREADS) // XXXXXX testing
155 new_perl = perl_clone(my_perl, 1);
156
157 (void) perl_run(new_perl); // Run Perl.
158 PERL_SET_THX(my_perl);
159 #else
160 (void) nlm.PerlRun(my_perl);
161 #endif
162 }
163 exitstatus = nlm.PerlDestroy(my_perl);
164 }
165 if(my_perl)
166 nlm.PerlFree(my_perl);
167
168 #ifdef USE_ITHREADS
169 if (new_perl)
170 {
171 PERL_SET_THX(new_perl);
172 exitstatus = nlm.PerlDestroy(new_perl);
173 nlm.PerlFree(my_perl);
174 }
175 #endif
176
177 PERL_SYS_TERM();
178 return exitstatus;
179}
180
181
182// FUNCTION: AllocStdPerl
183//
184// DESCRIPTION:
185// Allocates a standard perl handler that other perl handlers
186// may delegate to. You should call FreeStdPerl to free this
187// instance when you are done with it.
188//
189IPerlHost* AllocStdPerl()
190{
191 return (IPerlHost*) new ClsPerlHost();
192}
193
194
195// FUNCTION: FreeStdPerl
196//
197// DESCRIPTION:
198// Frees an instance of a standard perl handler allocated by
199// AllocStdPerl.
200//
201void FreeStdPerl(IPerlHost* pPerlHost)
202{
203 if (pPerlHost)
204 delete (ClsPerlHost*) pPerlHost;
205}
206