| Line | Hits | Source |
|---|---|---|
| 1 | package umich.cac.pbs; | |
| 2 | ||
| 3 | import java.util.logging.Logger; | |
| 4 | ||
| 5 | /** | |
| 6 | * Process the L record, "L" record in PBSPro | |
| 7 | * <p> | |
| 8 | * | |
| 9 | * This option is specific to PBSPro, on linux | |
| 10 | * | |
| 11 | * An example from PBSPro accounting file is below | |
| 12 | * | |
| 13 | * <pre> | |
| 14 | * 00:00:00;L;license;floating license hour:0 day:90 month:90 max:90 | |
| 15 | * </pre> | |
| 16 | * | |
| 17 | * which doesn't totally conform to the normal job related accounting records. | |
| 18 | * until I have more information on the format for this record, I just leave it | |
| 19 | * empty and ignore as it is not needed for job accounting. | |
| 20 | * | |
| 21 | * @author rmach@umich.edu | |
| 22 | * @version $Header: /cvsroot/pbsaccounting/pbsaccounting/src/umich/cac/pbs/LRecord.java,v 1.2 2003/10/21 19:07:59 rodmach Exp $ | |
| 23 | */ | |
| 24 | ||
| 25 | 3 | public class LRecord implements PbsRecordParser { |
| 26 | ||
| 27 | ||
| 28 | /** | |
| 29 | * Logger instance | |
| 30 | */ | |
| 31 | ||
| 32 | 6 | private Logger logger = Logger.getLogger(LRecord.class.getName()); |
| 33 | ||
| 34 | /** | |
| 35 | * NOT PROCESSED. Returns empty string | |
| 36 | * | |
| 37 | * @param rawfields | |
| 38 | * Array from PBS containing the L record | |
| 39 | * @return empty string | |
| 40 | */ | |
| 41 | ||
| 42 | public String processRecord(String[] rawfields) { | |
| 43 | ||
| 44 | /* | |
| 45 | * This is the record. For now I just ignore it as it is not needed for | |
| 46 | * job accounting and is PBS pro specific 00:00:00;L;license;floating | |
| 47 | * license hour:0 day:90 month:90 max:90 | |
| 48 | */ | |
| 49 | 0 | return ""; |
| 50 | ||
| 51 | } | |
| 52 | ||
| 53 | } |
|
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |