use of com.zimbra.cs.volume.Volume in project zm-mailbox by Zimbra.
the class DbVolumeBlobsTest method testIncrementalBlobs.
@Test
public void testIncrementalBlobs() throws Exception {
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccountId(MockProvisioning.DEFAULT_ACCOUNT_ID);
DeliveryOptions opt = new DeliveryOptions();
opt.setFolderId(Mailbox.ID_FOLDER_INBOX);
int ts1 = (int) (System.currentTimeMillis() / 1000);
Message msg1 = mbox.addMessage(null, new ParsedMessage("From: from1@zimbra.com\r\nTo: to1@zimbra.com".getBytes(), false), opt, null);
Thread.sleep(1000);
int ts2 = (int) (System.currentTimeMillis() / 1000);
Message msg2 = mbox.addMessage(null, new ParsedMessage("From: from1@zimbra.com\r\nTo: to1@zimbra.com".getBytes(), false), opt, null);
Thread.sleep(1000);
int ts3 = (int) (System.currentTimeMillis() / 1000);
Iterable<MailboxBlobInfo> allBlobs = null;
Volume vol = VolumeManager.getInstance().getCurrentMessageVolume();
allBlobs = DbMailItem.getAllBlobs(conn, mbox.getSchemaGroupId(), vol.getId(), ts1, ts2);
Assert.assertEquals(msg1.getId(), allBlobs.iterator().next().itemId);
allBlobs = DbMailItem.getAllBlobs(conn, mbox.getSchemaGroupId(), vol.getId(), ts2, ts3);
Assert.assertEquals(msg2.getId(), allBlobs.iterator().next().itemId);
}
use of com.zimbra.cs.volume.Volume in project zm-mailbox by Zimbra.
the class DbVolumeBlobsTest method writeAllBlobRefs.
@Test
public void writeAllBlobRefs() throws Exception {
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccountId(MockProvisioning.DEFAULT_ACCOUNT_ID);
DeliveryOptions opt = new DeliveryOptions();
opt.setFolderId(Mailbox.ID_FOLDER_INBOX);
Map<String, String> digestToPath = new HashMap<String, String>();
Volume vol = VolumeManager.getInstance().getCurrentMessageVolume();
for (int i = 0; i < 10; i++) {
Message msg = mbox.addMessage(null, new ParsedMessage(("From: from" + i + "@zimbra.com\r\nTo: to1@zimbra.com").getBytes(), false), opt, null);
digestToPath.put(msg.getDigest(), msg.getBlob().getLocalBlob().getFile().getPath());
}
Iterable<MailboxBlobInfo> allBlobs = null;
allBlobs = DbMailItem.getAllBlobs(conn, mbox.getSchemaGroupId(), vol.getId(), -1, -1);
for (MailboxBlobInfo info : allBlobs) {
DbVolumeBlobs.addBlobReference(conn, info);
}
List<BlobReference> blobs = DbVolumeBlobs.getBlobReferences(conn, vol);
Assert.assertEquals(digestToPath.size(), blobs.size());
for (BlobReference blob : blobs) {
String path = digestToPath.remove(blob.getDigest());
Assert.assertNotNull(path);
Assert.assertEquals(path, getPath(blob));
}
Assert.assertTrue(digestToPath.isEmpty());
}
use of com.zimbra.cs.volume.Volume in project zm-mailbox by Zimbra.
the class DbVolumeBlobsTest method blobsByVolume.
@Test
public void blobsByVolume() throws Exception {
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccountId(MockProvisioning.DEFAULT_ACCOUNT_ID);
DeliveryOptions opt = new DeliveryOptions();
opt.setFolderId(Mailbox.ID_FOLDER_INBOX);
ParsedMessage pm = new ParsedMessage("From: from1@zimbra.com\r\nTo: to1@zimbra.com".getBytes(), false);
Message msg = mbox.addMessage(null, pm, opt, null);
Volume vol = VolumeManager.getInstance().getCurrentMessageVolume();
DbVolumeBlobs.addBlobReference(conn, mbox, vol, msg);
String volPath = vol.getRootPath().replace("store", "store2");
File volFile = new File(volPath);
volFile.mkdirs();
Volume vol2 = Volume.builder().setPath(volFile.getAbsolutePath(), true).setType(Volume.TYPE_MESSAGE).setName("volume2").build();
vol2 = VolumeManager.getInstance().create(vol2);
VolumeManager.getInstance().setCurrentVolume(Volume.TYPE_MESSAGE, vol2.getId());
Message msg2 = mbox.addMessage(null, pm, opt, null);
DbVolumeBlobs.addBlobReference(conn, mbox, vol2, msg2);
String digest = msg.getBlob().getDigest();
//add same msg to two different volumes
List<BlobReference> blobs = DbVolumeBlobs.getBlobReferences(conn, vol);
Assert.assertEquals(1, blobs.size());
Set<String> paths = new HashSet<String>();
paths.add(msg.getBlob().getLocalBlob().getFile().getPath());
for (BlobReference ref : blobs) {
Assert.assertTrue(paths.remove(getPath(ref)));
Assert.assertEquals(vol.getId(), ref.getVolumeId());
}
blobs = DbVolumeBlobs.getBlobReferences(conn, vol2);
Assert.assertEquals(1, blobs.size());
paths = new HashSet<String>();
paths.add(msg2.getBlob().getLocalBlob().getFile().getPath());
for (BlobReference ref : blobs) {
Assert.assertTrue(paths.remove(getPath(ref)));
Assert.assertEquals(vol2.getId(), ref.getVolumeId());
}
blobs = DbVolumeBlobs.getBlobReferences(conn, digest, vol);
paths = new HashSet<String>();
paths.add(msg.getBlob().getLocalBlob().getFile().getPath());
Assert.assertEquals(1, blobs.size());
for (BlobReference ref : blobs) {
Assert.assertTrue(paths.remove(getPath(ref)));
}
blobs = DbVolumeBlobs.getBlobReferences(conn, digest, vol2);
paths = new HashSet<String>();
paths.add(msg2.getBlob().getLocalBlob().getFile().getPath());
Assert.assertEquals(1, blobs.size());
for (BlobReference ref : blobs) {
Assert.assertTrue(paths.remove(getPath(ref)));
}
//delete from vol1
DbVolumeBlobs.deleteBlobRef(conn, vol);
blobs = DbVolumeBlobs.getBlobReferences(conn, digest, vol2);
paths = new HashSet<String>();
paths.add(msg2.getBlob().getLocalBlob().getFile().getPath());
Assert.assertEquals(1, blobs.size());
for (BlobReference ref : blobs) {
Assert.assertTrue(paths.remove(getPath(ref)));
}
blobs = DbVolumeBlobs.getBlobReferences(conn, vol);
Assert.assertEquals(0, blobs.size());
blobs = DbVolumeBlobs.getBlobReferences(conn, vol2);
Assert.assertEquals(1, blobs.size());
paths = new HashSet<String>();
paths.add(msg2.getBlob().getLocalBlob().getFile().getPath());
for (BlobReference ref : blobs) {
Assert.assertTrue(paths.remove(getPath(ref)));
}
blobs = DbVolumeBlobs.getBlobReferences(conn, digest, vol2);
paths = new HashSet<String>();
paths.add(msg2.getBlob().getLocalBlob().getFile().getPath());
Assert.assertEquals(1, blobs.size());
for (BlobReference ref : blobs) {
Assert.assertTrue(paths.remove(getPath(ref)));
}
}
use of com.zimbra.cs.volume.Volume in project zm-mailbox by Zimbra.
the class GetCurrentVolumes method handle.
private GetCurrentVolumesResponse handle(@SuppressWarnings("unused") GetCurrentVolumesRequest req, Map<String, Object> ctx) throws ServiceException {
ZimbraSoapContext zsc = getZimbraSoapContext(ctx);
checkRight(zsc, ctx, Provisioning.getInstance().getLocalServer(), Admin.R_manageVolume);
GetCurrentVolumesResponse resp = new GetCurrentVolumesResponse();
VolumeManager mgr = VolumeManager.getInstance();
Volume msgVol = mgr.getCurrentMessageVolume();
if (msgVol != null) {
resp.addVolume(new GetCurrentVolumesResponse.CurrentVolumeInfo(msgVol.getId(), msgVol.getType()));
}
Volume secondaryMsgVol = mgr.getCurrentSecondaryMessageVolume();
if (secondaryMsgVol != null) {
resp.addVolume(new GetCurrentVolumesResponse.CurrentVolumeInfo(secondaryMsgVol.getId(), secondaryMsgVol.getType()));
}
Volume indexVol = mgr.getCurrentIndexVolume();
if (indexVol != null) {
resp.addVolume(new GetCurrentVolumesResponse.CurrentVolumeInfo(indexVol.getId(), indexVol.getType()));
}
return resp;
}
use of com.zimbra.cs.volume.Volume in project zm-mailbox by Zimbra.
the class TestDocumentServer method cleanUp.
private void cleanUp() throws Exception {
// Restore volume compression settings.
VolumeManager mgr = VolumeManager.getInstance();
Volume current = mgr.getCurrentMessageVolume();
Volume vol = Volume.builder(current).setCompressBlobs(mOriginalCompressBlobs).setCompressionThreshold(mOriginalCompressionThreshold).build();
mgr.update(vol);
}
Aggregations