r8316: give full access to the popt command line parsing in ejs scripts, including
[jra/samba/.git] / source4 / scripting / ejs / smbscript.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Standalone client for ejs scripting.
5
6    Copyright (C) Tim Potter <tpot@samba.org> 2005
7    Copyright (C) Andrew Tridgell 2005
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25 #include "dynconfig.h"
26 #include "lib/ejs/ejs.h"
27 #include "scripting/ejs/smbcalls.h"
28
29 void ejs_exception(const char *reason)
30 {
31         fprintf(stderr, "smbscript exception: %s", reason);
32         exit(127);
33 }
34
35  int main(int argc, const char **argv)
36 {
37         EjsId eid;
38         EjsHandle handle = 0;
39         MprVar result;
40         char *emsg, *script;
41         size_t script_size;
42         TALLOC_CTX *mem_ctx = talloc_new(NULL);
43         const char **argv_list = NULL;
44         const char *fname;
45         struct MprVar *return_var;
46         int exit_status, i;
47
48         smbscript_init_subsystems;
49         mprSetCtx(mem_ctx);
50
51         if (argc < 2) {
52                 fprintf(stderr, "You must supply a script name\n");
53                 exit(1);
54         }
55
56         fname = argv[1];
57
58         if (ejsOpen(NULL, NULL, NULL) != 0) {
59                 fprintf(stderr, "smbscript: ejsOpen(): unable to initialise "
60                         "EJ subsystem\n");
61                 exit(127);
62         }
63
64         smb_setup_ejs_functions();
65
66         if ((eid = ejsOpenEngine(handle, 0)) == (EjsId)-1) {
67                 fprintf(stderr, "smbscript: ejsOpenEngine(): unable to "
68                         "initialise an EJS engine\n");
69                 exit(127);
70         }
71
72         smb_setup_ejs_constants(eid);
73
74         /* setup ARGV[] in the ejs environment */
75         for (i=1;argv[i];i++) {
76                 argv_list = str_list_add(argv_list, argv[i]);
77         }
78         talloc_steal(mem_ctx, argv_list);
79         mprSetVar(ejsGetGlobalObject(eid), "ARGV", mprList("ARGV", argv_list));
80
81         /* load the script and advance past interpreter line*/
82         script = file_load(fname, &script_size, mem_ctx);
83
84         if ((script_size > 2) && script[0] == '#' && script[1] == '!') {
85                 script += 2;
86                 script_size -= 2;
87                 while (script_size) {
88                         if (*script == '\r' || *script == '\n')
89                                 break;
90                         script++;
91                         script_size--;
92                 }
93         }
94
95         /* run the script */
96         if (ejsEvalScript(eid, script, &result, &emsg) == -1) {
97                 fprintf(stderr, "smbscript: ejsEvalScript(): %s\n", emsg);
98                 exit(127);
99         }
100
101         return_var = ejsGetReturnValue(eid);
102         exit_status = return_var->integer;
103
104         ejsClose();
105
106         talloc_free(mem_ctx);
107
108         return exit_status;
109 }