All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cosycode.bdmp.BdmpSource Maven / Gradle / Ivy

Go to download

a way to transfer data in the form of dot-matrix information in pictures(比特数据图片, 一种以图片信息的形式传递数据的方式)

There is a newer version: 1.4
Show newest version
package com.github.cosycode.bdmp;

import com.github.cosycode.common.base.SupplierWithThrow;
import lombok.Getter;
import org.apache.commons.lang3.Validate;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Objects;

/**
 * Description :  图片源
 *
 * @author CPF
 * @date 2020/11/18
 **/
@Getter
public class BdmpSource {

    private SourceType sourceType;
    private String name;
    private byte[] content;
    private SupplierWithThrow dataSupplier;

    public BdmpSource(SourceType sourceType, String name, SupplierWithThrow dataSupplier) {
        this.sourceType = sourceType;
        this.name = name;
        this.dataSupplier = dataSupplier;
    }

    public static BdmpSource geneByFile(File file) {
        return new BdmpSource(SourceType.TYPE_FILE, file.getName(), () -> {
            final long length = file.length();
            Validate.isTrue(length < Integer.MAX_VALUE, "文件过大");
            byte[] bytes = new byte[(int) length];
            // 写入文件
            try (FileInputStream in = new FileInputStream(file)) {
                final int read = in.read(bytes);
                Validate.isTrue(read == (int) length, "读取错误");
            }
            return bytes;
        });
    }

    public static BdmpSource geneByClipboard(String name, byte[] content) {
        return new BdmpSource(SourceType.TYPE_CLIPBOARD, name, () -> content);
    }

    public void checkWithThrow() throws IOException {
        Objects.requireNonNull(getContent(), "无内容");
        Objects.requireNonNull(getSourceType(), "无SourceType");
    }

    public byte[] getContent() throws IOException {
        if (content == null) {
            content = dataSupplier.get();
        }
        return content;
    }

    /**
     * 源类型: {文件地址, 网络地址, 二进制流, 剪贴板}
     */
    public enum SourceType {
        TYPE_FILE, TYPE_CONTENT, TYPE_CLIPBOARD
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy