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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file build_cache.lua
--
-- imports
import("core.base.bytes")
import("core.base.hashset")
import("core.project.config")
import("core.project.project")
import("private.service.client_config")
import("private.service.remote_cache.client", {alias = "remote_cache_client"})
-- get exist info
function _get_existinfo()
local existinfo = _g.existinfo
if existinfo == nil then
existinfo = remote_cache_client.singleton():existinfo()
_g.existinfo = existinfo
end
return existinfo
end
-- is enabled?
function is_enabled()
local build_cache = _g.build_cache
if build_cache == nil then
if build_cache == nil and os.isfile(os.projectfile()) then
local policy = project.policy("build.ccache")
if policy ~= nil then
build_cache = policy
end
end
if build_cache == nil then
build_cache = config.get("ccache") or false
end
_g.build_cache = build_cache
end
return build_cache or false
end
-- is supported?
function is_supported(sourcekind)
local sourcekinds = _g.sourcekinds
if sourcekinds == nil then
sourcekinds = hashset.of("cc", "cxx", "mm", "mxx")
_g.sourcekinds = sourcekinds
end
return sourcekinds:has(sourcekind)
end
-- get cache key
function cachekey(program, cppfile, cppflags, envs)
local items = {program}
for _, cppflag in ipairs(cppflags) do
table.insert(items, cppflag)
end
table.sort(items)
table.insert(items, hash.xxhash128(cppfile))
if envs then
local basename = path.basename(program)
if basename == "cl" then
for _, name in ipairs({"WindowsSDKVersion", "VCToolsVersion", "LIB"}) do
local val = envs[name]
if val then
table.insert(items, val)
end
end
end
end
return hash.xxhash128(bytes(table.concat(items, "")))
end
-- get cache root directory
function rootdir()
local cachedir = config.get("ccachedir")
return cachedir or path.join(config.buildir(), ".build_cache")
end
-- clean cached files
function clean()
os.rm(rootdir())
if remote_cache_client.is_connected() then
client_config.load()
remote_cache_client.singleton():clean()
end
end
-- get hit rate
function hitrate()
local hit_count = (_g.hit_count or 0)
local total_count = (_g.total_count or 0)
if total_count > 0 then
return math.floor(hit_count * 100 / total_count)
end
return 0
end
-- dump stats
function dump_stats()
local hit_count = (_g.hit_count or 0)
local total_count = (_g.total_count or 0)
local newfiles_count = (_g.newfiles_count or 0)
local remote_hit_count = (_g.remote_hit_count or 0)
local remote_newfiles_count = (_g.remote_newfiles_count or 0)
local preprocess_error_count = (_g.preprocess_error_count or 0)
vprint("")
vprint("build cache stats:")
vprint("cache directory: %s", rootdir())
vprint("cache hit rate: %d%%", hitrate())
vprint("cache hit: %d", hit_count)
vprint("cache miss: %d", total_count - hit_count)
vprint("new cached files: %d", newfiles_count)
vprint("remote cache hit: %d", remote_hit_count)
vprint("remote new cached files: %d", remote_newfiles_count)
vprint("preprocess failed: %d", preprocess_error_count)
vprint("")
end
-- get object file
function get(cachekey)
_g.total_count = (_g.total_count or 0) + 1
local objectfile_cached = path.join(rootdir(), cachekey:sub(1, 2):lower(), cachekey)
if os.isfile(objectfile_cached) then
_g.hit_count = (_g.hit_count or 0) + 1
return objectfile_cached
elseif remote_cache_client.is_connected() and
remote_cache_client.singleton():pull(cachekey, objectfile_cached) and
os.isfile(objectfile_cached) then
_g.hit_count = (_g.hit_count or 0) + 1
_g.remote_hit_count = (_g.remote_hit_count or 0) + 1
return objectfile_cached
end
end
-- put object file
function put(cachekey, objectfile)
local objectfile_cached = path.join(rootdir(), cachekey:sub(1, 2):lower(), cachekey)
os.cp(objectfile, objectfile_cached)
_g.newfiles_count = (_g.newfiles_count or 0) + 1
if remote_cache_client.is_connected() then
-- this file does not exist in remote server? push it to server
--
-- we use the bloom filter to approximate whether it exists or not,
-- which may result in a few less files being uploaded, but that's fine.
local existinfo = _get_existinfo()
if not existinfo or not existinfo:get(cachekey) then
-- existinfo is just an initial snapshot, we need to go further and determine if the current file exists
local cacheinfo = remote_cache_client.singleton():cacheinfo(cachekey)
if not cacheinfo or not cacheinfo.exists then
_g.remote_newfiles_count = (_g.remote_newfiles_count or 0) + 1
remote_cache_client.singleton():push(cachekey, objectfile)
end
end
end
end
-- build with cache
function build(program, argv, opt)
-- do preprocess
opt = opt or {}
local preprocess = assert(opt.preprocess, "preprocessor not found!")
local compile = assert(opt.compile, "compiler not found!")
local cppinfo = preprocess(program, argv, opt)
if cppinfo then
local cachekey = cachekey(program, cppinfo.cppfile, cppinfo.cppflags, opt.envs)
local objectfile_cached = get(cachekey)
if objectfile_cached then
os.cp(objectfile_cached, cppinfo.objectfile)
else
-- do compile
compile(program, cppinfo, opt)
if cachekey then
put(cachekey, cppinfo.objectfile)
end
end
os.rm(cppinfo.cppfile)
else
_g.preprocess_error_count = (_g.preprocess_error_count or 0) + 1
end
return cppinfo
end
|