gitv 0.1.0

A git repos analyzing and visualizing tool built in Rust.
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
use crate::{config::Repository, gitimp::*, AuthorMapping, CreateAction, Database, GitImpl};
use anyhow::Result;
use async_trait::async_trait;
use serde::Serialize;
use std::{
    fs::File,
    path::Path,
    sync::{Arc, Mutex},
};
use tokio::{
    sync::{self, mpsc::Sender},
    task::JoinHandle,
    time,
};

#[derive(Debug, Serialize, Clone)]
pub enum RecordType {
    Commit(RecordCommit),
    Change(RecordChange),
    Tag(RecordTag),
    Snapshot(RecordSnapshot),
    Active(RecordActive),
}

#[derive(Debug, Default, Serialize, Clone)]
pub struct RecordCommit {
    pub repo_name: String,
    pub hash: String,
    pub branch: String,
    pub datetime: String,
    pub author_name: String,
    pub author_email: String,
    pub author_domain: String,
}

impl RecordCommit {
    pub fn name() -> String {
        String::from("commit")
    }
}

#[derive(Debug, Default, Serialize, Clone)]
pub struct RecordChange {
    pub repo_name: String,
    pub hash: String,
    pub branch: String,
    pub datetime: String,
    pub author_name: String,
    pub author_email: String,
    pub author_domain: String,
    pub ext: String,
    pub insertion: usize,
    pub deletion: usize,
}

impl RecordChange {
    pub fn name() -> String {
        String::from("change")
    }
}

#[derive(Debug, Default, Serialize, Clone)]
pub struct RecordTag {
    pub repo_name: String,
    pub branch: String,
    pub datetime: String,
    pub tag: String,
}

impl RecordTag {
    pub fn name() -> String {
        String::from("tag")
    }
}

#[derive(Debug, Default, Serialize, Clone)]
pub struct RecordSnapshot {
    pub repo_name: String,
    pub branch: String,
    pub datetime: String,
    pub ext: String,
    pub code: usize,
    pub comments: usize,
    pub blanks: usize,
}

impl RecordSnapshot {
    pub fn name() -> String {
        String::from("snapshot")
    }
}

#[derive(Debug, Default, Serialize, Clone)]
pub struct RecordActive {
    pub repo_name: String,
    pub forks: usize,
    pub stars: usize,
}

impl RecordActive {
    pub fn name() -> String {
        String::from("active")
    }
}

/// 定义 Record 序列化接口
#[async_trait]
pub trait RecordSerializer {
    async fn serialize(config: CreateAction) -> Result<()>;
}

const BUFFER_SIZE: usize = 1000;

/// Csv 序列化实现
#[derive(Debug)]
pub struct CsvSerializer;

impl CsvSerializer {
    async fn send_commit_records(
        tx: &Sender<RecordType>,
        repo: &Repository,
        commits: Vec<Commit>,
    ) -> Result<()> {
        for commit in commits {
            let record = RecordCommit {
                repo_name: repo.name.clone(),
                hash: commit.hash.clone(),
                branch: repo.branch.clone().unwrap_or_default(),
                datetime: commit.datetime.to_rfc339(),
                author_name: commit.author.name.clone(),
                author_email: commit.author.email.clone(),
                author_domain: commit.author.domain(),
            };
            if tx.send(RecordType::Commit(record)).await.is_err() {
                return Ok(());
            };

            for fc in commit.changes {
                let record = RecordChange {
                    repo_name: repo.name.clone(),
                    hash: commit.hash.clone(),
                    branch: repo.branch.clone().unwrap_or_default(),
                    datetime: commit.datetime.to_rfc339(),
                    author_name: commit.author.name.clone(),
                    author_email: commit.author.email.clone(),
                    author_domain: commit.author.domain(),
                    ext: fc.ext,
                    insertion: fc.insertion,
                    deletion: fc.deletion,
                };
                if tx.send(RecordType::Change(record)).await.is_err() {
                    return Ok(());
                };
            }
        }
        Ok(())
    }

    async fn serialize_commits_sectional(
        tx: Sender<RecordType>,
        repo: &Repository,
        author_mappings: Vec<AuthorMapping>,
        hashs: Vec<String>,
    ) -> Result<()> {
        let concurrency = num_cpus::get();

        let mut txs = vec![];
        let mut rxs = vec![];
        for _ in 0..concurrency {
            let ch = sync::mpsc::channel::<String>(BUFFER_SIZE);
            txs.push(ch.0);
            rxs.push(ch.1);
        }

        let mut handles = vec![];
        for _ in 0..concurrency {
            let repo = repo.clone();
            let mappings = author_mappings.clone();
            let tx = tx.clone();
            let mut lines_rx = rxs.remove(0);

            let handle: JoinHandle<Result<(), anyhow::Error>> = tokio::spawn(async move {
                while let Some(hash) = lines_rx.recv().await {
                    let commits = GitImpl::commits(&repo, &mappings, &hash)?;
                    Self::send_commit_records(&tx, &repo, commits).await?;
                }
                Ok(())
            });
            handles.push(handle);
        }

        for (idx, hash) in hashs.into_iter().enumerate() {
            txs[idx % concurrency].send(hash).await?;
        }

        for tx in txs.into_iter().take(concurrency) {
            drop(tx);
        }

        for handle in handles {
            handle.await??;
        }
        Ok(())
    }

    async fn serialize_commits(
        tx: Sender<RecordType>,
        repo: &Repository,
        author_mappings: Vec<AuthorMapping>,
    ) -> Result<()> {
        const MAX_COMMITS: usize = 10000;
        let hashs = GitImpl::commits_hash(repo)?;
        if hashs.len() > MAX_COMMITS {
            Self::serialize_commits_sectional(tx, repo, author_mappings, hashs).await?
        } else {
            let commits = GitImpl::commits(repo, &author_mappings, "")?;
            Self::send_commit_records(&tx, repo, commits).await?;
        }
        Ok(())
    }

    async fn serialize_tags(
        tx: Sender<RecordType>,
        repo: &Repository,
        author_mappings: Vec<AuthorMapping>,
    ) -> Result<()> {
        for tag in GitImpl::tags(repo, author_mappings)? {
            let record = RecordTag {
                repo_name: repo.name.clone(),
                datetime: tag.datetime.to_rfc339(),
                tag: tag.tag,
                branch: repo.branch.clone().unwrap_or_default(),
            };
            if tx.send(RecordType::Tag(record)).await.is_err() {
                return Ok(());
            }
        }
        Ok(())
    }

    async fn serialize_snapshot(tx: Sender<RecordType>, repo: &Repository) -> Result<()> {
        let snapshot = GitImpl::snapshot(repo)?;
        for stat in snapshot.stats {
            let record = RecordSnapshot {
                repo_name: repo.name.clone(),
                branch: repo.branch.clone().unwrap_or_default(),
                datetime: snapshot.datetime.to_rfc339(),
                ext: stat.ext,
                code: stat.code,
                comments: stat.comments,
                blanks: stat.blanks,
            };
            if tx.send(RecordType::Snapshot(record)).await.is_err() {
                return Ok(());
            }
        }
        Ok(())
    }

    async fn serialize_active(tx: Sender<RecordType>, repo: &Repository) -> Result<()> {
        let record = RecordActive {
            repo_name: repo.name.clone(),
            forks: repo.forks_count.unwrap_or_default(),
            stars: repo.stargazers_count.unwrap_or_default(),
        };
        if tx.send(RecordType::Active(record)).await.is_err() {
            return Ok(());
        }
        Ok(())
    }

    async fn analyze_repo(
        tx: Sender<RecordType>,
        repo: &Repository,
        author_mappings: Vec<AuthorMapping>,
    ) -> Result<()> {
        let mut handles: Vec<JoinHandle<Result<(), anyhow::Error>>> = vec![];
        for i in 0..4usize {
            let repo = repo.clone();
            let tx = tx.clone();
            let mappings = author_mappings.clone();
            match i {
                0 => {
                    handles.push(tokio::spawn(async move {
                        Self::serialize_commits(tx.clone(), &repo, mappings).await
                    }));
                }
                1 => {
                    handles.push(tokio::spawn(async move {
                        Self::serialize_snapshot(tx.clone(), &repo).await
                    }));
                }
                2 => {
                    handles.push(tokio::spawn(async move {
                        Self::serialize_tags(tx.clone(), &repo, mappings).await
                    }));
                }
                3 => {
                    handles.push(tokio::spawn(async move {
                        Self::serialize_active(tx.clone(), &repo).await
                    }));
                }
                _ => unreachable!(),
            }
        }
        for handle in handles {
            handle.await??;
        }
        Ok(())
    }

    async fn serialize_records(
        database: Database,
        author_mappings: Vec<AuthorMapping>,
        disable_pull: bool,
    ) -> Result<()> {
        let repos = database.load()?;
        let total = repos.len();

        let (tx, mut rx) = sync::mpsc::channel::<RecordType>(BUFFER_SIZE);
        let mutex = Arc::new(Mutex::new(0));
        let mut handles: Vec<JoinHandle<Result<(), anyhow::Error>>> = vec![];

        GitImpl::clone_or_pull(repos.clone(), disable_pull).await?;
        for repo in repos {
            let repo = repo.clone();
            let mappings = author_mappings.clone();
            let tx = tx.clone();
            let mutex = mutex.clone();

            let handle = tokio::spawn(async move {
                let now = time::Instant::now();
                GitImpl::checkout(&repo)?;
                Self::analyze_repo(tx.clone(), &repo, mappings).await?;

                let mut lock = mutex.lock().unwrap();
                *lock += 1;
                let n = lock;
                println!(
                    "[{}/{}] git analyze '{}' => elapsed {:#?}",
                    n,
                    total,
                    repo.name,
                    now.elapsed(),
                );
                Ok(())
            });
            handles.push(handle)
        }

        let rev: JoinHandle<Result<(), anyhow::Error>> = tokio::spawn(async move {
            let dir = &database.dir;
            let mut commit_wtr = CsvWriter::try_new(dir, RecordCommit::name())?;
            let mut change_wtr = CsvWriter::try_new(dir, RecordChange::name())?;
            let mut tag_wtr = CsvWriter::try_new(dir, RecordTag::name())?;
            let mut snapshot_wtr = CsvWriter::try_new(dir, RecordSnapshot::name())?;
            let mut active_wtr = CsvWriter::try_new(dir, RecordActive::name())?;

            while let Some(record) = rx.recv().await {
                match record {
                    RecordType::Commit(commit) => commit_wtr.write(commit)?,
                    RecordType::Change(change) => change_wtr.write(change)?,
                    RecordType::Tag(tag) => tag_wtr.write(tag)?,
                    RecordType::Snapshot(snapshot) => snapshot_wtr.write(snapshot)?,
                    RecordType::Active(active) => active_wtr.write(active)?,
                }
            }

            commit_wtr.flush()?;
            change_wtr.flush()?;
            tag_wtr.flush()?;
            snapshot_wtr.flush()?;
            active_wtr.flush()?;
            Ok(())
        });

        for handle in handles {
            handle.await??;
        }
        drop(tx);

        rev.await??;
        Ok(())
    }
}

struct CsvWriter {
    wtr: csv::Writer<File>,
    size: usize,
    curr: usize,
}

const FLUSH_SIZE: usize = 500;

impl CsvWriter {
    fn try_new(dir: &str, name: String) -> Result<CsvWriter> {
        Ok(Self {
            wtr: csv::Writer::from_path(Path::new(dir).join(format!("{}.csv", name)))?,
            size: FLUSH_SIZE,
            curr: 0,
        })
    }

    fn write<T: Serialize>(&mut self, record: T) -> Result<()> {
        self.curr += 1;
        self.wtr.serialize(record)?;
        if self.curr >= self.size {
            self.flush()?;
            self.curr = 0;
        }
        Ok(())
    }

    fn flush(&mut self) -> Result<()> {
        self.wtr.flush()?;
        Ok(())
    }
}

#[async_trait]
impl RecordSerializer for CsvSerializer {
    async fn serialize(config: CreateAction) -> Result<()> {
        let mut handles = vec![];
        let disable_pull = config.disable_pull.unwrap_or(false);
        for database in config.databases {
            let database = database.clone();
            let author_mappings = config.author_mappings.clone().unwrap_or_default();

            let handle = tokio::spawn(async move {
                Self::serialize_records(database, author_mappings, disable_pull).await
            });
            handles.push(handle);
        }

        for handle in handles {
            handle.await??;
        }
        Ok(())
    }
}