如何获取性能仓库文件的两个版本的差异



如何检查文件内容是否与服务器执行JAVA API中的修订版本相同。在将任何文件更新到性能仓库之前,我想检查本地文件和仓库文件的内容是否有任何差异。如果没有差异,那么忽略提交该文件。

我想您想要getDiffFiles()方法:

https://www.perforce.com/perforce/r15.1/manuals/p4java-javadoc/com/perforce/p4java/impl/mapbased/client/Client.html#getDiffFiles

或者,对于你正在做的特定事情(不提交未更改的文件),只需使用"leaveUnchanged"提交选项,而不是自己做同样的工作。

很简单。只需生成原始文件的MD5哈希,然后在再次更新之前生成新文件的MD5哈希。

现在比较两个文件的哈希。如果两者相同,则两个文件的内容相同;如果不相同,则它们不同,您可以进行更新。

这里有一个实用程序,可以轻松生成和检查MD5,

public class MD5Utils {
    private static final String TAG = "MD5";
    public static boolean checkMD5(String md5, File updateFile) {
        if (TextUtils.isEmpty(md5) || updateFile == null) {
            Log.e(TAG, "MD5 string empty or updateFile null");
            return false;
        }
        String calculatedDigest = calculateMD5(updateFile);
        if (calculatedDigest == null) {
            Log.e(TAG, "calculatedDigest null");
            return false;
        }
        Log.v(TAG, "Calculated digest: " + calculatedDigest);
        Log.v(TAG, "Provided digest: " + md5);
        return calculatedDigest.equalsIgnoreCase(md5);
    }
    public static String calculateMD5(File updateFile) {
        MessageDigest digest;
        try {
            digest = MessageDigest.getInstance("MD5");
        } catch (NoSuchAlgorithmException e) {
            Log.e(TAG, "Exception while getting digest", e);
            return null;
        }
        InputStream is;
        try {
            is = new FileInputStream(updateFile);
        } catch (FileNotFoundException e) {
            Log.e(TAG, "Exception while getting FileInputStream", e);
            return null;
        }
        byte[] buffer = new byte[8192];
        int read;
        try {
            while ((read = is.read(buffer)) > 0) {
                digest.update(buffer, 0, read);
            }
            byte[] md5sum = digest.digest();
            BigInteger bigInt = new BigInteger(1, md5sum);
            String output = bigInt.toString(16);
            // Fill to 32 chars
            output = String.format("%32s", output).replace(' ', '0');
            return output;
        } catch (IOException e) {
            throw new RuntimeException("Unable to process file for MD5", e);
        } finally {
            try {
                is.close();
            } catch (IOException e) {
                Log.e(TAG, "Exception on closing MD5 input stream", e);
            }
        }
    }
}

最新更新