org.syphr.mythtv.protocol.impl.AbstractQueryFileTransfer Maven / Gradle / Ivy
/*
* Copyright 2011-2012 Gregory P. Moyer
*
* Licensed 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.syphr.mythtv.protocol.impl;
import org.syphr.mythtv.protocol.QueryFileTransfer;
import org.syphr.mythtv.types.FileTransferType;
import org.syphr.mythtv.util.socket.SocketManager;
import org.syphr.mythtv.util.translate.Translator;
import org.syphr.mythtv.util.unsupported.UnsupportedHandler;
public abstract class AbstractQueryFileTransfer implements QueryFileTransfer
{
private final Translator translator;
private final Parser parser;
private final int socketNumber;
private final long size;
private final FileTransferType transferType;
private final SocketManager socketManager;
private final UnsupportedHandler unsupported;
public AbstractQueryFileTransfer(Translator translator,
Parser parser,
int socketNumber,
long size,
FileTransferType transferType,
SocketManager socketManager,
UnsupportedHandler unsupported)
{
this.translator = translator;
this.parser = parser;
this.socketNumber = socketNumber;
this.size = size;
this.transferType = transferType;
this.socketManager = socketManager;
this.unsupported = unsupported;
}
protected Translator getTranslator()
{
return translator;
}
protected Parser getParser()
{
return parser;
}
protected int getSocketNumber()
{
return socketNumber;
}
@Override
public long getSize()
{
return size;
}
@Override
public FileTransferType getTransferType()
{
return transferType;
}
protected SocketManager getSocketManager()
{
return socketManager;
}
protected void handleUnsupported(String opDescription)
{
unsupported.handle(opDescription);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy