package com.perforce.config; import java.io.FileNotFoundException; import java.io.RandomAccessFile; import java.util.HashMap; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class UserMapping { private static Logger logger = LoggerFactory.getLogger(UserMapping.class); private static boolean loaded = false; private static Map<String, String> map = new HashMap<String, String>(); public static boolean load(String filename) throws Exception { RandomAccessFile rf; try { rf = new RandomAccessFile(filename, "r"); String line = null; while ((line = rf.readLine()) != null) { loaded = true; // ignore comments starting with '#' and add lines to table if (!line.startsWith("#")) { line = line.trim(); if (!line.isEmpty()) { String parts[] = line.split(","); map.put(parts[0].trim(), parts[1].trim()); } } } rf.close(); if (logger.isInfoEnabled()) { logger.info("Loaded user translation map '" + filename + "'; " + map.size() + " user names remapped.\n"); } return loaded; } catch (FileNotFoundException e) { // no file, then return return false; } } public static String get(String scmUser) { if (map.containsKey(scmUser)) return map.get(scmUser); else return scmUser; } public static void add(String scmUser, String p4User) { map.put(scmUser, p4User); } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 13876 | Paul Allen | Rename/move file(s) | ||
//guest/paul_allen/p4convert-maven/src/com/perforce/config/UserMapping.java | |||||
#1 | 13873 | Paul Allen | Branching using p4convert-maven | ||
//guest/perforce_software/p4convert/src/com/perforce/config/UserMapping.java | |||||
#2 | 12235 | Paul Allen |
CVS: Username map Now supports the --users flag for CVS returning a list of usernames. The map file can then be used to remap usernames during the import. - Includes test case062 |
||
#1 | 9807 | Paul Allen | Initial import of p4-convert (from change 894340) |