summaryrefslogtreecommitdiff
path: root/usr/gri/pretty/platform.go
blob: 6e96b4ada1435972b4e3c94343dc7fe94e7b2e7a (plain)
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
// Copyright 2009 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package Platform

import Utils "utils"


// ----------------------------------------------------------------------------
// Environment

export var
	GOARCH,
	GOOS,
	GOROOT,
	USER string;


func GetEnv(key string) string {
	n := len(key);
	for i := 0; i < sys.envc(); i++ {
		v := sys.envv(i);
		if n < len(v) && v[0 : n] == key && v[n] == '=' {
			return v[n + 1 : len(v)];  // +1: trim "="
		}
	}
	return "";
}


func init() {
	GOARCH = GetEnv("GOARCH");
	GOOS = GetEnv("GOOS");
	GOROOT = GetEnv("GOROOT");
	USER = GetEnv("USER");
}


// ----------------------------------------------------------------------------
// I/O

export const (
	MAGIC_obj_file = "@gri-go.7@v0";  // make it clear thar it cannot be a source file
	src_file_ext = ".go";
	obj_file_ext = ".7";
)


export func ReadObjectFile(filename string) (data string, ok bool) {
	data, ok = sys.readfile(filename + obj_file_ext);
	magic := MAGIC_obj_file;  // TODO remove once len(constant) works
	if ok && len(data) >= len(magic) && data[0 : len(magic)] == magic {
		return data, ok;
	}
	return "", false;
}


export func ReadSourceFile(name string) (data string, ok bool) {
	name = Utils.TrimExt(name, src_file_ext) + src_file_ext;
	data, ok = sys.readfile(name);
	return data, ok;
}


export func WriteObjectFile(name string, data string) bool {
	name = Utils.TrimExt(Utils.BaseName(name), src_file_ext) + obj_file_ext;
	return sys.writefile(name, data);
}