-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit_watcher.cmake
577 lines (484 loc) · 18.9 KB
/
git_watcher.cmake
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
# git_watcher.cmake
#
# This file defines the functions and targets needed to keep a
# watch on the state of the git repo. If the state changes, a
# header is reconfigured.
#
# Customization tip:
# - You should only need to edit the paths to the pre and
# post configure file. The rest should be plug-and-play.
# See below for where those variables are defined.
#
# Script design:
# - This script was designed similar to a Python application
# with a Main() function. I wanted to keep it compact to
# simplify "copy + paste" usage.
#
# - This script is made to operate in two scopes:
# 1. Configure time scope (when build files are created).
# 2. Build time scope (called via CMake -P)
# If you see something odd (e.g. the NOT DEFINED clauses),
# consider that it can run in one of two scopes.
cmake_minimum_required(VERSION 3.1)
if (DEFINED JSonParserGuard)
return()
endif()
set(JSonParserGuard yes)
macro(sbeParseJson prefix jsonString)
cmake_policy(PUSH)
set(json_string "${${jsonString}}")
string(LENGTH "${json_string}" json_jsonLen)
set(json_index 0)
set(json_AllVariables ${prefix})
set(json_ArrayNestingLevel 0)
set(json_MaxArrayNestingLevel 0)
_sbeParse(${prefix})
unset(json_index)
unset(json_AllVariables)
unset(json_jsonLen)
unset(json_string)
unset(json_value)
unset(json_inValue)
unset(json_name)
unset(json_inName)
unset(json_newPrefix)
unset(json_reservedWord)
unset(json_arrayIndex)
unset(json_char)
unset(json_end)
unset(json_ArrayNestingLevel)
foreach(json_nestingLevel RANGE ${json_MaxArrayNestingLevel})
unset(json_${json_nestingLevel}_arrayIndex)
endforeach()
unset(json_nestingLevel)
unset(json_MaxArrayNestingLevel)
cmake_policy(POP)
endmacro()
macro(sbeClearJson prefix)
foreach(json_var ${${prefix}})
unset(${json_var})
endforeach()
unset(${prefix})
unset(json_var)
endmacro()
macro(sbePrintJson prefix)
foreach(json_var ${${prefix}})
message("${json_var} = ${${json_var}}")
endforeach()
endmacro()
macro(_sbeParse prefix)
while(${json_index} LESS ${json_jsonLen})
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
if("\"" STREQUAL "${json_char}")
_sbeParseNameValue(${prefix})
elseif("{" STREQUAL "${json_char}")
_sbeMoveToNextNonEmptyCharacter()
_sbeParseObject(${prefix})
elseif("[" STREQUAL "${json_char}")
_sbeMoveToNextNonEmptyCharacter()
_sbeParseArray(${prefix})
endif()
if(${json_index} LESS ${json_jsonLen})
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
else()
break()
endif()
if ("}" STREQUAL "${json_char}" OR "]" STREQUAL "${json_char}")
break()
endif()
_sbeMoveToNextNonEmptyCharacter()
endwhile()
endmacro()
macro(_sbeParseNameValue prefix)
set(json_name "")
set(json_inName no)
while(${json_index} LESS ${json_jsonLen})
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
# check if name ends
if("\"" STREQUAL "${json_char}" AND json_inName)
set(json_inName no)
_sbeMoveToNextNonEmptyCharacter()
if(NOT ${json_index} LESS ${json_jsonLen})
break()
endif()
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
set(json_newPrefix ${prefix}.${json_name})
set(json_name "")
if(":" STREQUAL "${json_char}")
_sbeMoveToNextNonEmptyCharacter()
if(NOT ${json_index} LESS ${json_jsonLen})
break()
endif()
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
if("\"" STREQUAL "${json_char}")
_sbeParseValue(${json_newPrefix})
break()
elseif("{" STREQUAL "${json_char}")
_sbeMoveToNextNonEmptyCharacter()
_sbeParseObject(${json_newPrefix})
break()
elseif("[" STREQUAL "${json_char}")
_sbeMoveToNextNonEmptyCharacter()
_sbeParseArray(${json_newPrefix})
break()
else()
# reserved word starts
_sbeParseReservedWord(${json_newPrefix})
break()
endif()
else()
# name without value
list(APPEND ${json_AllVariables} ${json_newPrefix})
set(${json_newPrefix} "")
break()
endif()
endif()
if(json_inName)
# remove escapes
if("\\" STREQUAL "${json_char}")
math(EXPR json_index "${json_index} + 1")
if(NOT ${json_index} LESS ${json_jsonLen})
break()
endif()
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
endif()
set(json_name "${json_name}${json_char}")
endif()
# check if name starts
if("\"" STREQUAL "${json_char}" AND NOT json_inName)
set(json_inName yes)
endif()
_sbeMoveToNextNonEmptyCharacter()
endwhile()
endmacro()
macro(_sbeParseReservedWord prefix)
set(json_reservedWord "")
set(json_end no)
while(${json_index} LESS ${json_jsonLen} AND NOT json_end)
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
if("," STREQUAL "${json_char}" OR "}" STREQUAL "${json_char}" OR "]" STREQUAL "${json_char}")
set(json_end yes)
else()
set(json_reservedWord "${json_reservedWord}${json_char}")
math(EXPR json_index "${json_index} + 1")
endif()
endwhile()
list(APPEND ${json_AllVariables} ${prefix})
string(STRIP "${json_reservedWord}" json_reservedWord)
set(${prefix} ${json_reservedWord})
endmacro()
macro(_sbeParseValue prefix)
cmake_policy(SET CMP0054 NEW) # turn off implicit expansions in if statement
set(json_value "")
set(json_inValue no)
while(${json_index} LESS ${json_jsonLen})
# fast path for copying strings
if (json_inValue)
# attempt to gobble up to 128 bytes of string
string(SUBSTRING "${json_string}" ${json_index} 128 try_gobble)
# consume a piece of string we can just straight copy before encountering \ or "
string(REGEX MATCH "^[^\"\\\\]+" simple_copy "${try_gobble}")
string(CONCAT json_value "${json_value}" "${simple_copy}")
string(LENGTH "${simple_copy}" copy_length)
math(EXPR json_index "${json_index} + ${copy_length}")
endif()
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
# check if json_value ends, it is ended by "
if("\"" STREQUAL "${json_char}" AND json_inValue)
set(json_inValue no)
set(${prefix} ${json_value})
list(APPEND ${json_AllVariables} ${prefix})
_sbeMoveToNextNonEmptyCharacter()
break()
endif()
if(json_inValue)
# if " is escaped consume
if("\\" STREQUAL "${json_char}")
math(EXPR json_index "${json_index} + 1")
if(NOT ${json_index} LESS ${json_jsonLen})
break()
endif()
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
if(NOT "\"" STREQUAL "${json_char}")
# if it is not " then copy also escape character
set(json_char "\\${json_char}")
endif()
endif()
_sbeAddEscapedCharacter("${json_char}")
endif()
# check if value starts
if("\"" STREQUAL "${json_char}" AND NOT json_inValue)
set(json_inValue yes)
endif()
math(EXPR json_index "${json_index} + 1")
endwhile()
endmacro()
macro(_sbeAddEscapedCharacter char)
string(CONCAT json_value "${json_value}" "${char}")
endmacro()
macro(_sbeParseObject prefix)
_sbeParse(${prefix})
_sbeMoveToNextNonEmptyCharacter()
endmacro()
macro(_sbeParseArray prefix)
math(EXPR json_ArrayNestingLevel "${json_ArrayNestingLevel} + 1")
set(json_${json_ArrayNestingLevel}_arrayIndex 0)
set(${prefix} "")
list(APPEND ${json_AllVariables} ${prefix})
while(${json_index} LESS ${json_jsonLen})
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
if("\"" STREQUAL "${json_char}")
# simple value
list(APPEND ${prefix} ${json_${json_ArrayNestingLevel}_arrayIndex})
_sbeParseValue(${prefix}_${json_${json_ArrayNestingLevel}_arrayIndex})
elseif("{" STREQUAL "${json_char}")
# object
_sbeMoveToNextNonEmptyCharacter()
list(APPEND ${prefix} ${json_${json_ArrayNestingLevel}_arrayIndex})
_sbeParseObject(${prefix}_${json_${json_ArrayNestingLevel}_arrayIndex})
else()
list(APPEND ${prefix} ${json_${json_ArrayNestingLevel}_arrayIndex})
_sbeParseReservedWord(${prefix}_${json_${json_ArrayNestingLevel}_arrayIndex})
endif()
if(NOT ${json_index} LESS ${json_jsonLen})
break()
endif()
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
if("]" STREQUAL "${json_char}")
_sbeMoveToNextNonEmptyCharacter()
break()
elseif("," STREQUAL "${json_char}")
math(EXPR json_${json_ArrayNestingLevel}_arrayIndex "${json_${json_ArrayNestingLevel}_arrayIndex} + 1")
endif()
_sbeMoveToNextNonEmptyCharacter()
endwhile()
if(${json_MaxArrayNestingLevel} LESS ${json_ArrayNestingLevel})
set(json_MaxArrayNestingLevel ${json_ArrayNestingLevel})
endif()
math(EXPR json_ArrayNestingLevel "${json_ArrayNestingLevel} - 1")
endmacro()
macro(_sbeMoveToNextNonEmptyCharacter)
math(EXPR json_index "${json_index} + 1")
if(${json_index} LESS ${json_jsonLen})
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
while(${json_char} MATCHES "[ \t\n\r]" AND ${json_index} LESS ${json_jsonLen})
math(EXPR json_index "${json_index} + 1")
string(SUBSTRING "${json_string}" ${json_index} 1 json_char)
endwhile()
endif()
endmacro()
set(Downloaded_JS TRUE)
if(Downloaded_JS)
file(DOWNLOAD "https://api.github.com/repos/kenkit/neon/releases/latest" "${CMAKE_SOURCE_DIR}/build/project_release.json" SHOW_PROGRESS STATUS status)
file(READ "${CMAKE_SOURCE_DIR}/build/project_release.json" JSON_OUTPUT)
sbeParseJson(parsed_json JSON_OUTPUT)
if(NOT status EQUAL 0)
message(WARN "error: downloading failed
status_code: ${status_code}
status_string: ${status_string}")
set(project_version "Unknown [offline build]")
else()
set(project_version ${parsed_json.tag_name})
string(REPLACE "." ";" VERSION_LIST ${project_version})
list(GET VERSION_LIST 0 MY_PROGRAM_VERSION_MAJOR)
list(GET VERSION_LIST 1 MY_PROGRAM_VERSION_MINOR)
list(GET VERSION_LIST 2 MY_PROGRAM_VERSION_PATCH)
MATH(EXPR MY_PROGRAM_VERSION_PATCH "${MY_PROGRAM_VERSION_PATCH}+1")
message("Version major:${MY_PROGRAM_VERSION_MAJOR} minor:${MY_PROGRAM_VERSION_MINOR} patch:${MY_PROGRAM_VERSION_PATCH}")
set(project_version "${MY_PROGRAM_VERSION_MAJOR}.${MY_PROGRAM_VERSION_MINOR}.${MY_PROGRAM_VERSION_PATCH}")
message("Current build:${project_version}")
endif()
endif()
if(NOT DEFINED post_configure_file)
set(post_configure_file "${CMAKE_CURRENT_SOURCE_DIR}/include/version.h")
endif()
if(NOT DEFINED pre_configure_file)
set(pre_configure_file "${CMAKE_CURRENT_SOURCE_DIR}/version.h.in")
endif()
if(NOT EXISTS "${pre_configure_file}")
message(FATAL_ERROR "Runtime error: the ${pre_configure_file} file doesn't exist.")
endif()
# This variable describes where we record the state of the git repo.
set(git_state_file "${CMAKE_CURRENT_BINARY_DIR}/git-state")
# Function: GitStateChangedAction
# Description: this action is executed when the state of the git
# repo changes (e.g. a commit is made).
function(GitStateChangedAction)
# Read the git state file
file(STRINGS "${git_state_file}" CONTENT)
LIST(GET CONTENT 0 HELP_STRING)
LIST(GET CONTENT 1 GIT_RETRIEVED_STATE)
LIST(GET CONTENT 2 GIT_HEAD_SHA1)
LIST(GET CONTENT 3 COMMIT_AUTHOR)
LIST(GET CONTENT 4 COMMIT_MESSAGE)
LIST(GET CONTENT 5 COMMIT_DATE)
LIST(GET CONTENT 6 GIT_IS_DIRTY)
LIST(GET CONTENT 7 PROJECT_VERSION)
# Configure the file.
configure_file("${pre_configure_file}" "${post_configure_file}" @ONLY)
endfunction()
###################################################
# There be dragons below here... #
###################################################
# Function: GetGitState
# Description: gets the current state of the git repo.
# Args:
# _working_dir (in) string; the directory from which git commands will be ran.
# _hashvar (out) string; the SHA1 hash for HEAD.
# _dirty (out) boolean; whether or not there are uncommitted changes.
# _success (out) boolean; whether or not both
function(GetGitState _working_dir _hashvar _dirty _success)
# Initialize our returns.
set(${_hashvar} "GIT-NOTFOUND" PARENT_SCOPE)
set(${_dirty} "false" PARENT_SCOPE)
set(${_success} "false" PARENT_SCOPE)
# Find git.
if(NOT GIT_FOUND)
find_package(Git QUIET)
endif()
if(NOT GIT_FOUND)
return()
endif()
# Get the hash for HEAD.
execute_process(COMMAND
"${GIT_EXECUTABLE}" rev-parse --verify HEAD
WORKING_DIRECTORY "${_working_dir}"
RESULT_VARIABLE res
OUTPUT_VARIABLE hash
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT res EQUAL 0)
# The git command failed.
return()
endif()
# Record the SHA1 hash for HEAD.
set(${_hashvar} "${hash}" PARENT_SCOPE)
# Get whether or not the working tree is dirty.
execute_process(COMMAND
"${GIT_EXECUTABLE}" status --porcelain
WORKING_DIRECTORY "${_working_dir}"
RESULT_VARIABLE res
OUTPUT_VARIABLE out
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT res EQUAL 0)
# The git command failed.
return()
endif()
# If there were uncommitted changes, mark it as dirty.
if (NOT "${out}" STREQUAL "")
set(${_dirty} "true" PARENT_SCOPE)
else()
set(${_dirty} "false" PARENT_SCOPE)
endif()
# We got this far, so git must have cooperated.
set(${_success} "true" PARENT_SCOPE)
endfunction()
# Function: GetGitStateSimple
# Description: gets the current state of the git repo and represent it with a string.
# Args:
# _working_dir (in) string; the directory from which git commands will be ran.
# _state (out) string; describes the current state of the repo.
function(GetGitStateSimple _working_dir _state)
# Get the current state of the repo where the current list resides.
GetGitState("${_working_dir}" hash dirty success)
# We're going to construct a variable that represents the state of the repo.
execute_process(COMMAND
"${GIT_EXECUTABLE}" log --format=%ci -n1
WORKING_DIRECTORY "${_working_dir}"
RESULT_VARIABLE res
OUTPUT_VARIABLE commit_date
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT res EQUAL 0)
message("Failed to get commit date")
return()
endif()
execute_process(COMMAND
"${GIT_EXECUTABLE}" log --format=%B -n1
WORKING_DIRECTORY "${_working_dir}"
RESULT_VARIABLE res
OUTPUT_VARIABLE commit_message
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT res EQUAL 0)
message("Failed to get commit message")
return()
endif()
execute_process(COMMAND
"${GIT_EXECUTABLE}" log --format=%an -n1
WORKING_DIRECTORY "${_working_dir}"
RESULT_VARIABLE res
OUTPUT_VARIABLE commit_author
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT res EQUAL 0)
message("Failed to get commit author")
return()
endif()
set(help_string "\
This is a git state file. \
The next three lines are a success code, SHA1 hash, \
and whether or not there were uncommitted changes.")
set(${_state} "${help_string}\n${success}\n${hash}\n${commit_author}\n${commit_message}\n${commit_date}\n${dirty}\n${project_version}" PARENT_SCOPE)
endfunction()
# Function: MonitorGit
# Description: this function sets up custom commands that make the build system
# check the state of git before every build. If the state has
# changed, then a file is configured.
function(MonitorGit)
add_custom_target(AlwaysCheckGit
DEPENDS ${pre_configure_file}
BYPRODUCTS ${post_configure_file}
COMMAND
${CMAKE_COMMAND}
-DGIT_FUNCTION=DoMonitoring
-DGIT_WORKING_DIR=${CMAKE_CURRENT_SOURCE_DIR}
-Dpre_configure_file=${pre_configure_file}
-Dpost_configure_file=${post_configure_file}
-P "${CMAKE_CURRENT_LIST_FILE}")
endfunction()
# Function: CheckGit
# Description: check if the git repo has changed. If so, update the state file.
# Args:
# _working_dir (in) string; the directory from which git commands will be ran.
# _state_changed (out) bool; whether or no the state of the repo has changed.
function(CheckGit _working_dir _state_changed)
# Get the state of the repo where the current list resides.
GetGitStateSimple(${_working_dir} current_state)
# Check if the state has changed compared to the backup.
if(EXISTS "${git_state_file}")
file(READ "${git_state_file}" OLD_HEAD_CONTENTS)
if(OLD_HEAD_CONTENTS STREQUAL current_state)
set(${_state_changed} "false" PARENT_SCOPE)
return()
endif()
endif()
# The state has changed.
# We need to update the state file.
file(WRITE "${git_state_file}" "${current_state}")
set(${_state_changed} "true" PARENT_SCOPE)
endfunction()
# Function: Main
# Description: primary entry-point to the script. Functions are selected based
# on the GIT_FUNCTION variable.
function(Main)
if(GIT_FUNCTION STREQUAL DoMonitoring)
# Check if the repo has changed.
# If so, run the change action.
CheckGit("${GIT_WORKING_DIR}" changed)
if(changed)
message(STATUS "xxxxxxxx|Checking git... changed!|xxxxxxxx")
GitStateChangedAction()
else()
message(STATUS "xxxxxxxx|Checking git... no change.|xxxxxxxx")
endif()
else()
# Start monitoring git.
# This should only ever be run once when the module is imported.
# Behind the scenes, all this does is setup a custom target.
MonitorGit()
endif()
endfunction()
# And off we go...
Main()