Přesun TableModelu do GUI balíčku.
1.1 --- a/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/Model.java Thu Dec 16 00:51:22 2010 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,137 +0,0 @@
1.4 -package cz.frantovo.rozsireneAtributy;
1.5 -
1.6 -import java.io.File;
1.7 -import java.io.IOException;
1.8 -import java.nio.ByteBuffer;
1.9 -import java.nio.file.Path;
1.10 -import java.nio.file.attribute.UserDefinedFileAttributeView;
1.11 -import java.util.ArrayList;
1.12 -import java.util.HashSet;
1.13 -import java.util.List;
1.14 -import java.util.logging.Level;
1.15 -import java.util.logging.Logger;
1.16 -import javax.swing.event.TableModelEvent;
1.17 -import javax.swing.event.TableModelListener;
1.18 -import javax.swing.table.TableModel;
1.19 -
1.20 -/**
1.21 - *
1.22 - * @author fiki
1.23 - */
1.24 -public class Model implements TableModel {
1.25 -
1.26 - private static final Logger log = Logger.getLogger(Model.class.getSimpleName());
1.27 - private String[] sloupečky = {"Název", "Hodnota"};
1.28 - private HashSet<TableModelListener> posluchače = new HashSet<TableModelListener>();
1.29 - private UserDefinedFileAttributeView souborovýSystém;
1.30 - private ArrayList<Atribut> atributy = new ArrayList<Atribut>();
1.31 -
1.32 - public Model(File soubor) throws IOException {
1.33 - Path cesta = soubor.toPath();
1.34 - souborovýSystém = cesta.getFileAttributeView(UserDefinedFileAttributeView.class);
1.35 - načtiAtributy();
1.36 - }
1.37 -
1.38 - public int getRowCount() {
1.39 - return atributy.size();
1.40 - }
1.41 -
1.42 - public int getColumnCount() {
1.43 - return sloupečky.length;
1.44 - }
1.45 -
1.46 - public String getColumnName(int n) {
1.47 - return sloupečky[n];
1.48 - }
1.49 -
1.50 - public Class<?> getColumnClass(int n) {
1.51 - return String.class;
1.52 - }
1.53 -
1.54 - public boolean isCellEditable(int m, int n) {
1.55 - return true;
1.56 - }
1.57 -
1.58 - public Object getValueAt(int m, int n) {
1.59 - if (n == 0) {
1.60 - return atributy.get(m).getKlíč();
1.61 - } else if (n == 1) {
1.62 - return atributy.get(m).getHodnota();
1.63 - } else {
1.64 - return null;
1.65 - }
1.66 - }
1.67 -
1.68 - public void setValueAt(Object value, int m, int n) {
1.69 - Atribut a = atributy.get(m);
1.70 - try {
1.71 - if (n == 0) {
1.72 - /** Měníme klíč – název atributu */
1.73 - String novýKlíč = String.valueOf(value.toString());
1.74 - if (!novýKlíč.equals(a.getKlíč())) {
1.75 - if (a.isPlatnýKlíč()) {
1.76 - souborovýSystém.delete(a.getKlíč());
1.77 - }
1.78 - a.setKlíč(novýKlíč);
1.79 - if (a.isPlatnáHodnota()) {
1.80 - souborovýSystém.write(a.getKlíč(), a.getHodnotaBajty());
1.81 - }
1.82 - }
1.83 - } else if (n == 1) {
1.84 - /** Měníme hodnotu atributu */
1.85 - a.setHodnota(String.valueOf(value.toString()));
1.86 - if (a.isPlatnýKlíč() && a.isPlatnáHodnota()) {
1.87 - souborovýSystém.write(a.getKlíč(), a.getHodnotaBajty());
1.88 - }
1.89 - }
1.90 - } catch (IOException e) {
1.91 - log.log(Level.SEVERE, "Selhalo ukládání atributu na souborový systém", e);
1.92 - }
1.93 - }
1.94 -
1.95 - public void addTableModelListener(TableModelListener l) {
1.96 - posluchače.add(l);
1.97 - }
1.98 -
1.99 - public void removeTableModelListener(TableModelListener l) {
1.100 - posluchače.remove(l);
1.101 - }
1.102 -
1.103 - /**
1.104 - * @param m číslo řádku
1.105 - * @return atribut, který se na něm nachází
1.106 - */
1.107 - public Atribut getAtribut(int m) {
1.108 - return atributy.get(m);
1.109 - }
1.110 -
1.111 - public void přidejAtribut(Atribut a) {
1.112 - atributy.add(a);
1.113 - upozorniPosluchače();
1.114 - }
1.115 -
1.116 - public void odeberAtribut(Atribut a) throws IOException {
1.117 - atributy.remove(a);
1.118 - if (a.isPlatnýKlíč()) {
1.119 - souborovýSystém.delete(a.getKlíč());
1.120 - }
1.121 - upozorniPosluchače();
1.122 - }
1.123 -
1.124 - public final void načtiAtributy() throws IOException {
1.125 - List<String> jménaAtributů = souborovýSystém.list();
1.126 - atributy.clear();
1.127 - for (String jménoAtributu : jménaAtributů) {
1.128 - ByteBuffer hodnotaAtributu = ByteBuffer.allocate(souborovýSystém.size(jménoAtributu));
1.129 - souborovýSystém.read(jménoAtributu, hodnotaAtributu);
1.130 - atributy.add(new Atribut(jménoAtributu, hodnotaAtributu));
1.131 - }
1.132 - upozorniPosluchače();
1.133 - }
1.134 -
1.135 - private void upozorniPosluchače() {
1.136 - for (TableModelListener p : posluchače) {
1.137 - p.tableChanged(new TableModelEvent(this));
1.138 - }
1.139 - }
1.140 -}
2.1 --- a/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/Startér.java Thu Dec 16 00:51:22 2010 +0100
2.2 +++ b/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/Startér.java Thu Dec 16 01:16:55 2010 +0100
2.3 @@ -1,5 +1,6 @@
2.4 package cz.frantovo.rozsireneAtributy;
2.5
2.6 +import cz.frantovo.rozsireneAtributy.gui.Model;
2.7 import cz.frantovo.rozsireneAtributy.gui.Panel;
2.8 import java.awt.BorderLayout;
2.9 import java.awt.event.ActionEvent;
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
3.2 +++ b/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/gui/Model.java Thu Dec 16 01:16:55 2010 +0100
3.3 @@ -0,0 +1,138 @@
3.4 +package cz.frantovo.rozsireneAtributy.gui;
3.5 +
3.6 +import cz.frantovo.rozsireneAtributy.Atribut;
3.7 +import java.io.File;
3.8 +import java.io.IOException;
3.9 +import java.nio.ByteBuffer;
3.10 +import java.nio.file.Path;
3.11 +import java.nio.file.attribute.UserDefinedFileAttributeView;
3.12 +import java.util.ArrayList;
3.13 +import java.util.HashSet;
3.14 +import java.util.List;
3.15 +import java.util.logging.Level;
3.16 +import java.util.logging.Logger;
3.17 +import javax.swing.event.TableModelEvent;
3.18 +import javax.swing.event.TableModelListener;
3.19 +import javax.swing.table.TableModel;
3.20 +
3.21 +/**
3.22 + *
3.23 + * @author fiki
3.24 + */
3.25 +public class Model implements TableModel {
3.26 +
3.27 + private static final Logger log = Logger.getLogger(Model.class.getSimpleName());
3.28 + private String[] sloupečky = {"Název", "Hodnota"};
3.29 + private HashSet<TableModelListener> posluchače = new HashSet<TableModelListener>();
3.30 + private UserDefinedFileAttributeView souborovýSystém;
3.31 + private ArrayList<Atribut> atributy = new ArrayList<Atribut>();
3.32 +
3.33 + public Model(File soubor) throws IOException {
3.34 + Path cesta = soubor.toPath();
3.35 + souborovýSystém = cesta.getFileAttributeView(UserDefinedFileAttributeView.class);
3.36 + načtiAtributy();
3.37 + }
3.38 +
3.39 + public int getRowCount() {
3.40 + return atributy.size();
3.41 + }
3.42 +
3.43 + public int getColumnCount() {
3.44 + return sloupečky.length;
3.45 + }
3.46 +
3.47 + public String getColumnName(int n) {
3.48 + return sloupečky[n];
3.49 + }
3.50 +
3.51 + public Class<?> getColumnClass(int n) {
3.52 + return String.class;
3.53 + }
3.54 +
3.55 + public boolean isCellEditable(int m, int n) {
3.56 + return true;
3.57 + }
3.58 +
3.59 + public Object getValueAt(int m, int n) {
3.60 + if (n == 0) {
3.61 + return atributy.get(m).getKlíč();
3.62 + } else if (n == 1) {
3.63 + return atributy.get(m).getHodnota();
3.64 + } else {
3.65 + return null;
3.66 + }
3.67 + }
3.68 +
3.69 + public void setValueAt(Object value, int m, int n) {
3.70 + Atribut a = atributy.get(m);
3.71 + try {
3.72 + if (n == 0) {
3.73 + /** Měníme klíč – název atributu */
3.74 + String novýKlíč = String.valueOf(value.toString());
3.75 + if (!novýKlíč.equals(a.getKlíč())) {
3.76 + if (a.isPlatnýKlíč()) {
3.77 + souborovýSystém.delete(a.getKlíč());
3.78 + }
3.79 + a.setKlíč(novýKlíč);
3.80 + if (a.isPlatnáHodnota()) {
3.81 + souborovýSystém.write(a.getKlíč(), a.getHodnotaBajty());
3.82 + }
3.83 + }
3.84 + } else if (n == 1) {
3.85 + /** Měníme hodnotu atributu */
3.86 + a.setHodnota(String.valueOf(value.toString()));
3.87 + if (a.isPlatnýKlíč() && a.isPlatnáHodnota()) {
3.88 + souborovýSystém.write(a.getKlíč(), a.getHodnotaBajty());
3.89 + }
3.90 + }
3.91 + } catch (IOException e) {
3.92 + log.log(Level.SEVERE, "Selhalo ukládání atributu na souborový systém", e);
3.93 + }
3.94 + }
3.95 +
3.96 + public void addTableModelListener(TableModelListener l) {
3.97 + posluchače.add(l);
3.98 + }
3.99 +
3.100 + public void removeTableModelListener(TableModelListener l) {
3.101 + posluchače.remove(l);
3.102 + }
3.103 +
3.104 + /**
3.105 + * @param m číslo řádku
3.106 + * @return atribut, který se na něm nachází
3.107 + */
3.108 + public Atribut getAtribut(int m) {
3.109 + return atributy.get(m);
3.110 + }
3.111 +
3.112 + public void přidejAtribut(Atribut a) {
3.113 + atributy.add(a);
3.114 + upozorniPosluchače();
3.115 + }
3.116 +
3.117 + public void odeberAtribut(Atribut a) throws IOException {
3.118 + atributy.remove(a);
3.119 + if (a.isPlatnýKlíč()) {
3.120 + souborovýSystém.delete(a.getKlíč());
3.121 + }
3.122 + upozorniPosluchače();
3.123 + }
3.124 +
3.125 + public final void načtiAtributy() throws IOException {
3.126 + List<String> jménaAtributů = souborovýSystém.list();
3.127 + atributy.clear();
3.128 + for (String jménoAtributu : jménaAtributů) {
3.129 + ByteBuffer hodnotaAtributu = ByteBuffer.allocate(souborovýSystém.size(jménoAtributu));
3.130 + souborovýSystém.read(jménoAtributu, hodnotaAtributu);
3.131 + atributy.add(new Atribut(jménoAtributu, hodnotaAtributu));
3.132 + }
3.133 + upozorniPosluchače();
3.134 + }
3.135 +
3.136 + private void upozorniPosluchače() {
3.137 + for (TableModelListener p : posluchače) {
3.138 + p.tableChanged(new TableModelEvent(this));
3.139 + }
3.140 + }
3.141 +}
4.1 --- a/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/gui/Panel.java Thu Dec 16 00:51:22 2010 +0100
4.2 +++ b/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/gui/Panel.java Thu Dec 16 01:16:55 2010 +0100
4.3 @@ -1,7 +1,6 @@
4.4 package cz.frantovo.rozsireneAtributy.gui;
4.5
4.6 import cz.frantovo.rozsireneAtributy.Atribut;
4.7 -import cz.frantovo.rozsireneAtributy.Model;
4.8 import java.io.IOException;
4.9 import java.util.logging.Level;
4.10 import java.util.logging.Logger;