use of com.zimbra.cs.store.StagedBlob in project zm-mailbox by Zimbra.
the class VerifyStoreManager method testStore.
private void testStore() throws Exception {
ParsedMessage pm = getMessage(1024);
byte[] mimeBytes = readInputStream(pm.getRawInputStream());
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccount(AccountTestUtil.getAccount(USER_NAME));
StoreManager sm = StoreManager.getInstance();
Blob blob = sm.storeIncoming(pm.getRawInputStream());
assertEquals("blob size = message size", pm.getRawData().length, blob.getRawSize());
assertTrue("blob content = mime content", bytesEqual(mimeBytes, readInputStream(blob.getInputStream())));
StagedBlob staged = sm.stage(blob, mbox);
assertEquals("staged size = blob size", blob.getRawSize(), staged.getSize());
MailboxBlob mblob = sm.link(staged, mbox, 0, 0);
assertEquals("link size = staged size", staged.getSize(), mblob.getSize());
assertTrue("link content = mime content", bytesEqual(mimeBytes, readInputStream(mblob.getLocalBlob().getInputStream())));
mblob = sm.getMailboxBlob(mbox, 0, 0, staged.getLocator());
assertEquals("mblob size = staged size", staged.getSize(), mblob.getSize());
assertTrue("mailboxblob content = mime content", bytesEqual(mimeBytes, readInputStream(mblob.getLocalBlob().getInputStream())));
sm.delete(mblob);
}
use of com.zimbra.cs.store.StagedBlob in project zm-mailbox by Zimbra.
the class ExternalStoreManager method stage.
@Override
public StagedBlob stage(Blob blob, Mailbox mbox) throws IOException, ServiceException {
if (supports(StoreFeature.RESUMABLE_UPLOAD) && blob instanceof ExternalUploadedBlob) {
ZimbraLog.store.debug("blob already uploaded, just need to commit");
String locator = ((ExternalResumableUpload) this).finishUpload((ExternalUploadedBlob) blob);
if (locator != null) {
ZimbraLog.store.debug("wrote to locator %s", locator);
localCache.put(locator, getContent(blob));
} else {
ZimbraLog.store.warn("blob staging returned null locator");
}
return new ExternalStagedBlob(mbox, blob.getDigest(), blob.getRawSize(), locator);
} else {
InputStream is = getContent(blob);
try {
StagedBlob staged = stage(is, blob.getRawSize(), mbox);
if (staged != null && staged.getLocator() != null) {
localCache.put(staged.getLocator(), getContent(blob));
}
return staged;
} finally {
ByteUtil.closeStream(is);
}
}
}
use of com.zimbra.cs.store.StagedBlob in project zm-mailbox by Zimbra.
the class Mailbox method createDocument.
public Document createDocument(OperationContext octxt, int folderId, ParsedDocument pd, MailItem.Type type, int flags, MailItem parent, CustomMetadata custom, boolean indexing) throws IOException, ServiceException {
StoreManager sm = StoreManager.getInstance();
StagedBlob staged = sm.stage(pd.getBlob(), this);
SaveDocument redoRecorder = new SaveDocument(mId, pd.getDigest(), pd.getSize(), folderId, flags);
boolean success = false;
try {
long start = System.currentTimeMillis();
beginTransaction("createDoc", octxt, redoRecorder);
SaveDocument redoPlayer = (octxt == null ? null : (SaveDocument) octxt.getPlayer());
int itemId = getNextItemId(redoPlayer == null ? ID_AUTO_INCREMENT : redoPlayer.getMessageId());
String uuid = redoPlayer == null ? UUIDUtil.generateUUID() : redoPlayer.getUuid();
Document doc;
switch(type) {
case DOCUMENT:
doc = Document.create(itemId, uuid, getFolderById(folderId), pd.getFilename(), pd.getContentType(), pd, custom, flags, parent);
break;
case WIKI:
doc = WikiItem.create(itemId, uuid, getFolderById(folderId), pd.getFilename(), pd, null);
break;
default:
throw MailServiceException.INVALID_TYPE(type.toString());
}
redoRecorder.setMessageId(itemId);
redoRecorder.setUuid(doc.getUuid());
redoRecorder.setDocument(pd);
redoRecorder.setItemType(type);
redoRecorder.setDescription(pd.getDescription());
redoRecorder.setFlags(doc.getFlagBitmask());
// Get the redolog data from the mailbox blob. This is less than ideal in the
// HTTP store case because it will result in network access, and possibly an
// extra write to local disk. If this becomes a problem, we should update the
// ParsedDocument constructor to take a DataSource instead of an InputStream.
MailboxBlob mailboxBlob = doc.setContent(staged, pd);
redoRecorder.setMessageBodyInfo(new MailboxBlobDataSource(mailboxBlob), mailboxBlob.getSize());
if (indexing) {
index.add(doc);
}
success = true;
long elapsed = System.currentTimeMillis() - start;
ZimbraLog.mailbox.debug("createDocument elapsed=" + elapsed);
return doc;
} catch (IOException ioe) {
throw ServiceException.FAILURE("error writing document blob", ioe);
} finally {
endTransaction(success);
sm.quietDelete(staged);
}
}
use of com.zimbra.cs.store.StagedBlob in project zm-mailbox by Zimbra.
the class Mailbox method createContact.
public Contact createContact(OperationContext octxt, ParsedContact pc, int folderId, String[] tags) throws ServiceException {
StoreManager sm = StoreManager.getInstance();
StagedBlob staged = null;
if (pc.hasAttachment()) {
// write the contact content directly to the mailbox's blob staging area
InputStream is = null;
try {
staged = sm.stage(is = pc.getContentStream(), (int) pc.getSize(), this);
} catch (IOException ioe) {
throw ServiceException.FAILURE("could not save contact blob", ioe);
} finally {
ByteUtil.closeStream(is);
}
}
CreateContact redoRecorder = new CreateContact(mId, folderId, pc, tags);
boolean success = false;
try {
beginTransaction("createContact", octxt, redoRecorder);
CreateContact redoPlayer = (CreateContact) currentChange().getRedoPlayer();
boolean isRedo = redoPlayer != null;
Tag.NormalizedTags ntags = new Tag.NormalizedTags(this, tags);
int contactId = getNextItemId(isRedo ? redoPlayer.getContactId() : ID_AUTO_INCREMENT);
MailboxBlob mblob = null;
if (pc.hasAttachment()) {
try {
mblob = sm.renameTo(staged, this, contactId, getOperationChangeID());
markOtherItemDirty(mblob);
} catch (IOException ioe) {
throw ServiceException.FAILURE("could not save contact blob", ioe);
}
}
int flags = 0;
Contact con = Contact.create(contactId, getFolderById(folderId), mblob, pc, flags, ntags, null);
redoRecorder.setContactId(contactId);
index.add(con);
success = true;
return con;
} finally {
endTransaction(success);
sm.quietDelete(staged);
}
}
use of com.zimbra.cs.store.StagedBlob in project zm-mailbox by Zimbra.
the class Mailbox method updateChat.
public Chat updateChat(OperationContext octxt, ParsedMessage pm, int id) throws IOException, ServiceException {
if (pm == null) {
throw ServiceException.INVALID_REQUEST("null ParsedMessage when updating chat " + id + " in mailbox " + mId, null);
}
// write the chat content directly to the mailbox's blob staging area
StoreManager sm = StoreManager.getInstance();
StagedBlob staged;
InputStream is = pm.getRawInputStream();
try {
staged = sm.stage(is, this);
} finally {
ByteUtil.closeStream(is);
}
String digest = staged.getDigest();
int size = (int) staged.getSize();
SaveChat redoRecorder = new SaveChat(mId, id, digest, size, -1, 0, null);
boolean success = false;
try {
beginTransaction("saveChat", octxt, redoRecorder);
SaveChat redoPlayer = (SaveChat) currentChange().getRedoPlayer();
redoRecorder.setMessageBodyInfo(new ParsedMessageDataSource(pm), size);
Chat chat = (Chat) getItemById(id, MailItem.Type.CHAT);
if (!chat.isMutable()) {
throw MailServiceException.IMMUTABLE_OBJECT(id);
}
if (!checkItemChangeID(chat)) {
throw MailServiceException.MODIFY_CONFLICT();
}
// content changed, so we're obliged to change the IMAP uid
int imapID = getNextItemId(redoPlayer == null ? ID_AUTO_INCREMENT : redoPlayer.getImapId());
redoRecorder.setImapId(imapID);
// update the content and increment the revision number
chat.setContent(staged, pm);
// NOTE: msg is now uncached (will this cause problems during commit/reindex?)
index.add(chat);
success = true;
return chat;
} finally {
endTransaction(success);
sm.quietDelete(staged);
}
}
Aggregations