src/main/java/cz/frantovo/rozsireneatributy/gui/Model.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 16 Dec 2023 23:54:00 +0100
branchv_0
changeset 40 1978eaf429de
parent 39 ec0e970e0830
permissions -rw-r--r--
možnost spustit program přes Maven: mvn install exec:java
franta-hg@19
     1
/**
franta-hg@19
     2
 * Rozšířené atributy – program na správu rozšířených atributů souborů
franta-hg@19
     3
 * Copyright © 2012 František Kučera (frantovo.cz)
franta-hg@31
     4
 *
franta-hg@19
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@19
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@27
     7
 * the Free Software Foundation, either version 3 of the License.
franta-hg@31
     8
 *
franta-hg@19
     9
 * This program is distributed in the hope that it will be useful,
franta-hg@19
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@19
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
franta-hg@19
    12
 * GNU General Public License for more details.
franta-hg@31
    13
 *
franta-hg@19
    14
 * You should have received a copy of the GNU General Public License
franta-hg@19
    15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
franta-hg@19
    16
 */
franta-hg@28
    17
package cz.frantovo.rozsireneatributy.gui;
franta-hg@6
    18
franta-hg@28
    19
import cz.frantovo.rozsireneatributy.Atribut;
franta-hg@31
    20
import cz.frantovo.rozsireneatributy.Konfigurace;
franta-hg@6
    21
import java.io.IOException;
franta-hg@30
    22
import java.io.RandomAccessFile;
franta-hg@6
    23
import java.nio.ByteBuffer;
franta-hg@30
    24
import java.nio.channels.FileChannel;
franta-hg@30
    25
import java.nio.channels.FileLock;
franta-hg@6
    26
import java.nio.file.Path;
franta-hg@6
    27
import java.nio.file.attribute.UserDefinedFileAttributeView;
franta-hg@17
    28
import java.nio.file.spi.FileSystemProvider;
franta-hg@6
    29
import java.util.ArrayList;
franta-hg@6
    30
import java.util.HashSet;
franta-hg@6
    31
import java.util.List;
franta-hg@15
    32
import java.util.ResourceBundle;
franta-hg@22
    33
import java.util.Set;
franta-hg@9
    34
import java.util.logging.Level;
franta-hg@6
    35
import java.util.logging.Logger;
franta-hg@6
    36
import javax.swing.event.TableModelEvent;
franta-hg@6
    37
import javax.swing.event.TableModelListener;
franta-hg@6
    38
import javax.swing.table.TableModel;
franta-hg@6
    39
franta-hg@6
    40
/**
franta-hg@30
    41
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@6
    42
 */
franta-hg@6
    43
public class Model implements TableModel {
franta-hg@6
    44
franta-hg@29
    45
	private static final Logger log = Logger
franta-hg@29
    46
		.getLogger(Model.class.getSimpleName());
franta-hg@29
    47
	private static final ResourceBundle překlady = ResourceBundle
franta-hg@29
    48
		.getBundle(Atribut.class.getPackageName() + ".Překlady");
franta-hg@31
    49
	private final String[] sloupečky = {
franta-hg@29
    50
		překlady.getString("tabulka.název"),
franta-hg@29
    51
		překlady.getString("tabulka.hodnota")
franta-hg@29
    52
	};
franta-hg@31
    53
	private final Set<TableModelListener> posluchače = new HashSet<>();
franta-hg@31
    54
	private final Konfigurace konfigurace;
franta-hg@31
    55
	private final UserDefinedFileAttributeView souborovýSystém;
franta-hg@31
    56
	private final List<Atribut> atributy = new ArrayList<>();
franta-hg@6
    57
franta-hg@30
    58
	private RandomAccessFile zámekSoubor;
franta-hg@30
    59
	private FileChannel zámekKanál;
franta-hg@30
    60
	private FileLock zámek;
franta-hg@30
    61
franta-hg@31
    62
	public Model(Konfigurace konfigurace) throws IOException {
franta-hg@31
    63
		this.konfigurace = konfigurace;
franta-hg@31
    64
		Path cesta = konfigurace.getSoubor().toPath();
franta-hg@17
    65
		FileSystemProvider posyktovatelFS = cesta.getFileSystem().provider();
franta-hg@29
    66
		souborovýSystém = posyktovatelFS
franta-hg@29
    67
			.getFileAttributeView(cesta, UserDefinedFileAttributeView.class);
franta-hg@6
    68
		načtiAtributy();
franta-hg@6
    69
	}
franta-hg@6
    70
franta-hg@31
    71
	public Konfigurace getKonfigurace() {
franta-hg@31
    72
		return konfigurace;
franta-hg@31
    73
	}
franta-hg@31
    74
franta-hg@22
    75
	@Override
franta-hg@6
    76
	public int getRowCount() {
franta-hg@6
    77
		return atributy.size();
franta-hg@6
    78
	}
franta-hg@6
    79
franta-hg@22
    80
	@Override
franta-hg@6
    81
	public int getColumnCount() {
franta-hg@6
    82
		return sloupečky.length;
franta-hg@6
    83
	}
franta-hg@6
    84
franta-hg@22
    85
	@Override
franta-hg@6
    86
	public String getColumnName(int n) {
franta-hg@6
    87
		return sloupečky[n];
franta-hg@6
    88
	}
franta-hg@6
    89
franta-hg@22
    90
	@Override
franta-hg@6
    91
	public Class<?> getColumnClass(int n) {
franta-hg@6
    92
		return String.class;
franta-hg@6
    93
	}
franta-hg@6
    94
franta-hg@22
    95
	@Override
franta-hg@6
    96
	public boolean isCellEditable(int m, int n) {
franta-hg@6
    97
		return true;
franta-hg@6
    98
	}
franta-hg@6
    99
franta-hg@22
   100
	@Override
franta-hg@6
   101
	public Object getValueAt(int m, int n) {
franta-hg@31
   102
		switch (n) {
franta-hg@31
   103
			case 0:
franta-hg@31
   104
				return atributy.get(m).getKlíč();
franta-hg@31
   105
			case 1:
franta-hg@31
   106
				return atributy.get(m).getHodnota();
franta-hg@31
   107
			default:
franta-hg@31
   108
				return null;
franta-hg@6
   109
		}
franta-hg@6
   110
	}
franta-hg@6
   111
franta-hg@22
   112
	@Override
franta-hg@14
   113
	public void setValueAt(Object hodnota, int m, int n) {
franta-hg@9
   114
		Atribut a = atributy.get(m);
franta-hg@9
   115
		try {
franta-hg@9
   116
			if (n == 0) {
franta-hg@31
   117
				/**
franta-hg@31
   118
				 * Měníme klíč – název atributu
franta-hg@31
   119
				 */
franta-hg@14
   120
				String novýKlíč = String.valueOf(hodnota);
franta-hg@11
   121
				if (!novýKlíč.equals(a.getKlíč())) {
franta-hg@11
   122
					if (a.isPlatnýKlíč()) {
franta-hg@11
   123
						souborovýSystém.delete(a.getKlíč());
franta-hg@10
   124
					}
franta-hg@11
   125
					a.setKlíč(novýKlíč);
franta-hg@14
   126
					if (a.isPlatnýKlíč() && a.isPlatnáHodnota()) {
franta-hg@11
   127
						souborovýSystém.write(a.getKlíč(), a.getHodnotaBajty());
franta-hg@10
   128
					}
franta-hg@9
   129
				}
franta-hg@9
   130
			} else if (n == 1) {
franta-hg@31
   131
				/**
franta-hg@31
   132
				 * Měníme hodnotu atributu
franta-hg@31
   133
				 */
franta-hg@14
   134
				a.setHodnota(String.valueOf(hodnota));
franta-hg@12
   135
				if (a.isPlatnýKlíč() && a.isPlatnáHodnota()) {
franta-hg@12
   136
					souborovýSystém.write(a.getKlíč(), a.getHodnotaBajty());
franta-hg@12
   137
				}
franta-hg@9
   138
			}
franta-hg@9
   139
		} catch (IOException e) {
franta-hg@29
   140
			log.log(Level.SEVERE, "Selhalo ukládání atributu na FS", e);
franta-hg@6
   141
		}
franta-hg@6
   142
	}
franta-hg@6
   143
franta-hg@22
   144
	@Override
franta-hg@6
   145
	public void addTableModelListener(TableModelListener l) {
franta-hg@6
   146
		posluchače.add(l);
franta-hg@6
   147
	}
franta-hg@6
   148
franta-hg@22
   149
	@Override
franta-hg@6
   150
	public void removeTableModelListener(TableModelListener l) {
franta-hg@6
   151
		posluchače.remove(l);
franta-hg@6
   152
	}
franta-hg@6
   153
franta-hg@10
   154
	/**
franta-hg@10
   155
	 * @param m číslo řádku
franta-hg@10
   156
	 * @return atribut, který se na něm nachází
franta-hg@10
   157
	 */
franta-hg@10
   158
	public Atribut getAtribut(int m) {
franta-hg@10
   159
		return atributy.get(m);
franta-hg@10
   160
	}
franta-hg@10
   161
franta-hg@9
   162
	public void přidejAtribut(Atribut a) {
franta-hg@9
   163
		atributy.add(a);
franta-hg@9
   164
		upozorniPosluchače();
franta-hg@6
   165
	}
franta-hg@6
   166
franta-hg@10
   167
	public void odeberAtribut(Atribut a) throws IOException {
franta-hg@9
   168
		atributy.remove(a);
franta-hg@11
   169
		if (a.isPlatnýKlíč()) {
franta-hg@11
   170
			souborovýSystém.delete(a.getKlíč());
franta-hg@11
   171
		}
franta-hg@9
   172
		upozorniPosluchače();
franta-hg@6
   173
	}
franta-hg@6
   174
franta-hg@10
   175
	public final void načtiAtributy() throws IOException {
franta-hg@11
   176
		List<String> jménaAtributů = souborovýSystém.list();
franta-hg@10
   177
		atributy.clear();
franta-hg@6
   178
		for (String jménoAtributu : jménaAtributů) {
franta-hg@29
   179
			ByteBuffer hodnotaAtributu = ByteBuffer
franta-hg@29
   180
				.allocate(souborovýSystém.size(jménoAtributu));
franta-hg@11
   181
			souborovýSystém.read(jménoAtributu, hodnotaAtributu);
franta-hg@6
   182
			atributy.add(new Atribut(jménoAtributu, hodnotaAtributu));
franta-hg@6
   183
		}
franta-hg@9
   184
		upozorniPosluchače();
franta-hg@6
   185
	}
franta-hg@6
   186
franta-hg@6
   187
	private void upozorniPosluchače() {
franta-hg@6
   188
		for (TableModelListener p : posluchače) {
franta-hg@6
   189
			p.tableChanged(new TableModelEvent(this));
franta-hg@6
   190
		}
franta-hg@6
   191
	}
franta-hg@30
   192
franta-hg@30
   193
	public boolean isZámekPodporovaný() {
franta-hg@31
   194
		return konfigurace.getSoubor().isFile();
franta-hg@30
   195
	}
franta-hg@30
   196
franta-hg@30
   197
	public void nastavZámek(boolean zamknout) throws IOException {
franta-hg@30
   198
		if (!isZámekPodporovaný()) {
franta-hg@30
   199
			throw new IOException(překlady
franta-hg@30
   200
				.getString("chyba.lzeZamknoutJenSoubor"));
franta-hg@30
   201
		}
franta-hg@30
   202
franta-hg@30
   203
		if (zamknout && zámekSoubor == null) {
franta-hg@31
   204
			zámekSoubor = new RandomAccessFile(konfigurace.getSoubor(), "rw");
franta-hg@30
   205
			zámekKanál = zámekSoubor.getChannel();
franta-hg@30
   206
			zámek = zámekKanál.lock();
franta-hg@30
   207
		} else if (!zamknout && zámekSoubor != null) {
franta-hg@30
   208
			zámek.release();
franta-hg@30
   209
			zámekKanál.close();
franta-hg@30
   210
			zámekSoubor.close();
franta-hg@30
   211
			zámek = null;
franta-hg@30
   212
			zámekKanál = null;
franta-hg@30
   213
			zámekSoubor = null;
franta-hg@30
   214
		}
franta-hg@30
   215
franta-hg@30
   216
	}
franta-hg@6
   217
}