当前位置: 首页>>代码示例>>Java>>正文


Java ConsensusFlavor类代码示例

本文整理汇总了Java中com.subgraph.orchid.ConsensusDocument.ConsensusFlavor的典型用法代码示例。如果您正苦于以下问题:Java ConsensusFlavor类的具体用法?Java ConsensusFlavor怎么用?Java ConsensusFlavor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ConsensusFlavor类属于com.subgraph.orchid.ConsensusDocument包,在下文中一共展示了ConsensusFlavor类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: storeCurrentConsensus

import com.subgraph.orchid.ConsensusDocument.ConsensusFlavor; //导入依赖的package包/类
private void storeCurrentConsensus() {
	if(currentConsensus != null) {
		if(currentConsensus.getFlavor() == ConsensusFlavor.MICRODESC) {
			store.writeDocument(CacheFile.CONSENSUS_MICRODESC, currentConsensus);
		} else {
			store.writeDocument(CacheFile.CONSENSUS, currentConsensus);
		}
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:10,代码来源:DirectoryImpl.java

示例2: parseFirstLine

import com.subgraph.orchid.ConsensusDocument.ConsensusFlavor; //导入依赖的package包/类
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());
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:15,代码来源:RouterStatusSectionParser.java

示例3: parseBandwidth

import com.subgraph.orchid.ConsensusDocument.ConsensusFlavor; //导入依赖的package包/类
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();
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:11,代码来源:RouterStatusSectionParser.java

示例4: parsePortList

import com.subgraph.orchid.ConsensusDocument.ConsensusFlavor; //导入依赖的package包/类
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();
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:13,代码来源:RouterStatusSectionParser.java

示例5: parseMicrodescriptorHash

import com.subgraph.orchid.ConsensusDocument.ConsensusFlavor; //导入依赖的package包/类
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));
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:11,代码来源:RouterStatusSectionParser.java

示例6: parseConsensusFlavor

import com.subgraph.orchid.ConsensusDocument.ConsensusFlavor; //导入依赖的package包/类
private void parseConsensusFlavor() {
	final String flavor = fieldParser.parseString();
	if("ns".equals(flavor)) {
		document.setConsensusFlavor(ConsensusFlavor.NS);
	} else if("microdesc".equals(flavor)) {
		document.setConsensusFlavor(ConsensusFlavor.MICRODESC);
	} else {
		fieldParser.logWarn("Unknown consensus flavor: "+ flavor);
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:11,代码来源:PreambleSectionParser.java


注:本文中的com.subgraph.orchid.ConsensusDocument.ConsensusFlavor类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。