-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
save_modif.hac
156 lines (137 loc) · 4.52 KB
/
save_modif.hac
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
-- Local backup Ada shell script for a version-controlled repository.
--
-- This HAC script detects changes between two commits and
-- saves the repository's modified files into a Zip-ball.
--
-- #!/usr/bin/env hac
-- A "shebang" for Unix/Linux, such as "#!/usr/bin/env hac" can be
-- added on the top line of this file.
-- HAC will ignore it, but GNAT won't like it (that's normal).
--
-- This is a HAC script *and* an Ada program.
-- How to run it is your choice.
--
-- Usage with the HAC command-line tool :
--
-- hac save_modif.hac
--
-- The HAC (HAC Ada Compiler) command-line tool can be found @
-- https://hacadacompiler.sourceforge.io/ ,
-- https://github.com/zertovitch/hac
-- This program works both with HAC (command: hac save.hac)
-- and a full Ada compiler like GNAT, and that on different
-- Operating Systems: Linux and Windows at least.
--
-- The extension for the main procedure is a free choice.
-- We choose ".hac" so we can associate the ".hac" files by
-- default with hac.exe on Windows, for Explorer *and* command-line!
-- Explorer: double-click / hit Return on "save_modif.hac".
-- Cmd / PowerShell: type "save_modif.hac" and hit Return.
with HAT;
procedure Save_Modif is
use HAT;
function Nice_Date (with_intraday : Boolean) return VString is
t1 : constant Time := Clock;
day_secs, day_mins : Integer;
just_day : VString;
--
function Two_Digits (x : Integer) return VString is
begin
if x < 10 then
return "0" & Image (x);
else
return Image (x);
end if;
end Two_Digits;
--
begin
day_secs := Integer (Seconds (t1));
day_mins := day_secs / 60;
just_day := +"" & -- VString concatenation
Year (t1) & '-' &
Two_Digits (Month (t1)) & '-' &
Two_Digits (Day (t1));
if with_intraday then
return just_day & "--" &
Two_Digits (day_mins / 60) & '-' &
Two_Digits (day_mins mod 60) & '-' &
Two_Digits (day_secs mod 60);
else
return just_day;
end if;
end Nice_Date;
line, nd, root, mod_zip, files : VString;
f : File_Type;
log_name : constant VString := +"modif.log";
sep : constant Character := Directory_Separator;
type VCS_Type is (None, Git, Mercurial, Subversion);
function Detect_VCS return VCS_Type is
begin
if Directory_Exists (".git") then
return Git;
elsif Directory_Exists (".hg") then
return Mercurial;
elsif Directory_Exists (".svn") then
return Subversion;
end if;
return None;
end Detect_VCS;
function Abbreviation (vcs : VCS_Type) return VString is
begin
case vcs is
when Git => return +"git";
when Mercurial => return +"hg";
when Subversion => return +"svn";
when None => return +"";
end case;
end Abbreviation;
vcs : constant VCS_Type := Detect_VCS;
col_name : Integer;
add_line : Boolean;
begin
Put_Line ("Save date: " & Nice_Date (True));
Put_Line ("Version Control System: " & VCS_Type'Image (vcs));
Put_Line ("-----");
root := Tail_After_Match (Current_Directory, sep);
files := root & sep & log_name;
case vcs is
when Git => Shell_Execute (+"git status -s -uno >" & log_name); col_name := 4;
when Mercurial => Shell_Execute (+"hg status >" & log_name); col_name := 3;
when Subversion => Shell_Execute (+"svn status -q >" & log_name); col_name := 9;
when None => return;
end case;
Open (f, log_name);
while not End_Of_File (f) loop
Get_Line (f, line);
if Length (line) > 3 then
add_line := False;
for col_tag in 1 .. 2 loop -- Git tags are on two columns
case Element (line, col_tag) is
when ' ' | 'D' | 'R' | '!' | '?' =>
-- Ignore extra lines, or missing items, or items to be Deleted / Removed
null;
when others =>
add_line := True;
end case;
end loop;
if add_line then
line := root & sep & Slice (line, col_name, Length (line));
Put_Line (line);
files := files & ' ' & line;
end if;
end if;
end loop;
Close (f);
Put_Line ("-----");
New_Line;
-- Shell_Execute ("echo . >>" & log_name);
-- Shell_Execute ("echo --- SVN Info --- >>" & log_name);
-- Shell_Execute ("svn info >>" & log_name);
nd := Nice_Date (True);
mod_zip := root & sep & root & "-modif-" & Abbreviation (vcs) & '-' & nd & ".zip";
Set_Directory ("..");
Shell_Execute ("zipada -ep2 " & mod_zip & ' ' & files);
Set_Directory (root);
Put ("Press Return ");
Skip_Line;
end Save_Modif;