本文整理汇总了Java中com.subgraph.orchid.ConsensusDocument.ConsensusFlavor.MICRODESC属性的典型用法代码示例。如果您正苦于以下问题:Java ConsensusFlavor.MICRODESC属性的具体用法?Java ConsensusFlavor.MICRODESC怎么用?Java ConsensusFlavor.MICRODESC使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.subgraph.orchid.ConsensusDocument.ConsensusFlavor
的用法示例。
在下文中一共展示了ConsensusFlavor.MICRODESC属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: storeCurrentConsensus
private void storeCurrentConsensus() {
if(currentConsensus != null) {
if(currentConsensus.getFlavor() == ConsensusFlavor.MICRODESC) {
store.writeDocument(CacheFile.CONSENSUS_MICRODESC, currentConsensus);
} else {
store.writeDocument(CacheFile.CONSENSUS, currentConsensus);
}
}
}
示例2: parseFirstLine
private void parseFirstLine() {
if(currentEntry != null)
throw new TorParsingException("Unterminated router status entry.");
currentEntry = new RouterStatusImpl();
currentEntry.setNickname(fieldParser.parseNickname());
currentEntry.setIdentity(parseBase64Digest());
if(document.getFlavor() != ConsensusFlavor.MICRODESC) {
currentEntry.setDigest(parseBase64Digest());
}
currentEntry.setPublicationTime(fieldParser.parseTimestamp());
currentEntry.setAddress(fieldParser.parseAddress());
currentEntry.setRouterPort(fieldParser.parsePort());
currentEntry.setDirectoryPort(fieldParser.parsePort());
}
示例3: parseBandwidth
private void parseBandwidth() {
while(fieldParser.argumentsRemaining() > 0) {
final String[] parts = fieldParser.parseString().split("=");
if(parts.length == 2)
parseBandwidthItem(parts[0], fieldParser.parseInteger(parts[1]));
}
if(document.getFlavor() == ConsensusFlavor.MICRODESC) {
addCurrentEntry();
}
}
示例4: parsePortList
private void parsePortList() {
if(document.getFlavor() == ConsensusFlavor.MICRODESC) {
throw new TorParsingException("'p' line does not appear in consensus flavor 'microdesc'");
}
final String arg = fieldParser.parseString();
if(arg.equals("accept")) {
currentEntry.setAcceptedPorts(fieldParser.parseString());
} else if(arg.equals("reject")) {
currentEntry.setRejectedPorts(fieldParser.parseString());
}
addCurrentEntry();
}
示例5: parseMicrodescriptorHash
private void parseMicrodescriptorHash() {
if(document.getFlavor() != ConsensusFlavor.MICRODESC) {
throw new TorParsingException("'m' line is invalid unless consensus flavor is microdesc");
}
final byte[] hashBytes = fieldParser.parseBase64Data();
if(hashBytes.length != TorMessageDigest.TOR_DIGEST256_SIZE) {
throw new TorParsingException("'m' line has incorrect digest size "+ hashBytes.length +" != "+ TorMessageDigest.TOR_DIGEST256_SIZE);
}
currentEntry.setMicrodescriptorDigest(HexDigest.createFromDigestBytes(hashBytes));
}