forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsystem.mlc
More file actions
162 lines (127 loc) · 4.19 KB
/
system.mlc
File metadata and controls
162 lines (127 loc) · 4.19 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
Copyright (C) 2015 Runtime Revolution Ltd.
This file is part of LiveCode.
LiveCode is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License v3 as published by the Free
Software Foundation.
LiveCode 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 LiveCode. If not see <http://www.gnu.org/licenses/>. */
/*
This library provides low-level system functionality for modular
LiveCode programs.
*/
module com.livecode.system
use com.livecode.foreign
----------------------------------------------------------------
-- Platform identification
----------------------------------------------------------------
public foreign handler MCSystemExecGetOperatingSystem(out Platform as String) returns nothing binds to "<builtin>"
/*
Summary: The operating system
Example:
if the operating system is "linux" then
- Platform specific-code
end if
Description:
Returns a string describing the operating system that LiveCode is
running on. The possible values are:
* "windows" - 32-bit and 64-bit Windows
* "mac" - Desktop OS X
* "ios" - iOS (iPhone and iPad)
* "android" - Android Linux devices
* "linux" - All other Linux platforms
Tags: System
*/
syntax OperatingSystem is expression
"the" "operating" "system"
begin
MCSystemExecGetOperatingSystem(output)
end syntax
----------------------------------------------------------------
-- Exit / Quit
----------------------------------------------------------------
foreign handler __exit(in ExitStatus as CInt) returns nothing binds to "exit"
public handler MCSystemExecQuit() returns nothing
__exit(0)
end handler
public handler MCSystemExecQuitWithStatus(in Status as Number)
__exit(Status)
end handler
/*
Summary: Quit the application
Example:
-- Quit, indicating that the application ran successfully (code 0)
quit
-- Quit, with a specific error code
quit with status 42
Description:
Exit the program immediately and unconditionally, returning a status
number to the operating system. If no status is provided, the default
value of 0 is used.
Tags: System
*/
syntax QuitWithStatus is statement
"quit" [ "with" "status" <Status: Expression> ]
begin
MCSystemExecQuit()
MCSystemExecQuitWithStatus(Status)
end syntax
----------------------------------------------------------------
-- Command-line information
----------------------------------------------------------------
public foreign handler MCSystemExecGetCommandName (out CommandName as String) returns nothing binds to "<builtin>"
public foreign handler MCSystemExecGetCommandArguments (out CommandArguments as List) returns nothing binds to "<builtin>"
/*
Summary: The command name
Example:
-- Program that only succeeds if it's run as the "true"
-- command.
variable tCommand as String
put the command name into tCommand
if tCommand ends with "true" then
quit with status 0
else
quit with status 1
end if
Description:
Evaluates to the name that was used to execute the program, possibly
including path information.
*/
syntax CommandName is expression
"the" "command" "name"
begin
MCSystemExecGetCommandName(output)
end syntax
/*
Summary: The command arguments
Example:
-- Program that only succeeds if it's run as the "true"
-- command.
variable tCommand as String
put the command name into tCommand
if tCommand ends with "true" then
quit with status 0
else
quit with status 1
end if
Description:
Evaluates to a list of command-line arguments passed to the program.
Some arguments may not be passed in if they are "used up" by the
LiveCode run-time environment (for example, the LiveCode IDE will
detect and "use" the `-mmap` argument).
> **Note:** No filename conversion is performed on command line
> arguments, so some processing may be required before using a command
> line argument with any of the file handling syntax provided by the
> `com.livecode.file` module.
*/
syntax CommandArguments is expression
"the" "command" "arguments"
begin
MCSystemExecGetCommandArguments(output)
end syntax
--
end module