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
  
#! /usr/bin/env pike 
 
mapping(string:program) hooks = ([ 
  "pre-commit" : PreCommitHook, 
]); 
 
mapping(string:program) filters = ([ 
  "nice_ident" : NiceIdentFilter, 
]); 
 
 
 
constant filterops = ({ "clean", "smudge" }); 
 
void fail(string msg, mixed ... args) 
{ 
  werror(msg, @args); 
  exit(1); 
} 
 
void iofailn(int errno, string msg, mixed ... args) 
{ 
  fail(msg+": %s\n", @args, strerror(errno)); 
} 
 
void iofail(string msg, mixed ... args) 
{ 
  iofailn(errno(), msg, @args); 
} 
 
array(string) split_z(string data) 
{ 
  array(string) a = data / "\0"; 
  if (sizeof(a) && a[-1] == "") 
    a = a[..sizeof(a)-2]; 
  return a; 
} 
 
string run_git_ex(int max_exitcode, string ... args) 
{ 
  mapping res = Process.run(({"git"})+args); 
  if (res->exitcode > max_exitcode) { 
    werror(res->stderr); 
    fail("git exited with code %d\n", res->exitcode); 
  } 
  return res->stdout; 
} 
 
string run_git(string ... args) 
{ 
  return run_git_ex(0, @args); 
} 
 
/* Hooks */ 
 
/* Checks run before editing a commit message */ 
 
class PreCommitHook 
{ 
  int check_attributes_staged() 
  { 
    // We don't allow .gitattributes to differ between wt and index, 
    // because that could mean the committed stuff ends up with different 
    // attributes than they have right now... 
 
    if (sizeof(run_git("diff", "--name-only", ".gitattributes"))) { 
      write("You have unstaged changes to .gitattributes.\n" 
            "Please add or stash them before commit.\n"); 
      return 1; 
    } 
  } 
 
  int check_blocker_attributes(array(string) files_to_commit) 
  { 
    constant attrs_to_check = ({ "foreign_ident",  "block_commit" }); 
    foreach(run_git("check-attr", @attrs_to_check, 
                    "--", @files_to_commit) / "\n" - ({""}), 
            string line) { 
      array(string) parts = line / ": "; 
      if (sizeof(parts) != 3) 
        fail("Unexpected output from git check-attr, please fix check_blocker_attributes()\n"); 
      [string filename, string attribute, string value] = parts; 
      if (value != "unspecified") { 
        switch (attribute) { 
        case "foreign_ident": 
          write("File %s has the foreign_ident attribute.  Please remove it before commit.\n", filename); 
          return 1; 
        case "block_commit": 
          write("File %s is blocked from committing: %s\n", filename, 
                replace(value, "-", " ")); 
          return 1; 
        } 
      } 
    } 
    return 0; 
  } 
 
  int hook() 
  { 
    array(string) files_to_commit = 
      split_z(run_git("diff", "--staged", "--name-only", "-z")); 
    return 
      check_attributes_staged() || 
      check_blocker_attributes(files_to_commit); 
  } 
} 
 
/* Filters */ 
 
/* A sample filter, not really useful... */ 
 
class NiceIdentFilter 
{ 
  static string replace_id(string f, function(string:string) replace) { 
    int p=0; 
    while((p=search(f, "$Id", p)) >= 0) { 
      int p2 = search(f, "$", p+3), p3 = search(f, "\n", p+3); 
      if (p2 > p && p2 < p3) { 
        string r = replace(f[p..p2]); 
        if (r) { 
          // werror("Replacing %O with %O\n", f[p..p2], r); 
          f = f[..p-1]+r+f[p2+1..]; 
          p += sizeof(r); 
        } else { 
          // werror("Not replacing %O\n", f[p..p2]); 
          p = p2+1; 
        } 
      } else p += 3; 
    } 
    return f; 
  } 
 
  static string clean_ident(string i) 
  { 
    if(has_prefix(i, "$Id:") && sizeof(i/" ")==13) 
      return "$Id$"; 
  } 
  
  static string smudge_ident(string i) 
  { 
    return "$Id$"; 
  } 
 
  int clean() 
  { 
    write(replace_id(Stdio.stdin->read(), clean_ident)); 
    return 0; 
  } 
 
  int smudge() 
  { 
    write(replace_id(Stdio.stdin->read(), smudge_ident)); 
    return 0; 
  } 
} 
 
/* Main helper */ 
 
class GitHelper 
{ 
  void setup_hooks() 
  { 
    constant hooksdir = "hooks"; 
    if (!sizeof(hooks)) 
      return; 
    if (!file_stat(hooksdir)) { 
      write("Creating the hooks directory\n"); 
      if (!mkdir(hooksdir)) 
        iofail("Failed to create %s", hooksdir); 
    } 
    foreach (hooks; string name; ) { 
      string path = combine_path(hooksdir, name); 
      Stdio.Stat s = file_stat(path, 1); 
      if (!s) { 
        write("Installing %s\n", path); 
        System.symlink(__FILE__, path); 
      } else if (s->islnk) { 
        /* Already setup ok, it seems */ 
      } else { 
        write("Hook %s already exists, so won't overwrite it...\n", name); 
      } 
    } 
  } 
 
  void setup_filter(string name, string op) 
  { 
    string confname = "filter."+name+"."+op; 
    string old = String.trim_all_whites(run_git_ex(1, "config", "--get", confname)); 
    string cmd = __FILE__+" filter_"+name+"_"+op; 
    if (old == "") { 
      write("Installing filter operation %s\n", confname); 
      run_git("config", confname, cmd); 
    } else if(old == cmd) { 
      /* Already has correct value */ 
    } else { 
      write("Filter operation %s is already set to %s, not modifying\n", 
            confname, old); 
    } 
  } 
 
  void setup_filters() 
  { 
    foreach (filters; string name; program fprog) { 
      object filter = fprog(); 
      foreach (filterops; ; string op) 
        if (filter[op]) 
          setup_filter(name, op); 
    } 
  } 
 
  int setup(array(string) args) 
  { 
    if (sizeof(args)) { 
      werror("githelper.pike should be invoked without arguments...\n"); 
      return 1; 
    } 
    if (!cd(String.trim_all_whites(run_git("rev-parse", "--git-dir")))) 
      iofail("Failed to cd to .git directory"); 
    setup_hooks(); 
    setup_filters(); 
    return 0; 
  } 
} 
 
string get_filter_op(string arg) 
{ 
  if (!has_prefix(arg, "filter_")) 
    return 0; 
  foreach (filterops; ; string op) 
    if (has_suffix(arg, "_"+op)) 
      return op; 
  return 0; 
} 
 
int main(int argc, array(string) argv) 
{ 
  string command_name = basename(argv[0]); 
  if (hooks[command_name]) 
    return hooks[command_name]()->hook(@argv[1..]); 
  else if (command_name == "githelper.pike") { 
    string fop; 
    if (argc>1 && (fop = get_filter_op(argv[1]))) { 
      string filter = argv[1][7..sizeof(argv[1])-(sizeof(fop)+2)]; 
      if (filters[filter]) { 
        object f = filters[filter](); 
        if (!f[fop]) { 
          werror("Filter %s does not implement %s!\n", filter, fop); 
          return 1; 
        } else 
          return f[fop](@argv[2..]); 
      } else { 
        werror("Unknown filter %s!\n", filter); 
        return 1; 
      } 
    } else 
      return GitHelper()->setup(argv[1..]); 
  } else { 
    werror("Unknown invocation method %s!\n", command_name); 
    return 1; 
  } 
}