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
| import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Date;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
public class Patcher {
/**
* Emplacement du dépôt git
*/
private static final String GIT_FOLDER = "C:\\DEPOT";
/**
* Emplacement des ZIP de delta
*/
private static final String DELTA_FOLDER = "N:\\HISTORIQUE";
/**
* Taille du buffer pour copier les fichiers contenus dans le zip.
*/
static final int BUFFER = 2048;
public static void main(String[] args) throws Exception {
File directory = new File(DELTA_FOLDER);
File[] files = directory.listFiles();
// Réalisation d'un premier filtre sur l'extention de fichier et la date du zip
long timelimite = getLastCommitDate().getTime();
Object[] tmp = Arrays.stream(files).filter(x -> x.getName().toLowerCase().endsWith(".zip"))
.filter(x-> x.lastModified()> timelimite)
.toArray();
files = Arrays.copyOf(tmp, tmp.length, File[].class);
// On trie les zip en fonction de la date pour les appliquer dans l'ordre.
Arrays.sort(files, new Comparator<File>(){
public int compare(File f1, File f2)
{
return Long.valueOf(f1.lastModified()).compareTo(f2.lastModified());
} });
// Formater de date pour mettre à jour la date du commit à la date de création du zip
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'");
File folder = new File(GIT_FOLDER);
/* Pour chaque ZIP de modification
* 1. Copie des fichiers dans le dépôt
* 2. Ajout des modifications au prochain commit
* 3. Si nécessaire commit + amend pour mettre à jour la date
*/
for (File file : files) {
if(file.getName().toLowerCase().endsWith(".zip")){
String ficheWithTrigramme = file.getName().replace(".zip", "").replace(".ZIP", "");
System.out.println("Traitement de la fiche => "+ficheWithTrigramme);
handleFicheZip(file);
Runtime rt = Runtime.getRuntime();
String message = getMessageFiche(ficheWithTrigramme);
System.out.println("Adding to git");
rt.exec("git add .",null, folder).waitFor();
if(isCommitNeeded() ){
Thread.sleep(200);
System.out.println("git commit -m \""+file.getName()+": "+message+"\"");
rt.exec("git commit -m \""+file.getName()+": "+message+"\"",null, folder).waitFor();
Thread.sleep(200);
rt.exec("git commit --amend --date=\""+df.format(new Date(file.lastModified()))+"\" --no-edit",null, folder).waitFor();
}
Thread.sleep(1000);
}
}
}
private static boolean isCommitNeeded() throws IOException {
File folder = new File(GIT_FOLDER);
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("git status",null, folder);
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(proc.getInputStream()));
String s = null;
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
if(s.contains("nothing to commit, working directory clean")){
return false;
}
}
return true;
}
private static String getMessageFiche(String fiche) throws IOException {
BufferedReader buff = new BufferedReader(new FileReader(DELTA_FOLDER+File.separator+fiche+".txt"));
String line = buff.readLine();
buff.close();
// On échappe les " pour ne pas avoir de problème lors du commit !
return line.replace("\"", "\\\"");
}
private static void handleFicheZip(File file) throws IOException {
ZipInputStream zis = new ZipInputStream(new FileInputStream(file));
ZipEntry ze = zis.getNextEntry();
File folder = new File(GIT_FOLDER);
while (ze != null) {
// It's a client file / folder
if (ze.getName().contains("DEVPART")) {
System.out.println(ze.getName());
String relativeName = ze.getName().split("DEVPART")[1];
// On crée les répertoires parents si nécessaire !
new File(folder.getAbsoluteFile() + File.separator + relativeName).getParentFile().mkdirs();
FileOutputStream fos = new FileOutputStream(
folder.getAbsoluteFile() + File.separator + relativeName);
BufferedOutputStream dest = new BufferedOutputStream(fos, BUFFER);
byte data[] = new byte[BUFFER];
int count;
while ((count = zis.read(data, 0, BUFFER)) != -1) {
dest.write(data, 0, count);
}
dest.close();
fos.close();
}
ze = zis.getNextEntry();
}
zis.close();
}
private static Date getLastCommitDate() throws Exception {
File folder = new File(GIT_FOLDER);
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("git log -1 --format=%ad --date=iso",null, folder);
BufferedReader stdInput = new BufferedReader(new InputStreamReader(proc.getInputStream()));
return toDate(stdInput.readLine());
}
/** Transform ISO 8601 string to Calendar. */
public static Date toDate(final String iso8601string)
throws ParseException {
String s = iso8601string.substring(0, 18);
Date date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(s);
return date;
}
} |