/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.bookkeeper.bookie;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Arrays;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Implements a ledger inside a bookie. In particular, it implements operations
* to write entries to a ledger and read entries from a ledger.
*
*/
public class LedgerDescriptorImpl extends LedgerDescriptor {
private final static Logger LOG = LoggerFactory.getLogger(LedgerDescriptor.class);
final LedgerStorage ledgerStorage;
private long ledgerId;
final byte[] masterKey;
LedgerDescriptorImpl(byte[] masterKey, long ledgerId, LedgerStorage ledgerStorage) {
this.masterKey = masterKey;
this.ledgerId = ledgerId;
this.ledgerStorage = ledgerStorage;
}
@Override
void checkAccess(byte masterKey[]) throws BookieException, IOException {
if (!Arrays.equals(this.masterKey, masterKey)) {
throw BookieException.create(BookieException.Code.UnauthorizedAccessException);
}
}
@Override
public long getLedgerId() {
return ledgerId;
}
@Override
boolean setFenced() throws IOException {
return ledgerStorage.setFenced(ledgerId);
}
@Override
boolean isFenced() throws IOException {
return ledgerStorage.isFenced(ledgerId);
}
@Override
void setExplicitLac(ByteBuffer lac) throws IOException {
ledgerStorage.setExplicitlac(ledgerId, lac);
}
@Override
ByteBuffer getExplicitLac() {
return ledgerStorage.getExplicitLac(ledgerId);
}
@Override
long addEntry(ByteBuffer entry) throws IOException {
long ledgerId = entry.getLong();
if (ledgerId != this.ledgerId) {
throw new IOException("Entry for ledger " + ledgerId + " was sent to " + this.ledgerId);
}
entry.rewind();
return ledgerStorage.addEntry(entry);
}
@Override
ByteBuffer readEntry(long entryId) throws IOException {
return ledgerStorage.getEntry(ledgerId, entryId);
}
@Override
long getLastAddConfirmed() throws IOException {
return ledgerStorage.getLastAddConfirmed(ledgerId);
}
}