File: Os.hx

package info (click to toggle)
haxe 1%3A3.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 29,888 kB
  • sloc: ml: 106,129; ansic: 1,978; makefile: 609; cpp: 357; java: 349; cs: 323; python: 250; sh: 75; objc: 64; xml: 29
file content (127 lines) | stat: -rw-r--r-- 3,504 bytes parent folder | download
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
package lua;

/**
	Operating System Facilities.
**/
@:native("_G.os")
extern class Os {
	/**
		Returns an approximation of the amount in seconds of CPU time used by the
		program.
	**/
	public static function clock() : Float;

	@:overload(   function     (format : String, time : Time) : DateType {})
	@:overload(   function     (format : String) : DateType {})
	public static function date() : DateType;

	/**
		Returns the number of seconds from time `t1` to time `t2`. 
		In POSIX, Windows, and some other systems, this value is exactly `t2-t1`.
	**/
	public static function difftime(t2: Time, t1: Time) : Float;

	// TODO: multi-return
	/**
		This function is equivalent to the C function system. It passes command to 
		be executed by an operating system shell. It returns a status code,
		which is system-dependent. If command is absent, then it returns 
		nonzero if a shell is available and zero otherwise.
	**/
#if (lua_ver < 5.2)
	public static function execute(?command:String) : Int;
#elseif (lua_ver >= 5.2)
	public static function execute(?command:String) : OsExecute;
#else 
	public static function execute(?command:String) : Dynamic;
#end

	/**
		Calls the C function exit, with an optional code, to terminate the host program. 
		The default value for code is the success code.
	**/
	public static function exit(code: Int) : Int;

	/**
		Returns the value of the process environment variable `varname`, or `null` 
		if the variable is not defined.
	**/
	public static function getenv(varname : String) : String;

	/**
		Deletes the file or directory with the given name.
		Directories must be empty to be removed. 
	**/
	public static function remove(filename : String) : OsSuccess;

	/**
		Renames file or directory named `oldname` to `newname`.
	**/
	public static function rename(oldname : String, newname : String) : OsSuccess;

	/**
		Sets the current locale of the program.
	**/
	public static function setlocale(locale : String, ?category : LocaleCategory ) : String;

	/**
		Returns the current time when called without arguments, or a time 
		representing the date and time specified by the given table. 

		The returned value is a number, whose meaning depends on your system. 
		In POSIX, Windows, and some other systems, this number counts the number 
		of seconds since some given start time (the "epoch"). 
		In other systems, the meaning is not specified, and the number returned
		by time can be used only as an argument to date and difftime.
	**/
	public static function time(?arg : TimeParam) : Time;

	/**
		Returns a string with a file name that can be used for a temporary file. 
		The file must be explicitly opened before its use and explicitly removed
		when no longer needed.
		
		When possible, you may prefer to use `Io.tmpfile`, which automatically 
		removes the file when the program ends.
	**/
	public static function tmpname() : String;
}

/**
	A typedef that matches the date parameter `Os.time()` will accept.
**/
typedef TimeParam = {
	year   : Float,
	month  : Float,
	day    : Float,
	?hour  : Int,
	?min   : Int,
	?sec   : Int,
	?isdst : Bool
}

/**
	A typedef that describes the output of `Os.date()`.
**/
typedef DateType = {
	hour  : Int,
	min   : Int,
	sec   : Int,
	isdst : Bool,
	year  : Int,
	month : Int,
	wday  : Int,
	yday  : Int,
	day   : Int,
}

@:multiReturn extern class OsExecute {
	var success : Bool;
	var output  : String;
	var status  : Int;
}

@:multiReturn extern class OsSuccess {
	var success : Bool;
	var message : String;
}