Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (c) 2009-2016, netbout.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are PROHIBITED without prior written permission from
* the author. This product may NOT be used anywhere and on any computer
* except the server platform of netbout Inc. located at www.netbout.com.
* Federal copyright law prohibits unauthorized reproduction by any means
* and imposes fines up to $25,000 for violation. If you received
* this code accidentally and without intent to use it, please report this
* incident to the author by email.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.netbout.dynamo;
import com.jcabi.aspects.Immutable;
import com.jcabi.aspects.Loggable;
import com.jcabi.aspects.Tv;
import com.jcabi.dynamo.AttributeUpdates;
import com.jcabi.dynamo.Conditions;
import com.jcabi.dynamo.Item;
import com.jcabi.dynamo.QueryValve;
import com.jcabi.dynamo.Region;
import com.jcabi.log.Logger;
import com.netbout.spi.Attachments;
import com.netbout.spi.Bout;
import com.netbout.spi.Friends;
import com.netbout.spi.Messages;
import java.io.IOException;
import java.util.Date;
import java.util.Iterator;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
* Dynamo bout.
*
* @author Yegor Bugayenko ([email protected])
* @version $Id: 660121955575ba2d1f5b8bba725fea141d9348f2 $
* @since 2.0
*/
@Immutable
@Loggable(Loggable.DEBUG)
@ToString(of = "self")
@EqualsAndHashCode(of = { "region", "item", "self" })
@SuppressWarnings("PMD.TooManyMethods")
final class DyBout implements Bout {
/**
* Region we're in.
*/
private final transient Region region;
/**
* Item with bout.
*/
private final transient Item item;
/**
* Alias of myself.
*/
private final transient String self;
/**
* Ctor.
* @param reg Region we're in
* @param itm Item in "friends" table
* @param slf Self alias
*/
DyBout(final Region reg, final Item itm, final String slf) {
this.region = reg;
this.item = itm;
this.self = slf;
}
@Override
public long number() throws IOException {
return Long.parseLong(this.item.get(DyFriends.HASH).getN());
}
@Override
public Date date() throws IOException {
return new Date(
Long.parseLong(
this.item.get(DyFriends.ATTR_UPDATED).getN()
)
);
}
@Override
public Date updated() throws IOException {
return this.date();
}
@Override
public String title() throws IOException {
return this.item.get(DyFriends.ATTR_TITLE).getS();
}
@Override
public void rename(final String text) throws IOException {
if (text.isEmpty()) {
throw new IllegalArgumentException("bout title can't be empty");
}
if (text.length() > 2 * Tv.HUNDRED) {
throw new IllegalArgumentException("bout name is too long");
}
this.item.put(
new AttributeUpdates().with(DyFriends.ATTR_TITLE, text)
);
Logger.info(this, "bout #%d renamed to \"%s\"", this.number(), text);
}
@Override
public boolean subscription() throws IOException {
boolean subs = true;
if (this.item.has(DyFriends.ATTR_SUBSCRIPTION)) {
subs = Boolean.parseBoolean(
this.item.get(DyFriends.ATTR_SUBSCRIPTION).getS()
);
}
return subs;
}
@Override
public boolean subscription(final String alias) throws IOException {
final QueryValve thr = new QueryValve()
.withLimit(1)
.withAttributesToGet(DyFriends.ATTR_SUBSCRIPTION);
final Iterator items = this.region.table(DyFriends.TBL).frame()
.where(DyFriends.RANGE, alias)
.where(DyFriends.HASH, Conditions.equalTo(this.number()))
.through(thr)
.iterator();
boolean subs = true;
if (items.hasNext()) {
final Item itm = items.next();
if (itm.has(DyFriends.ATTR_SUBSCRIPTION)) {
subs = Boolean.parseBoolean(
itm.get(DyFriends.ATTR_SUBSCRIPTION).getS()
);
}
}
return subs;
}
@Override
public void subscribe(final boolean subs) throws IOException {
this.item.put(
new AttributeUpdates().with(DyFriends.ATTR_SUBSCRIPTION, subs)
);
Logger.info(
this, "bout #%d subscribe to \"%s\" by %s",
this.number(),
subs,
this.self
);
}
@Override
public Messages messages() throws IOException {
return new DyMessages(this.region, this.number(), this.self);
}
@Override
public Friends friends() {
return new Friends.ValidFriends(new DyFriends(this.region, this.item));
}
@Override
public Attachments attachments() throws IOException {
return new DyAttachments(this.region, this.number(), this.self);
}
}