Adicionar um iterador em um pacote personalizado para a ação Loop
Adicione um iterador em seu pacote para a Loop action.
Adicionar um iterador a uma ação Loop
- Para criar um iterador, defina a propriedade commandType de anotação BotCommand com valor como Iterador.
- Há dois métodos exigidos pelo iterador e eles são definidos pelas anotações HasNext e Avançar.
@BotCommand(commandType = BotCommand.CommandType.Iterator)
@CommandPkg(name = "loop.iterators.files",
label = "For each file in folder",
node_label = "for each file and assign file name and extension to {{returnTo}}",
description = "Iterator for each file in folder.",
return_type = DataType.DICTIONARY,
return_sub_type = DataType.STRING,
return_required = true,
return_description = "Note: Access the 'name' key to access file name and 'extension'
key to access the file extension.",
return_label = "Assign file name and extension to this variable")
public class FileLoop extends AbstractCommandFileIterator {
@Idx(index = "1", type = AttributeType.TEXT)
@Pkg(label = "Folder path")
@Inject
@NotEmpty
private String folderPath;
@HasNext
public boolean hasNext() {
return getFileIterator(folderPath).hasNext();
}
@Next
public Value<?> next() {
Map<String, Value> returnValueMap = new HashMap<>();
FileIterator fileIterator = getFileIterator(folderPath);
String fileName = fileIterator.getNext();
returnValueMap.put(FILE_NAME, new StringValue(fileIterator.getFileName(fileName)));
returnValueMap.put(EXTENSION, new StringValue(fileIterator.getExtension(fileName)));
return new DictionaryValue(returnValueMap);
}
public void setFolderPath(String folderPath) {
this.folderPath = folderPath;
}
}