Menu
Last update: July 1, 2016 11:22
src
main
com
raspoid
AnalogComponent.java
Component.java
Config.java
GPIOComponent.java
GPIOPin.java
I2CComponent.java
I2CPin.java
PWMComponent.java
PWMPin.java
Pin.java
RaspberryPiModel.java
Tools.java
UARTPin.java
additionalcomponents
behavioral
brickpi
examples
exceptions
network
test

/*******************************************************************************
 * Copyright (c) 2016 Julien Louette & Gaƫl Wittorski
 * 
 * This file is part of Raspoid.
 * 
 * Raspoid is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Raspoid is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with Raspoid.  If not, see <http://www.gnu.org/licenses/>.
 ******************************************************************************/
package com.raspoid.additionalcomponents.camera;

import java.io.File;

/**
 * <b>Abstraction for a picture taken by the camera pi using the Raspoid
 * raspistill wrapper.</b>
 * 
 * @author Julien Louette &amp; Ga&euml;l Wittorski
 * @version 1.0
 */
public class Picture {
    
    private PictureConfig config;
    private String filePath;
    
    /**
     * Constructor for a new Picture, using a specific PictureConfig and
     * the file path of the picture on the system.
     * @param config the PictureConfig used to take this picture.
     * @param filePath the complete file path of the picture on the system.
     */
    public Picture(PictureConfig config, String filePath) {
        this.config = config;
        this.filePath = filePath;
    }
    
    /**
     * Get the PictureConfig used to take this Picture.
     * @return the PictureConfig used to take this Picture.
     */
    public PictureConfig getConfig() {
        return config;
    }
    
    /**
     * Get the complete file path of the picture file on the system.
     * @return the complete file path of the picture file on the system.
     */
    public String getFilePath() {
        return filePath;
    }
    
    /**
     * Get the abstract representation of the picture file.
     * @return the java.io.File instance corresponding to the picture file.
     */
    public File getFile() {
        return new File(this.filePath);
    }
    
    @Override
    public String toString() {
        return "(Picture) Config: " + config.getCommand() +
                " | file path: " + filePath;  
    }
}