基本上我正在尝试使用IBM Rational Team Concert Plain Java Client API,而且我一直在为更改集添加操作。
我创建了一个新的变更集,检索了Operation工厂,然后我想从本地机器文件系统添加一个新文件(可能是项目的新文件)。
val changeSetHandle = workspaceConnection.createChangeSet(component, null)
val operationFactory = workspaceConnection.configurationOpFactory()
val saveOperation = operationFactory.save(...)
我不明白如何获取IVersionable
句柄以提交save()
方法。
答案 0 :(得分:1)
您可以参考显示IVersionable
// Create a new file and give it some content
IFileItem file = (IFileItem) IFileItem.ITEM_TYPE.createItem();
file.setName("file.txt");
file.setParent(projectFolder);
// Create file content.
IFileContentManager contentManager = FileSystemCore.getContentManager(repository);
IFileContent fileContent = contentManager.storeContent(
"UTF-8",
FileLineDelimiter.LINE_DELIMITER_LF,
new VersionedContentManagerByteArrayInputStreamPovider(BYTE_ARRAY),
null,
null);
file.setContent(fileContent);
file.setContentType(IFileItem.CONTENT_TYPE_TEXT);
file.setFileTimestamp(new Date());
workspaceConnection.configurationOpFactory().save(file);
然而,这还不够:
IConfigurationOpFactory
用于通过向更改集添加更改来更新存储库工作区 使用模式是获取工作空间连接,创建一系列保存操作,然后在这些操作上运行IWorkspaceConnection#commit()
。
在不提交更改的情况下调用save()
会将op放到堆栈上,以便垃圾收集器吞噬。 ;)