001: /*
002: * Created on 13/11/2004
003: *
004: * Swing Components - visit http://sf.net/projects/gfd
005: *
006: * Copyright (C) 2004 Igor Regis da Silva Simões
007: *
008: * This program is free software; you can redistribute it and/or
009: * modify it under the terms of the GNU General Public License
010: * as published by the Free Software Foundation; either version 2
011: * of the License, or (at your option) any later version.
012: *
013: * This program is distributed in the hope that it will be useful,
014: * but WITHOUT ANY WARRANTY; without even the implied warranty of
015: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
016: * GNU General Public License for more details.
017: *
018: * You should have received a copy of the GNU General Public License
019: * along with this program; if not, write to the Free Software
020: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
021: */
022: package br.com.gfpshare.controllers;
023:
024: import br.com.gfpshare.db.DataBaseEvent;
025: import br.com.gfpshare.db.DataBaseListener;
026: import br.com.gfpshare.db.DataBaseManager;
027:
028: /**
029: * @author Igor Regis da Silva Simoes
030: */
031: public class ArquivoDeDadosAbertoContoller implements DataBaseListener {
032: private static ArquivoDeDadosAbertoContoller instance = null;
033:
034: private boolean arquivoAlterado = false;
035:
036: private boolean arquivoAberto = false;
037:
038: private String nomeArquivo = null;
039:
040: /**
041: * @param nomeArquivo Nome do arquivo de dados aberto
042: *
043: */
044: private ArquivoDeDadosAbertoContoller(String nomeArquivo) {
045: super ();
046: this .nomeArquivo = nomeArquivo;
047: DataBaseManager.getDataBaseManager().addDataBaseListener(this );
048: }
049:
050: /**
051: * @see br.com.gfpshare.db.DataBaseListener#executandoConsulta(br.com.gfpshare.db.DataBaseEvent)
052: */
053: public void executandoConsulta(DataBaseEvent e) {
054: // Não fazemos nada
055: }
056:
057: /**
058: * @see br.com.gfpshare.db.DataBaseListener#executadoAtualizacao(br.com.gfpshare.db.DataBaseEvent)
059: */
060: public void executadoAtualizacao(DataBaseEvent e) {
061: //FIXME Remover
062: //System.out.println("Atualização " + e.getSQL());
063: arquivoAlterado = true;
064: }
065:
066: /**
067: * @see br.com.gfpshare.db.DataBaseListener#fechandoDB(br.com.gfpshare.db.DataBaseEvent)
068: */
069: public void fechandoDB(DataBaseEvent e) {
070: arquivoAberto = false;
071: instance = null;
072: }
073:
074: /**
075: * Retorna uma instancia desta classe
076: * @param nomeArquivo Nome do arquivo de dados aberto
077: * @return ArquivoDeDadosAbertoContoller
078: */
079: public static ArquivoDeDadosAbertoContoller getInstance(
080: String nomeArquivo) {
081: if (instance == null)
082: try {
083: instance = new ArquivoDeDadosAbertoContoller(
084: nomeArquivo);
085: } catch (RuntimeException rte) {
086: instance = null;
087: return null;
088: }
089: if (instance.nomeArquivo == null && nomeArquivo != null)
090: instance.nomeArquivo = nomeArquivo;
091: return instance;
092: }
093:
094: /**
095: * Indica se um arquivo de dados está ou não aberto
096: * @return boolean
097: */
098: public boolean isArquivoAberto() {
099: return arquivoAberto;
100: }
101:
102: /**
103: * Indica se um arquivo de dados foi alterado
104: * @return boolean
105: */
106: public boolean isArquivoAlterado() {
107: return arquivoAlterado;
108: }
109:
110: /**
111: * Nome do arquivo aberto, null caso não tenha nenhum arquivo aberto
112: * @return String
113: */
114: public String getNomeArquivo() {
115: return nomeArquivo;
116: }
117:
118: /**
119: * Indica que o arquivo não foi alterado desde o momento em que foi salvo pela ultima vez
120: */
121: public void setArquivoNaoAlterado() {
122: this .arquivoAlterado = false;
123: }
124:
125: /**
126: * Indica que um arquivo está ou não aberto
127: */
128: public void setArquivoAberto() {
129: this .arquivoAberto = true;
130: }
131: }
|