prefix
stringlengths 82
32.6k
| middle
stringlengths 5
470
| suffix
stringlengths 0
81.2k
| file_path
stringlengths 6
168
| repo_name
stringlengths 16
77
| context
listlengths 5
5
| lang
stringclasses 4
values | ground_truth
stringlengths 5
470
|
---|---|---|---|---|---|---|---|
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out. | println("Total de saques: " + conta.getTotalSaques()); |
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
| src/relatorios/Relatorio.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Total gasto em transações = R$\" + conta.getTotalTarifas();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para saque = \" + ContaCorrente.getTarifaSaque();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de saques realizados = \" + conta.getTotalSaques();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para deposito = \" + ContaCorrente.getTarifaDeposito();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de depósitos realizados = \" + conta.getTotalDepositos();\n\t\t\tbw.append(linha + \"\\n\\n\");",
"score": 32.65361845178975
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\tpublic static void menuRelatorio(Conta conta, Cliente cliente) throws IOException, NullPointerException {\n\t\tSystem.out.println();\n\t\tScanner sc = new Scanner(System.in);\n\t\tLocale.setDefault(Locale.US);\n\t\tSystem.out.println(\"******** Menu relatório ********\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Escolha entre as opções abaixo:\");\n\t\tSystem.out.println(\"[1] Saldo\");\n\t\tSystem.out.println(\"[2] Relatório de Tributação da Conta Corrente\");\n\t\tSystem.out.println(\"[3] Relatório de Rendimento da Conta Poupança\");",
"score": 30.31726870287339
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 29.807276273703973
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tcase 2:\n\t\t\t\tif (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {\n\t\t\t\t\tRelatorio.tributacaoCC((ContaCorrente) conta);\n\t\t\t\t\tEscritor.relatorioTributacaoCC((ContaCorrente) conta);\n\t\t\t\t} else {\n\t\t\t\t\tSystem.out.println();\n\t\t\t\t\tSystem.out.println(\"Desculpe, você não possui Conta Corrente.\");\n\t\t\t\t}\n\t\t\t\tmenuRelatorio(conta, cliente);\n\t\t\t\tbreak;",
"score": 29.389154865870346
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase PRESIDENTE:\n\t\t\t\t\t\tSystem.out.println();\n\t\t\t\t\t\tSystem.out.println(\"******** Menu Presidente ********\");\n\t\t\t\t\t\tSystem.out.println(\"Escolha entre as opções abaixo:\");\n\t\t\t\t\t\tSystem.out.println(\"[1] Relatório de informações dos clientes do banco\");\n\t\t\t\t\t\tSystem.out.println(\"[2] Relatório do capital total armazenado\");\n\t\t\t\t\t\tSystem.out.println(\"[3] Retornar ao menu anterior\");\n\t\t\t\t\t\topcao = sc.nextInt();\n\t\t\t\t\t\tswitch (opcao) {",
"score": 26.429299736811167
}
] | java | println("Total de saques: " + conta.getTotalSaques()); |
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
| capitalBancoSaldo += lista.getSaldo(); |
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
| src/relatorios/Relatorio.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\tpublic static void menuFuncionario(Funcionario funcionario, Conta conta, List<Conta> listaContas, String cpf,\n\t\t\tCliente cliente) throws IOException, NullPointerException {\n\t\tScanner sc = new Scanner(System.in);\n\t\tLocale.setDefault(Locale.US);\n\t\tint opcao = 0;\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Olá \" + funcionario.getTipoDeUsuario().getTipoPessoa() + \" \" + funcionario.getNome() + \".\");\n\t\tSystem.out.println();\n\t\ttry {\n\t\t\tdo {",
"score": 37.36493349223271
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\t\t\tcase 1:\n\t\t\t\t\t\t\tSystem.out.println();\n\t\t\t\t\t\t\tRelatorio.informacoesClientes(listaContas, conta, funcionario);\n\t\t\t\t\t\t\tmenuFuncionario(funcionario, conta, listaContas, cpf, cliente);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 2:\n\t\t\t\t\t\t\tSystem.out.println();\n\t\t\t\t\t\t\tRelatorio.valorTotalCapitalBanco(listaContas, conta, funcionario);\n\t\t\t\t\t\t\tmenuFuncionario(funcionario, conta, listaContas, cpf, cliente);\n\t\t\t\t\t\t\tbreak;",
"score": 32.991315164225526
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tfor (Conta lista : listaContas) {\n\t\t\t\tcapitalTotalBanco += lista.getSaldo();\n\t\t\t}\n\t\t\tlinha = \"Total do Capital armazenado no banco: R$ \" + capitalTotalBanco;\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tString date = LocalDateTime.now().format(DateTimeFormatter.ofPattern(\"dd/MM/yyyy HH:mm:ss\"));\n\t\t\tlinha = \"Operação realizada em: \" + date;\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"******************************************************\";",
"score": 31.993474610912365
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tbw.close();\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro escrevendo arquivo: \" + e.getMessage());\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n\tpublic static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {\n\t\tSUB_CAMINHO = conta.getCpf() + \"_\" + conta.getTitular().getNome() + \"_\" + funcionario.getTipoDeUsuario();\n\t\tnew File(CAMINHO + \"\\\\\" + SUB_CAMINHO).mkdir();",
"score": 28.22104449450354
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\t\tswitch (funcionario.getTipoDeUsuario()) {\n\t\t\t\t\tcase GERENTE:\n\t\t\t\t\t\tSystem.out.println();\n\t\t\t\t\t\tSystem.out.println(\"******** Menu Gerente ********\");\n\t\t\t\t\t\tSystem.out.println(\"Escolha entre as opções abaixo:\");\n\t\t\t\t\t\tSystem.out.println(\"[1] Consulta de contas da sua agência \");\n\t\t\t\t\t\tSystem.out.println(\"[2] Retornar ao menu anterior\");\n\t\t\t\t\t\topcao = sc.nextInt();\n\t\t\t\t\t\tswitch (opcao) {\n\t\t\t\t\t\tcase 1:",
"score": 21.533634531976325
}
] | java | capitalBancoSaldo += lista.getSaldo(); |
package colas;
public class Ejercicios {
public void Ejercicio1(Queue queue) {
int acum = 0;
Nodo pointer = queue.getHead();
while (pointer != null) {
acum += (int) pointer.getElement();
pointer = (Nodo) pointer.getNext();
}
if (!queue.isEmpty()){
System.out.println("El promedio es:"+(double)(acum/queue.getSize()));
}
Nodo pointer2 = (Nodo) queue.getHead();
int cont = queue.getSize()-1;
int cont2 = 0;
int cont3 =0;
boolean firstTime = true;
while ((pointer2 != queue.getHead() || firstTime)){
firstTime = false;
while (cont2 < cont) {
pointer2 = (Nodo) pointer2.getNext();
cont2++;
}
System | .out.println(pointer2.getElement()); |
cont--;
cont2 = 0;
pointer2 = (Nodo) queue.getHead().getNext();
cont3++;
if (cont3 == queue.getSize()){
break;
}
}
}
}
| Semana 7/Lunes/Colas/src/colas/Ejercicios.java | Estructura-de-Datos-2223-3-S2-Ejercicios-en-clase-c874295 | [
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " while (true) {\n Nodo pointer2 = getHead();\n while (cont2 < cont) {\n pointer2 = pointer2.getNext();\n cont2++;\n }\n aux2 += pointer2.getElement();\n cont--;\n cont2=0;\n System.out.println(\"aux \"+aux+\" aux2 \"+aux2);",
"score": 51.15370303111877
},
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " }\n }\n length++;\n return null;\n }\n public void printList() {\n Nodo pointer = getHead();\n boolean firstTime = true;\n while (pointer != getHead() || firstTime) {\n firstTime = false;",
"score": 44.54796071922104
},
{
"filename": "Semana 2/Miercoles/Lista/src/lista/Lista.java",
"retrieved_chunk": " int cont = 0;\n while ( cont< index-1 && pointer != null) {\n pointer = (Nodo) pointer.getNext();\n cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n } else {",
"score": 26.060667203683423
},
{
"filename": "Semana 3/ListasDobles/src/listasdobles/ListaDoble.java",
"retrieved_chunk": " cont++;\n }\n //System.out.println(pointer.getElement());\n pointer2 = pointer.getNext();\n pointer.setNext(pointer2.getNext());\n pointer2.getNext().setPrevious(pointer);\n pointer2.setNext(null);\n pointer2.setPrevious(null);\n return null;\n }",
"score": 25.10664865919918
},
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n }\n } else {\n System.out.println(\"Error in index\");\n }",
"score": 24.66187300795488
}
] | java | .out.println(pointer2.getElement()); |
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println | ("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia()); |
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
| src/relatorios/Relatorio.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Total gasto em transações = R$\" + conta.getTotalTarifas();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para saque = \" + ContaCorrente.getTarifaSaque();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de saques realizados = \" + conta.getTotalSaques();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para deposito = \" + ContaCorrente.getTarifaDeposito();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de depósitos realizados = \" + conta.getTotalDepositos();\n\t\t\tbw.append(linha + \"\\n\\n\");",
"score": 60.91824104453948
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 48.320512079353065
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Taxa para tranferência = \" + ContaCorrente.getTarifaTransferencia();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de tranferências realizadas = \" + conta.getTotalTransferencias();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tif (Menu.contratoSeguro == true) {\n\t\t\t\tlinha = \"Valor segurado do Seguro de Vida = R$ \"\n\t\t\t\t\t\t+ String.format(\"%.2f\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\t}\n\t\t\tString date = LocalDateTime.now().format(DateTimeFormatter.ofPattern(\"dd/MM/yyyy HH:mm:ss\"));",
"score": 44.5645787728986
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\tpublic static void menuRelatorio(Conta conta, Cliente cliente) throws IOException, NullPointerException {\n\t\tSystem.out.println();\n\t\tScanner sc = new Scanner(System.in);\n\t\tLocale.setDefault(Locale.US);\n\t\tSystem.out.println(\"******** Menu relatório ********\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Escolha entre as opções abaixo:\");\n\t\tSystem.out.println(\"[1] Saldo\");\n\t\tSystem.out.println(\"[2] Relatório de Tributação da Conta Corrente\");\n\t\tSystem.out.println(\"[3] Relatório de Rendimento da Conta Poupança\");",
"score": 42.6693638273684
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Conta: \" + conta.getNumConta();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"O valor pago na contratação do Seguro de Vida foi de: R$ \"\n\t\t\t\t\t+ String.format(\"%.2f\", SeguroDeVida.getValorSeguro());\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"O valor segurado após taxação foi de: R$ \"\n\t\t\t\t\t+ String.format(\"%.2f\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Você pagou de tarifa R$ \" + String.format(\"%.2f\", SeguroDeVida.getValorTributacao());\n\t\t\tbw.append(linha + \"\\n\");",
"score": 40.44900963651443
}
] | java | ("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia()); |
package menus;
import java.io.IOException;
import java.util.ArrayList;
import java.util.InputMismatchException;
import java.util.List;
import java.util.Locale;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import io.Escritor;
import pessoas.Cliente;
import pessoas.Funcionario;
import principal.SistemaBancario;
import relatorios.Relatorio;
import segurosDeVida.SeguroDeVida;
public class Menu {
public static boolean contratoSeguro = false;
public static void menuEntrada() throws InputMismatchException, NullPointerException, IOException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
try {
System.out.println();
System.out.println("______ ___ _ _ _____ _____ _____ _____ _____ _____ ");
System.out.println("| ___ \\/ _ \\| \\ | / __ \\ _ | / ___| ___|_ _| ___|");
System.out.println("| |_/ / /_\\ \\ \\| | / \\/ | | | \\ `--.| |__ | | | |__ ");
System.out.println("| ___ \\ _ | . ` | | | | | | `--. \\ __| | | | __| ");
System.out.println("| |_/ / | | | |\\ | \\__/\\ \\_/ / /\\__/ / |___ | | | |___ ");
System.out.println("\\____/\\_| |_|_| \\_/\\____/\\___/ \\____/\\____/ \\_/ \\____/ ");
System.out.println();
System.out.println("******** Menu Inicial **********");
System.out.println("[1] Login");
System.out.println("[2] Encerrar");
int opcao = sc.nextInt();
switch (opcao) {
case 1:
menuInicial();
break;
case 2:
System.out.println();
Escritor.registroDeDadosAtualizados();
System.out.println("Sistema encerrado.");
System.exit(0);
break;
default:
menuEntrada();
break;
}
} catch (InputMismatchException e) {
System.out.println();
System.out.println("Ocorreu um erro.");
System.out.println("Possível solução para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuEntrada();
}
sc.close();
}
public static void menuInicial() throws InputMismatchException, IOException, NullPointerException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
Cliente cliente;
Conta conta;
Funcionario funcionario;
int senha = 0;
try {
do {
System.out.println();
System.out.println("******** Menu de Login **********");
System.out.print("[ Digite seu CPF ]: ");
String cpf = sc.nextLine();
System.out.print("[ Digite sua senha ]: ");
senha = sc.nextInt();
sc.nextLine();
System.out.println("**********************************");
cliente = SistemaBancario.mapaDeClientes.get(cpf);
conta = SistemaBancario.mapaDeContas.get(cpf);
funcionario = SistemaBancario.mapaDeFuncionarios.get(cpf);
List<Conta> listaContas = new ArrayList<>(SistemaBancario.mapaDeContas.values());
if (conta != null && funcionario != null) {
if (funcionario.getSenha() == senha) {
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
}
} else if (conta != null && cliente != null) {
if (cliente.getSenha() == senha) {
Menu.menuCliente(conta, cliente);
} else {
System.out.println("DADOS INCORRETOS. Digite novamente \n");
}
}
} while (conta == null || cliente == null || cliente.getSenha() != senha
|| funcionario.getSenha() != senha);
}
catch (InputMismatchException e) {
System.out.println("Ocorreu um erro.");
System.out.println("Possível solução para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuInicial();
}
sc.close();
}
public static void menuFuncionario(Funcionario funcionario, Conta conta, List<Conta> listaContas, String cpf,
Cliente cliente) throws IOException, NullPointerException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
int opcao = 0;
System.out.println();
System.out.println("Olá " + funcionario.getTipoDeUsuario().getTipoPessoa() + " " + funcionario.getNome() + ".");
System.out.println();
try {
do {
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Entrar como Cliente");
System.out.println("[2] Entrar como " + funcionario.getTipoDeUsuario().getTipoPessoa());
System.out.println("[3] Logout");
opcao = sc.nextInt();
switch (opcao) {
case 1:
Menu.menuCliente(conta, cliente);
break;
case 2:
switch (funcionario.getTipoDeUsuario()) {
case GERENTE:
System.out.println();
System.out.println("******** Menu Gerente ********");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Consulta de contas da sua agência ");
System.out.println("[2] Retornar ao menu anterior");
opcao = sc.nextInt();
switch (opcao) {
case 1:
Relatorio.numDeContasNaAgencia(conta, cpf, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 2:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
default:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
}
break;
case DIRETOR:
System.out.println();
System.out.println("******** Menu Diretor ********");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Relatório de informações dos clientes do banco");
System.out.println("[2] Retornar ao menu anterior");
opcao = sc.nextInt();
switch (opcao) {
case 1:
Relatorio.informacoesClientes(listaContas, conta, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 2:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
default:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
}
break;
case PRESIDENTE:
System.out.println();
System.out.println("******** Menu Presidente ********");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Relatório de informações dos clientes do banco");
System.out.println("[2] Relatório do capital total armazenado");
System.out.println("[3] Retornar ao menu anterior");
opcao = sc.nextInt();
switch (opcao) {
case 1:
System.out.println();
Relatorio.informacoesClientes(listaContas, conta, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 2:
System.out.println();
Relatorio.valorTotalCapitalBanco(listaContas, conta, funcionario);
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
case 3:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
default:
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
break;
}
break;
default:
break;
}
case 3:
contratoSeguro = false;
menuEntrada();
break;
}
} while (opcao != 1 || opcao != 2 || opcao != 3);
} catch (InputMismatchException e) {
System.out.println("Ocorreu um erro.");
System.out.println("Possíveis soluções para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
System.out.println("- Digite números ao invés de letras");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuFuncionario(funcionario, conta, listaContas, cpf, cliente);
}
sc.close();
}
public static void menuCliente(Conta conta, Cliente cliente) throws IOException, NullPointerException {
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
try {
System.out.println();
System.out.println("******** Menu cliente ********\n");
System.out.println("Olá " + cliente.getNome() + "!");
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Saque");
System.out.println("[2] Depósito");
System.out.println("[3] Transferência para outra conta");
System.out.println("[4] Extrato da conta");
System.out.println("[5] Relatórios e Saldo");
System.out.println("[6] Logout");
int opcao = sc.nextInt();
switch (opcao) {
case 1:
System.out.print("Insira o valor do saque: R$ ");
double valor = sc.nextDouble();
conta.sacar(valor, conta);
Escritor.comprovanteSaque(conta, valor);
menuCliente(conta, cliente);
break;
case 2:
System.out.printf("Insira o valor para depósito: R$ ");
valor = sc.nextDouble();
conta.depositar(valor, conta);
Escritor.comprovanteDeposito(conta, valor);
System.out.printf("Saldo atual: R$ %.2f", conta.getSaldo());
System.out.println();
menuCliente(conta, cliente);
break;
case 3:
System.out.printf("Insira o valor da transferencia: R$ ");
valor = sc.nextDouble();
if (valor < 0) {
System.out.println("Insira um valor válido.");
menuCliente(conta, cliente);
}
if (valor > conta.getSaldo()) {
System.out.println("Saldo insuficiente.");
menuCliente(conta, cliente);
}
sc.nextLine();
System.out.printf("Insira o CPF do destinatário: ");
String cpfDestinatario = sc.nextLine();
while (cpfDestinatario.equals(conta.getCpf())) {
System.out.println();
System.out.println("Você não pode fazer transferência para si mesmo!");
System.out.printf("Entre com um CPF válido: ");
cpfDestinatario = sc.nextLine();
}
Conta contaDestino = SistemaBancario.mapaDeContas.get(cpfDestinatario);
conta.transferir(contaDestino, valor, conta);
Escritor.comprovanteTransferencia(conta, contaDestino, valor);
System.out.println("Transferência realizada com sucesso.");
menuCliente(conta, cliente);
break;
case 4:
| conta.imprimeExtrato(conta); |
Escritor.extratoConta(conta);
menuCliente(conta, cliente);
break;
case 5:
menuRelatorio(conta, cliente);
break;
case 6:
contratoSeguro = false;
menuEntrada();
break;
default:
System.out.println();
System.out.println("Opção não existe. Digite o número correto.");
break;
}
} catch (InputMismatchException e) {
System.out.println();
System.out.println("Ocorreu um erro na transferência.");
System.out.println("Possível solução para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
} catch (NullPointerException e) {
System.out.println("Erro: " + e.getMessage());
} finally {
menuCliente(conta, cliente);
}
sc.close();
}
public static void menuRelatorio(Conta conta, Cliente cliente) throws IOException, NullPointerException {
System.out.println();
Scanner sc = new Scanner(System.in);
Locale.setDefault(Locale.US);
System.out.println("******** Menu relatório ********");
System.out.println();
System.out.println("Escolha entre as opções abaixo:");
System.out.println("[1] Saldo");
System.out.println("[2] Relatório de Tributação da Conta Corrente");
System.out.println("[3] Relatório de Rendimento da Conta Poupança");
System.out.println("[4] Seguro de vida");
System.out.println("[5] Retornar ao menu anterior");
int opcao = 0;
try {
opcao = sc.nextInt();
switch (opcao) {
case 1:
Relatorio.imprimirSaldo(conta);
menuRelatorio(conta, cliente);
break;
case 2:
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
Relatorio.tributacaoCC((ContaCorrente) conta);
Escritor.relatorioTributacaoCC((ContaCorrente) conta);
} else {
System.out.println();
System.out.println("Desculpe, você não possui Conta Corrente.");
}
menuRelatorio(conta, cliente);
break;
case 3:
if (conta.getTipoDeConta().equals(ContasEnum.POUPANCA)) {
Relatorio.simularRendimentoPoupanca(conta, cliente);
} else {
System.out.println();
System.out.println("Desculpe, você não possui Conta Poupança.");
menuRelatorio(conta, cliente);
}
break;
case 4:
if (contratoSeguro == true) {
System.out.println();
System.out.println("Você ja contratou esse serviço.");
} else if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
System.out
.println("Ao realizar a contratação do seguro de vida, você pagará 20% do valor como taxa");
System.out.println("Deseja contratar um seguro de vida? Sim [1] Não [2] ");
do {
opcao = sc.nextInt();
switch (opcao) {
case 1:
System.out.print("Qual o valor que será segurado? R$ ");
double valor = sc.nextDouble();
while (valor < 0) {
System.out.print("Insira um valor válido: R$ ");
valor = sc.nextDouble();
}
SeguroDeVida.setValorSeguro(valor);
conta.debitarSeguro(valor, conta, cliente);
contratoSeguro = true;
menuRelatorio(conta, cliente);
break;
case 2:
menuRelatorio(conta, cliente);
break;
default:
System.out.println();
System.out.println("Insira um valor válido. ");
System.out.println("Deseja contratar um seguro de vida? Sim [1] Não [2] ");
break;
}
} while (opcao != 1 || opcao != 2);
} else {
System.out.println();
System.out.println("Desculpe, você não possui Conta Corrente.");
menuRelatorio(conta, cliente);
}
case 5:
menuCliente(conta, cliente);
break;
default:
menuRelatorio(conta, cliente);
break;
}
} catch (InputMismatchException e) {
System.out.println();
System.out.println("Ocorreu um erro.");
System.out.println("Possíveis soluções para o erro:");
System.out.println("- Insira apenas números com ou sem ponto (.)");
System.out.println("- Digite números ao invés de letras");
} catch (IOException e) {
System.out.println(e.getMessage());
} catch (NullPointerException e) {
System.out.println(e.getMessage());
} finally {
menuRelatorio(conta, cliente);
}
sc.close();
}
} | src/menus/Menu.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"Saque realizado com sucesso.\");\n\t\t\tExtrato saque = new Extrato(LocalDate.now(), \"Saque\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(saque);\n\t\t}\n\t}\n\t@Override\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");\n\t\t} else if (valor < 0) {",
"score": 27.873717308871065
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tExtrato deposito = new Extrato(LocalDate.now(), \"Depósito\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(deposito);\n\t\t} else {\n\t\t\tSystem.out.println(\"Valor inválido\");\n\t\t}\n\t}\n\t@Override\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");",
"score": 21.73591102235556
},
{
"filename": "src/contas/Conta.java",
"retrieved_chunk": "\t\t\tExtrato saque = new Extrato(LocalDate.now(), \"Saque\", valor);\n\t\t\tconta.getlistaDeMovimentacoes().add(saque);\n\t\t}\n\t}\n\tpublic void transferir(Conta contaDestino, double valor, Conta conta) {\n\t\tif (this.saldo < valor) {\n\t\t\tSystem.out.println(\"Seu saldo é insuficiente!\");\n\t\t} else if (valor < 0) {\n\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t} else {",
"score": 21.509284625387476
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t\t\t\tif (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()\n\t\t\t\t\t\t\t.equals(gerente.getAgencia().getNumAgencia())) {\n\t\t\t\t\t\tSystem.out.println(SistemaBancario.mapaDeContas.get(cpfConta));\n\t\t\t\t\t\ttotalContas++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tSystem.out.println(\"Total de contas na agência : \" + totalContas);\n\t\t\t\tSystem.out.println(\"******************************************\");\n\t\t\t\tEscritor.relatorioContasPorAgencia(conta, funcionario);\n\t\t\t}",
"score": 20.958543535639553
},
{
"filename": "src/operacoes/Operacao.java",
"retrieved_chunk": "package operacoes;\nimport contas.Conta;\npublic interface Operacao {\n\t public void sacar(double valor, Conta conta);\n\t public void transferir(Conta contaDestino, double valor, Conta conta);\n\t public void depositar(double valor, Conta conta);\n}",
"score": 20.17873874890672
}
] | java | conta.imprimeExtrato(conta); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha | = "Agência: " + conta.getAgencia(); |
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 40.465241817973855
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 28.545387644970823
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 21.004406742630135
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 16.34109590177487
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 16.34109590177487
}
] | java | = "Agência: " + conta.getAgencia(); |
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento | = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias); |
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
| src/relatorios/Relatorio.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Simulação para CPF: \" + conta.getCpf();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Valor simulado: R$ \" + String.format(\"%.2f\", valorSimulado);\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de dias: \" + dias;\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"O rendimento seria de: R$ \" + String.format(\"%.2f\", rendimento);\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"O valor final seria de: R$ \" + String.format(\"%.2f\", totalFinal);",
"score": 61.160970247863524
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Operações realizada em: \" + date;\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"****************************************************\";\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro escrevendo arquivo: \" + e.getMessage());\n\t\t}\n\t}\n\tpublic static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,\n\t\t\tdouble valorSimulado, double totalFinal) {",
"score": 57.45146670537774
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tSystem.out.println();\n\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\tbreak;\n\t\t\tcase 3:\n\t\t\t\tSystem.out.printf(\"Insira o valor da transferencia: R$ \");\n\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\tif (valor < 0) {\n\t\t\t\t\tSystem.out.println(\"Insira um valor válido.\");\n\t\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\t}",
"score": 35.484101501208926
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\t\t\tcase 1:\n\t\t\t\t\t\t\tSystem.out.print(\"Qual o valor que será segurado? R$ \");\n\t\t\t\t\t\t\tdouble valor = sc.nextDouble();\n\t\t\t\t\t\t\twhile (valor < 0) {\n\t\t\t\t\t\t\t\tSystem.out.print(\"Insira um valor válido: R$ \");\n\t\t\t\t\t\t\t\tvalor = sc.nextDouble();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tSeguroDeVida.setValorSeguro(valor);\n\t\t\t\t\t\t\tconta.debitarSeguro(valor, conta, cliente);\n\t\t\t\t\t\t\tcontratoSeguro = true;",
"score": 32.873975047616156
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\t\tif (valor > conta.getSaldo()) {\n\t\t\t\t\tSystem.out.println(\"Saldo insuficiente.\");\n\t\t\t\t\tmenuCliente(conta, cliente);\n\t\t\t\t}\n\t\t\t\tsc.nextLine();\n\t\t\t\tSystem.out.printf(\"Insira o CPF do destinatário: \");\n\t\t\t\tString cpfDestinatario = sc.nextLine();\n\t\t\t\twhile (cpfDestinatario.equals(conta.getCpf())) {\n\t\t\t\t\tSystem.out.println();\n\t\t\t\t\tSystem.out.println(\"Você não pode fazer transferência para si mesmo!\");",
"score": 30.084542123281192
}
] | java | = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias); |
package relatorios;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import contas.Conta;
import contas.ContaCorrente;
import contas.ContaPoupanca;
import io.Escritor;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Funcionario;
import pessoas.Gerente;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Relatorio {
public static void imprimirSaldo(Conta conta) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = new Date();
System.out.println();
System.out.println("******** Saldo na Conta ********");
System.out.println("Tipo de conta: " + conta.getTipoDeConta().name());
System.out.println("Número da conta: " + conta.getNumConta());
System.out.println("Saldo: " + String.format("R$ %.2f", conta.getSaldo()));
System.out.println("Data: " + sdf.format(date));
System.out.println("********************************");
Escritor.comprovanteSaldo(conta);
}
public static void tributacaoCC(ContaCorrente conta) {
System.out.println();
System.out.println("****** Relatório de tributação ******");
System.out.println();
System.out.println("Valor de tarifa cobrado no saque: R$ " + ContaCorrente.getTarifaSaque());
System.out.println("Total de saques: " + conta.getTotalSaques());
System.out.println();
System.out.println("Valor de tarifa cobrado no depósito: R$ " + ContaCorrente.getTarifaDeposito());
System.out.println("Total de depósitos: " + conta.getTotalDepositos());
System.out.println();
System.out.println("Valor de tarifa cobrado na tranferência: R$ " + ContaCorrente.getTarifaTransferencia());
System.out.println("Total de transferências: " + conta.getTotalTransferencias());
System.out.println("**************************************");
System.out.println();
double | tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque(); |
double tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();
double tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();
System.out.println("Total de tarifas cobradas em saques: R$" + tarifaTotalSaque);
System.out.println("Total de tarifas cobradas em depósitos: R$" + tarifaTotalDeposito);
System.out.println("Total de tarifas cobradas em transferências: R$" + tarifaTotalTransferencia);
double somaTarifas = tarifaTotalSaque + tarifaTotalDeposito + tarifaTotalTransferencia;
System.out.println("Soma de todas as tarifas: R$" + somaTarifas);
System.out.println();
if (Menu.contratoSeguro == true) {
System.out.printf("O valor adicionado para seu seguro foi de: R$%.2f%n",
SeguroDeVida.getValorSeguroAposTaxa());
}
}
public static void simularRendimentoPoupanca(Conta conta, Cliente cliente) {
Scanner sc = new Scanner(System.in);
System.out.println();
System.out.println("****** Simulação de Rendimento da Poupança ******");
Double valorSimulado = 0.0;
Integer dias = 0;
do {
System.out.print("Qual valor deseja simular: R$ ");
valorSimulado = sc.nextDouble();
if (valorSimulado < 0 || valorSimulado == null)
System.out.println("Insira um valor positivo em reais. \n");
} while (valorSimulado < 0);
do {
System.out.printf("Quantos dias deseja saber o rendimento: ");
dias = sc.nextInt();
if (dias < 0)
System.out.println("Insira um valor positivo de dias. \n");
} while (dias < 0 || dias == null);
Double rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);
double totalFinal = valorSimulado + rendimento;
System.out.printf("O rendimento para o prazo informado: R$ %.2f%n", rendimento);
System.out.printf("Valor final ficaria: R$ %.2f", totalFinal);
Escritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);
System.out.println();
System.out.println("**************************************************");
try {
Menu.menuRelatorio(conta, cliente);
} catch (NullPointerException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sc.close();
}
public static void numDeContasNaAgencia(Conta conta, String cpf, Funcionario funcionario) throws IOException {
int totalContas = 0;
Gerente gerente = SistemaBancario.mapaDeGerentes.get(cpf);
System.out.println();
System.out.println("****** Contas na agência do Gerente ******");
try {
if (gerente.getCpf().equals(cpf)) {
for (String cpfConta : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpfConta).getAgencia().getNumAgencia()
.equals(gerente.getAgencia().getNumAgencia())) {
System.out.println(SistemaBancario.mapaDeContas.get(cpfConta));
totalContas++;
}
}
System.out.println("Total de contas na agência : " + totalContas);
System.out.println("******************************************");
Escritor.relatorioContasPorAgencia(conta, funcionario);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
public static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)
throws IOException {
System.out.println("*************** Informações dos Clientes *****************");
Collections.sort(contas);
for (Conta c : contas) {
System.out.printf("NOME: %s\t| AGÊNCIA: %s\n", c.getTitular(), c.getAgencia());
}
System.out.println("**********************************************************");
System.out.println();
Escritor.relatorioClientes(contas, conta, funcionario);
}
public static void valorTotalCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
System.out.println();
System.out.println("********* Consulta do Capital do Banco ***********");
double capitalBancoSaldo = 0;
for (Conta lista : listaContas) {
capitalBancoSaldo += lista.getSaldo();
}
System.out.printf("Total em saldo: R$ %.2f%n", capitalBancoSaldo);
System.out.println("**************************************************");
Escritor.relatorioCapitalBanco(listaContas, conta, funcionario);
}
public static void SeguroDeVida(Conta conta, Cliente cliente) {
System.out.println();
System.out.println("*********** Seguro de vida ***********");
System.out.println();
System.out.println("NOME : " + cliente.getNome());
System.out.println("CPF : " + Cliente.imprimeCPF(cliente.getCpf()));
System.out.printf("O valor debitado do seu saldo foi de: R$ %.2f%n", SeguroDeVida.getValorSeguro());
System.out.printf("O valor segurado foi de: R$ %.2f%n", SeguroDeVida.getValorSeguroAposTaxa());
System.out.printf("Você pagou R$ %.2f de tarifa.", SeguroDeVida.getValorTributacao());
System.out.println("\n\n**************************************");
Escritor.comprovanteSeguroDeVida(conta, cliente);
}
}
| src/relatorios/Relatorio.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Total gasto em transações = R$\" + conta.getTotalTarifas();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para saque = \" + ContaCorrente.getTarifaSaque();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de saques realizados = \" + conta.getTotalSaques();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tlinha = \"Taxa para deposito = \" + ContaCorrente.getTarifaDeposito();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de depósitos realizados = \" + conta.getTotalDepositos();\n\t\t\tbw.append(linha + \"\\n\\n\");",
"score": 48.51602215907042
},
{
"filename": "src/io/Escritor.java",
"retrieved_chunk": "\t\t\tlinha = \"Taxa para tranferência = \" + ContaCorrente.getTarifaTransferencia();\n\t\t\tbw.append(linha + \"\\n\");\n\t\t\tlinha = \"Total de tranferências realizadas = \" + conta.getTotalTransferencias();\n\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\tif (Menu.contratoSeguro == true) {\n\t\t\t\tlinha = \"Valor segurado do Seguro de Vida = R$ \"\n\t\t\t\t\t\t+ String.format(\"%.2f\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t\t\tbw.append(linha + \"\\n\\n\");\n\t\t\t}\n\t\t\tString date = LocalDateTime.now().format(DateTimeFormatter.ofPattern(\"dd/MM/yyyy HH:mm:ss\"));",
"score": 39.36470621249147
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 38.89911899349103
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\tpublic static void menuRelatorio(Conta conta, Cliente cliente) throws IOException, NullPointerException {\n\t\tSystem.out.println();\n\t\tScanner sc = new Scanner(System.in);\n\t\tLocale.setDefault(Locale.US);\n\t\tSystem.out.println(\"******** Menu relatório ********\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Escolha entre as opções abaixo:\");\n\t\tSystem.out.println(\"[1] Saldo\");\n\t\tSystem.out.println(\"[2] Relatório de Tributação da Conta Corrente\");\n\t\tSystem.out.println(\"[3] Relatório de Rendimento da Conta Poupança\");",
"score": 31.19783847403832
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tcase 2:\n\t\t\t\tif (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {\n\t\t\t\t\tRelatorio.tributacaoCC((ContaCorrente) conta);\n\t\t\t\t\tEscritor.relatorioTributacaoCC((ContaCorrente) conta);\n\t\t\t\t} else {\n\t\t\t\t\tSystem.out.println();\n\t\t\t\t\tSystem.out.println(\"Desculpe, você não possui Conta Corrente.\");\n\t\t\t\t}\n\t\t\t\tmenuRelatorio(conta, cliente);\n\t\t\t\tbreak;",
"score": 29.291808938677928
}
] | java | tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + | ag.getNumAgencia()); |
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/principal/SistemaBancario.java",
"retrieved_chunk": "\tpublic static Map<String, Conta> mapaDeContas = new HashMap<>();\n\tpublic static List<Agencia> listaAgencias = new ArrayList<>();\n\tpublic static void main(String[] args) throws InputMismatchException, NullPointerException, IOException {\n\t\tLeitor.leitura(\".\\\\database\\\\registrodedados.txt\");\t\t\n\t\tMenu.menuEntrada();\n\t}\n}",
"score": 36.80866498975192
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 19.808347035597656
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"- Insira apenas números com ou sem ponto (.)\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} finally {\n\t\t\tmenuCliente(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}",
"score": 15.960152469100947
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro na leitura dos dados: \" + e.getMessage());\n\t\t}\n\t}\n}",
"score": 15.865291925384408
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 15.625570436914431
}
] | java | ag.getNumAgencia()); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular( | ).getNome() + "_" + conta.getTitular().getTipoDeUsuario(); |
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 28.367791959863958
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"- Insira apenas números com ou sem ponto (.)\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} finally {\n\t\t\tmenuCliente(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}",
"score": 23.72952313162101
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro na leitura dos dados: \" + e.getMessage());\n\t\t}\n\t}\n}",
"score": 22.602502626081204
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 20.12148358067034
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 19.89787654473176
}
] | java | ).getNome() + "_" + conta.getTitular().getTipoDeUsuario(); |
package colas;
public class Ejercicios {
public void Ejercicio1(Queue queue) {
int acum = 0;
Nodo pointer = queue.getHead();
while (pointer != null) {
acum += (int) pointer.getElement();
pointer = (Nodo) pointer.getNext();
}
if (!queue.isEmpty()){
System.out.println("El promedio es:"+(double)(acum/queue.getSize()));
}
Nodo pointer2 = (Nodo) queue.getHead();
int cont = queue.getSize()-1;
int cont2 = 0;
int cont3 =0;
boolean firstTime = true;
while ((pointer2 != queue.getHead() || firstTime)){
firstTime = false;
while (cont2 < cont) {
pointer2 = (Nodo) pointer2.getNext();
cont2++;
}
System.out.println(pointer2.getElement());
cont--;
cont2 = 0;
pointer2 = (Nodo) queue.getHead().getNext();
cont3++;
if (cont3 == | queue.getSize()){ |
break;
}
}
}
}
| Semana 7/Lunes/Colas/src/colas/Ejercicios.java | Estructura-de-Datos-2223-3-S2-Ejercicios-en-clase-c874295 | [
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " while (true) {\n Nodo pointer2 = getHead();\n while (cont2 < cont) {\n pointer2 = pointer2.getNext();\n cont2++;\n }\n aux2 += pointer2.getElement();\n cont--;\n cont2=0;\n System.out.println(\"aux \"+aux+\" aux2 \"+aux2);",
"score": 44.30378013759954
},
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n }\n } else {\n System.out.println(\"Error in index\");\n }",
"score": 27.65310013165302
},
{
"filename": "Semana 3/ListasDobles/src/listasdobles/ListaDoble.java",
"retrieved_chunk": " cont++;\n }\n //System.out.println(pointer.getElement());\n pointer2 = pointer.getNext();\n pointer.setNext(pointer2.getNext());\n pointer2.getNext().setPrevious(pointer);\n pointer2.setNext(null);\n pointer2.setPrevious(null);\n return null;\n }",
"score": 26.96531583953119
},
{
"filename": "Semana 2/Miercoles/Lista/src/lista/Lista.java",
"retrieved_chunk": " int cont = 0;\n while ( cont< index-1 && pointer != null) {\n pointer = (Nodo) pointer.getNext();\n cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n } else {",
"score": 25.868655156601633
},
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n } else {\n System.out.println(\"Error in index\");\n }\n }\n }",
"score": 25.101587274177703
}
] | java | queue.getSize()){ |
package colas;
public class Ejercicios {
public void Ejercicio1(Queue queue) {
int acum = 0;
Nodo pointer = queue.getHead();
while (pointer != null) {
acum += (int) pointer.getElement();
pointer = (Nodo) pointer.getNext();
}
if (!queue.isEmpty()){
System.out.println("El promedio es:"+(double)(acum/queue.getSize()));
}
Nodo pointer2 = (Nodo) queue.getHead();
int cont = queue.getSize()-1;
int cont2 = 0;
int cont3 =0;
boolean firstTime = true;
while ((pointer2 != queue.getHead() || firstTime)){
firstTime = false;
while (cont2 < cont) {
pointer2 = (Nodo) pointer2.getNext();
cont2++;
}
System.out.println(pointer2.getElement());
cont--;
cont2 = 0;
pointer2 | = (Nodo) queue.getHead().getNext(); |
cont3++;
if (cont3 == queue.getSize()){
break;
}
}
}
}
| Semana 7/Lunes/Colas/src/colas/Ejercicios.java | Estructura-de-Datos-2223-3-S2-Ejercicios-en-clase-c874295 | [
{
"filename": "Semana 5/Ejercicios/src/ejercicios/Lista.java",
"retrieved_chunk": " while (true) {\n Nodo pointer2 = getHead();\n while (cont2 < cont) {\n pointer2 = pointer2.getNext();\n cont2++;\n }\n aux2 += pointer2.getElement();\n cont--;\n cont2=0;\n System.out.println(\"aux \"+aux+\" aux2 \"+aux2);",
"score": 57.90634655108514
},
{
"filename": "Semana 2/Miercoles/Lista/src/lista/Lista.java",
"retrieved_chunk": " int cont = 0;\n while ( cont< index-1 && pointer != null) {\n pointer = (Nodo) pointer.getNext();\n cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n } else {",
"score": 31.734412248001654
},
{
"filename": "Semana 4/Lunes/ListasCirculares/src/listascirculares/ListaCircular.java",
"retrieved_chunk": " cont++;\n }\n pointer2 = (Nodo) pointer.getNext();\n pointer.setNext((Nodo) pointer2.getNext());\n pointer2.setNext(null);\n return pointer2;\n }\n } else {\n System.out.println(\"Error in index\");\n }",
"score": 30.490240450882954
},
{
"filename": "Semana 3/ListasDobles/src/listasdobles/ListaDoble.java",
"retrieved_chunk": " cont++;\n }\n //System.out.println(pointer.getElement());\n pointer2 = pointer.getNext();\n pointer.setNext(pointer2.getNext());\n pointer2.getNext().setPrevious(pointer);\n pointer2.setNext(null);\n pointer2.setPrevious(null);\n return null;\n }",
"score": 29.648563873495057
},
{
"filename": "Semana 3/ListasDobles/src/listasdobles/ListaDoble.java",
"retrieved_chunk": " while ( cont< index-1 && pointer != null) {\n pointer = (NodoDoble) pointer.getNext();\n cont++;\n }\n pointer2 = pointer.getNext();\n pointer.setNext(pointer2.getNext());\n pointer2.getNext().setPrevious(pointer);\n pointer2.setNext(null);\n pointer2.setPrevious(null);\n return pointer2;",
"score": 28.112461719741727
}
] | java | = (Nodo) queue.getHead().getNext(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = | "Agência : " + conta.getAgencia(); |
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 51.40370833840947
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 42.38338493064589
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 28.55937085521562
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 21.92862354779488
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 20.976325972602154
}
] | java | "Agência : " + conta.getAgencia(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf( | ) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia"; |
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 38.85546074000276
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 25.7431860310702
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"- Insira apenas números com ou sem ponto (.)\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} finally {\n\t\t\tmenuCliente(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}",
"score": 24.100040313197862
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro na leitura dos dados: \" + e.getMessage());\n\t\t}\n\t}\n}",
"score": 22.602502626081204
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 20.335940535610007
}
] | java | ) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia"; |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
| String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato"; |
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 38.85546074000276
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 26.729566077725533
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"- Insira apenas números com ou sem ponto (.)\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} finally {\n\t\t\tmenuCliente(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}",
"score": 24.100040313197862
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro na leitura dos dados: \" + e.getMessage());\n\t\t}\n\t}\n}",
"score": 22.602502626081204
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 20.335940535610007
}
] | java | String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato"; |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta | .getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato"; |
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 38.85546074000276
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 24.574267064247515
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"- Insira apenas números com ou sem ponto (.)\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} finally {\n\t\t\tmenuCliente(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}",
"score": 24.100040313197862
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro na leitura dos dados: \" + e.getMessage());\n\t\t}\n\t}\n}",
"score": 22.602502626081204
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 20.335940535610007
}
] | java | .getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato"; |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + | conta.getTipoDeConta(); |
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 40.178021580896115
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 31.054625811431965
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 21.04631262130706
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 19.415164173358143
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 17.61175186817525
}
] | java | conta.getTipoDeConta(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = | "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf()); |
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 40.465241817973855
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 28.545387644970823
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 22.327974246489916
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 21.004406742630135
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 20.80932560844007
}
] | java | "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf()); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + | conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta(); |
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 49.51313431891585
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 39.10356030662082
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 24.385730353452892
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 23.978017574465497
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 23.978017574465497
}
] | java | conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " | + conta.imprimeCPF(conta.getCpf()); |
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 40.465241817973855
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 28.545387644970823
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 22.327974246489916
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 21.004406742630135
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 20.80932560844007
}
] | java | + conta.imprimeCPF(conta.getCpf()); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " | + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta(); |
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 49.51313431891585
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 39.10356030662082
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 24.385730353452892
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 23.978017574465497
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 23.978017574465497
}
] | java | + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for ( | Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) { |
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 39.149358212216335
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 34.94238572875782
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 27.60707041623445
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 27.60707041623445
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 26.98987584527626
}
] | java | Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) { |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
| linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo()); |
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 70.5199452762836
},
{
"filename": "src/extratos/Extrato.java",
"retrieved_chunk": "\tpublic String toString() {\n\t\treturn data + \" | \" + tipoDeMovimentacao \n\t\t\t\t+ \" | R$ \" + String.format(\"%.2f\", valor);\n\t}\t\n}",
"score": 38.798006420382954
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 37.25735354166991
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 35.4625750503745
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 35.34557485117313
}
] | java | linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo()); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome( | ) + "_" + conta.getTitular().getTipoDeUsuario(); |
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 28.367791959863958
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"- Insira apenas números com ou sem ponto (.)\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} finally {\n\t\t\tmenuCliente(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}",
"score": 23.72952313162101
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro na leitura dos dados: \" + e.getMessage());\n\t\t}\n\t}\n}",
"score": 22.602502626081204
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 20.12148358067034
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 19.89787654473176
}
] | java | ) + "_" + conta.getTitular().getTipoDeUsuario(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha | = "Agencia: " + conta.getAgencia(); |
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 40.465241817973855
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 30.974088946091136
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 21.004406742630135
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 17.8474231246989
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 15.70131565718258
}
] | java | = "Agencia: " + conta.getAgencia(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
| linha = "Tipo: " + conta.getTipoDeConta(); |
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 40.178021580896115
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 34.39781301543815
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 22.050715272552026
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 21.04631262130706
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 19.92157675802098
}
] | java | linha = "Tipo: " + conta.getTipoDeConta(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf( | ) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo"; |
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 38.85546074000276
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t}\n\t}\n\tpublic static void informacoesClientes(List<Conta> contas, Conta conta, Funcionario funcionario)\n\t\t\tthrows IOException {\n\t\tSystem.out.println(\"*************** Informações dos Clientes *****************\");\n\t\tCollections.sort(contas);\n\t\tfor (Conta c : contas) {\n\t\t\tSystem.out.printf(\"NOME: %s\\t| AGÊNCIA: %s\\n\", c.getTitular(), c.getAgencia());",
"score": 24.574267064247515
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tSystem.out.println(\"- Insira apenas números com ou sem ponto (.)\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(\"Erro: \" + e.getMessage());\n\t\t} finally {\n\t\t\tmenuCliente(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}",
"score": 24.100040313197862
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\t\tbreak;\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Erro na leitura dos dados: \" + e.getMessage());\n\t\t}\n\t}\n}",
"score": 22.602502626081204
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} catch (NullPointerException e) {\n\t\t\tSystem.out.println(e.getMessage());\n\t\t} finally {\n\t\t\tmenuRelatorio(conta, cliente);\n\t\t}\n\t\tsc.close();\n\t}\n}",
"score": 20.335940535610007
}
] | java | ) + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo"; |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
| String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca"; |
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 38.85546074000276
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 28.91425224305721
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tdo {\n\t\t\tSystem.out.printf(\"Quantos dias deseja saber o rendimento: \");\n\t\t\tdias = sc.nextInt();\n\t\t\tif (dias < 0)\n\t\t\t\tSystem.out.println(\"Insira um valor positivo de dias. \\n\");\n\t\t} while (dias < 0 || dias == null);\n\t\tDouble rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);\n\t\tdouble totalFinal = valorSimulado + rendimento;\n\t\tSystem.out.printf(\"O rendimento para o prazo informado: R$ %.2f%n\", rendimento);\n\t\tSystem.out.printf(\"Valor final ficaria: R$ %.2f\", totalFinal);",
"score": 26.44766746386277
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 18.133051372502454
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 18.133051372502454
}
] | java | String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca"; |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = | "Saldo: R$" + String.format("%.2f", (conta.getSaldo())); |
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 52.47252754682652
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 45.39216261259243
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 31.117285923241994
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 28.014535872021593
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tDate date = new Date();\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"******** Saldo na Conta ********\");\n\t\tSystem.out.println(\"Tipo de conta: \" + conta.getTipoDeConta().name());\n\t\tSystem.out.println(\"Número da conta: \" + conta.getNumConta());\n\t\tSystem.out.println(\"Saldo: \" + String.format(\"R$ %.2f\", conta.getSaldo()));\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"********************************\");\n\t\tEscritor.comprovanteSaldo(conta);\n\t}",
"score": 24.542714965805985
}
] | java | "Saldo: R$" + String.format("%.2f", (conta.getSaldo())); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha | = "Simulação para CPF: " + conta.getCpf(); |
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 39.39642260955681
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 27.965311264144592
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Simulação de Rendimento da Poupança ******\");\n\t\tDouble valorSimulado = 0.0;\n\t\tInteger dias = 0;\n\t\tdo {\n\t\t\tSystem.out.print(\"Qual valor deseja simular: R$ \");\n\t\t\tvalorSimulado = sc.nextDouble();\n\t\t\tif (valorSimulado < 0 || valorSimulado == null)\n\t\t\t\tSystem.out.println(\"Insira um valor positivo em reais. \\n\");\n\t\t} while (valorSimulado < 0);",
"score": 24.125565333579868
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 21.16686831633691
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 21.004406742630135
}
] | java | = "Simulação para CPF: " + conta.getCpf(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = | "Agência : " + conta.getAgencia().getNumAgencia(); |
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 45.09197110233596
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 36.16276594619719
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 20.823634465284194
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 17.356414402276258
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 17.356414402276258
}
] | java | "Agência : " + conta.getAgencia().getNumAgencia(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha | = "Total gasto em transações = R$" + conta.getTotalTarifas(); |
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 31.054625811431965
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 30.591214161763126
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 27.42637452951965
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 21.04631262130706
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 15.371918322694412
}
] | java | = "Total gasto em transações = R$" + conta.getTotalTarifas(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format( | "%.2f", ((ContaCorrente) conta).getTotalTarifas()); |
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 42.13529560136457
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 22.309728791310256
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$%.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"****************************************************\");\n\t}\n\t@Override\n\tpublic String toString() {\n\t\treturn \"Agencia = \" + getAgencia() + \", Titular = \" + getTitular() + \", Numero = \" + getNumConta()",
"score": 20.864195610576093
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\t\tcapitalBancoSaldo += lista.getSaldo();\n\t\t}\n\t\tSystem.out.printf(\"Total em saldo: R$ %.2f%n\", capitalBancoSaldo);\n\t\tSystem.out.println(\"**************************************************\");\n\t\tEscritor.relatorioCapitalBanco(listaContas, conta, funcionario);\n\t}\n\tpublic static void SeguroDeVida(Conta conta, Cliente cliente) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"*********** Seguro de vida ***********\");\n\t\tSystem.out.println();",
"score": 20.385800864437243
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\t\tcase 2:\n\t\t\t\tif (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {\n\t\t\t\t\tRelatorio.tributacaoCC((ContaCorrente) conta);\n\t\t\t\t\tEscritor.relatorioTributacaoCC((ContaCorrente) conta);\n\t\t\t\t} else {\n\t\t\t\t\tSystem.out.println();\n\t\t\t\t\tSystem.out.println(\"Desculpe, você não possui Conta Corrente.\");\n\t\t\t\t}\n\t\t\t\tmenuRelatorio(conta, cliente);\n\t\t\t\tbreak;",
"score": 17.77873913883326
}
] | java | "%.2f", ((ContaCorrente) conta).getTotalTarifas()); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf( | ) + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca"; |
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 38.34722967653196
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tdo {\n\t\t\tSystem.out.printf(\"Quantos dias deseja saber o rendimento: \");\n\t\t\tdias = sc.nextInt();\n\t\t\tif (dias < 0)\n\t\t\t\tSystem.out.println(\"Insira um valor positivo de dias. \\n\");\n\t\t} while (dias < 0 || dias == null);\n\t\tDouble rendimento = valorSimulado * ((ContaPoupanca.getTaxaRendimento() / 30) * dias);\n\t\tdouble totalFinal = valorSimulado + rendimento;\n\t\tSystem.out.printf(\"O rendimento para o prazo informado: R$ %.2f%n\", rendimento);\n\t\tSystem.out.printf(\"Valor final ficaria: R$ %.2f\", totalFinal);",
"score": 26.147762851947974
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tEscritor.rendimentDaPoupanca(conta, cliente, rendimento, dias, valorSimulado, totalFinal);\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************************************************\");\n\t\ttry {\n\t\t\tMenu.menuRelatorio(conta, cliente);\n\t\t} catch (NullPointerException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"score": 24.526679451560035
},
{
"filename": "src/contas/ContaPoupanca.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"**************** Extrato da Conta Corrente ****************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 17.66218095334564
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t@Override\n\tpublic void imprimeExtrato(Conta conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"************* Extrato da Conta Poupança *************\");\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"dd/MM/yyyy HH:mm:ss\");\n\t\tDate date = new Date();\n\t\tSystem.out.println(\"Titular: \" + this.getTitular().getNome() + \", CPF: \" + Cliente.imprimeCPF(getCpf()));\n\t\tSystem.out.println(\"Agência: \" + getAgencia().getNumAgencia() + \", Número da conta: \" + getNumConta());\n\t\tSystem.out.println();\n\t\tfor (Extrato cc : getlistaDeMovimentacoes()) {",
"score": 17.66218095334564
}
] | java | ) + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca"; |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
| linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito(); |
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 56.27750202011205
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 48.627141174346264
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 44.17393402916427
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 36.83350713649611
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 32.83648129261086
}
] | java | linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha | = "Taxa para saque = " + ContaCorrente.getTarifaSaque(); |
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 39.39642260955681
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 33.819786237831046
},
{
"filename": "src/menus/Menu.java",
"retrieved_chunk": "\t\tLocale.setDefault(Locale.US);\n\t\ttry {\n\t\t\tSystem.out.println();\n\t\t\tSystem.out.println(\"______ ___ _ _ _____ _____ _____ _____ _____ _____ \");\n\t\t\tSystem.out.println(\"| ___ \\\\/ _ \\\\| \\\\ | / __ \\\\ _ | / ___| ___|_ _| ___|\");\n\t\t\tSystem.out.println(\"| |_/ / /_\\\\ \\\\ \\\\| | / \\\\/ | | | \\\\ `--.| |__ | | | |__ \");\n\t\t\tSystem.out.println(\"| ___ \\\\ _ | . ` | | | | | | `--. \\\\ __| | | | __| \");\n\t\t\tSystem.out.println(\"| |_/ / | | | |\\\\ | \\\\__/\\\\ \\\\_/ / /\\\\__/ / |___ | | | |___ \");\n\t\t\tSystem.out.println(\"\\\\____/\\\\_| |_|_| \\\\_/\\\\____/\\\\___/ \\\\____/\\\\____/ \\\\_/ \\\\____/ \");\n\t\t\tSystem.out.println();",
"score": 30.591214161763126
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 27.965311264144592
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"NOME : \" + cliente.getNome());\n\t\tSystem.out.println(\"CPF : \" + Cliente.imprimeCPF(cliente.getCpf()));\n\t\tSystem.out.printf(\"O valor debitado do seu saldo foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguro());\n\t\tSystem.out.printf(\"O valor segurado foi de: R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\tSystem.out.printf(\"Você pagou R$ %.2f de tarifa.\", SeguroDeVida.getValorTributacao());\n\t\tSystem.out.println(\"\\n\\n**************************************\");\n\t\tEscritor.comprovanteSeguroDeVida(conta, cliente);\n\t}\n}",
"score": 20.405268000845187
}
] | java | = "Taxa para saque = " + ContaCorrente.getTarifaSaque(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha | = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia(); |
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 50.334889129992426
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 47.926321037785684
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 42.42229017030182
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 41.803308549819654
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 32.39988039820208
}
] | java | = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia(); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = | "Total de saques realizados = " + conta.getTotalSaques(); |
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = "Total de tranferências realizadas = " + conta.getTotalTransferencias();
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 49.51313431891585
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 39.6108135988518
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 36.67485900550051
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 30.834523712615827
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 26.745184542164836
}
] | java | "Total de saques realizados = " + conta.getTotalSaques(); |
/*
* This file is part of CheckHost4J - https://github.com/FlorianMichael/CheckHost4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.checkhost4j.types;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import de.florianmichael.checkhost4j.CheckHostAPI;
import de.florianmichael.checkhost4j.results.*;
import java.io.IOException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class InternalInterface {
static Map<CHServer, PingResult> ping(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject | main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8)); |
Map<CHServer, PingResult> result = new HashMap<>();
for (CHServer server : servers) {
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
JsonArray jsonArray = main.get(server.name()).getAsJsonArray();
for (int k = 0; k < jsonArray.size(); k++) {
final JsonElement element = jsonArray.get(k);
if (element.isJsonArray()) {
JsonArray innerJsonArray = element.getAsJsonArray();
List<PingResult.PingEntry> pEntries = new ArrayList<>();
for (int j = 0; j < innerJsonArray.size(); j++) {
if (!innerJsonArray.get(j).isJsonArray()) continue;
JsonArray ja3 = innerJsonArray.get(j).getAsJsonArray();
if (ja3.size() != 2 && ja3.size() != 3) {
pEntries.add(new PingResult.PingEntry("Unable to resolve domain name.", -1, null));
continue;
}
String status = ja3.get(0).getAsString();
double ping = ja3.get(1).getAsDouble();
String addr = null;
if (ja3.size() > 2) {
addr = ja3.get(2).getAsString();
}
PingResult.PingEntry pEntry = new PingResult.PingEntry(status, ping, addr);
pEntries.add(pEntry);
}
result.put(server, new PingResult(pEntries));
}
}
}
return result;
}
static Map<CHServer, TCPResult> tcp(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, TCPResult> result = new HashMap<CHServer, TCPResult>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
JsonObject obj = ja.get(0).getAsJsonObject();
String error = null;
if (obj.has("error")) {
error = obj.get("error").getAsString();
}
String addr = null;
if (obj.has("address")) {
addr = obj.get("address").getAsString();
}
double ping = 0;
if (obj.has("time")) {
ping = obj.get("time").getAsDouble();
}
TCPResult res = new TCPResult(ping, addr, error);
result.put(server, res);
}
return result;
}
static Map<CHServer, UDPResult> udp(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, UDPResult> result = new HashMap<>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
JsonObject obj = ja.get(0).getAsJsonObject();
String error = null;
if (obj.has("error")) {
error = obj.get("error").getAsString();
}
String addr = null;
if (obj.has("address")) {
addr = obj.get("address").getAsString();
}
double ping = 0;
if (obj.has("time")) {
ping = obj.get("time").getAsDouble();
}
double timeout = 0;
if (obj.has("timeout")) {
timeout = obj.get("timeout").getAsDouble();
}
UDPResult res = new UDPResult(timeout, ping, addr, error);
result.put(server, res);
}
return result;
}
static Map<CHServer, HTTPResult> http(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, HTTPResult> result = new HashMap<CHServer, HTTPResult>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
ja = ja.get(0).getAsJsonArray();
double ping = ja.get(1).getAsDouble();
String status = ja.get(2).getAsString();
int error = ja.size() > 3 && ja.get(3).isJsonPrimitive() ? ja.get(3).getAsInt() : -1;
if (error == -1)
continue;
String addr = ja.size() > 4 && ja.get(4).isJsonPrimitive() ? ja.get(4).getAsString() : null;
HTTPResult res = new HTTPResult(status, ping, addr, error);
result.put(server, res);
}
return result;
}
static Map<CHServer, DNSResult> dns(Map.Entry<String, List<CHServer>> input) throws IOException {
String id = input.getKey();
List<CHServer> servers = input.getValue();
JsonObject main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8));
Map<CHServer, DNSResult> result = new HashMap<CHServer, DNSResult>();
for (CHServer server : servers) {
JsonArray ja = null;
if (!main.has(server.name())) continue;
if (main.get(server.name()).isJsonNull()) continue;
ja = main.get(server.name()).getAsJsonArray();
if (ja.size() != 1) continue;
JsonObject obj = ja.get(0).getAsJsonObject();
Map<String, String[]> domainInfos = new HashMap<String, String[]>();
for (Map.Entry<String, JsonElement> entry : obj.entrySet()) {
if (entry.getKey().equals("TTL") || !entry.getValue().isJsonArray())
continue;
JsonArray ja2 = entry.getValue().getAsJsonArray();
String[] values = new String[ja2.size()];
for (int k = 0; k < ja2.size(); k++) {
if (ja2.get(k).isJsonPrimitive()) {
values[k] = ja2.get(k).getAsString();
}
}
domainInfos.put(entry.getKey(), values);
}
DNSResult res = new DNSResult(obj.has("TTL") && obj.get("TTL").isJsonPrimitive() ? obj.get("TTL").getAsInt() : -1, domainInfos);
result.put(server, res);
}
return result;
}
}
| src/main/java/de/florianmichael/checkhost4j/types/InternalInterface.java | FlorianMichael-CheckHost4J-b580631 | [
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "import java.util.Map.Entry;\npublic final class CheckHostAPI {\n\tpublic final static Gson GSON = new Gson();\n\tpublic static CHResult<Map<CHServer, PingResult>> createPingRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.PING, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.PING, entry.getKey(), entry.getValue());\n\t}\n\tpublic static CHResult<Map<CHServer, TCPResult>> createTCPRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.TCP, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.TCP, entry.getKey(), entry.getValue());",
"score": 48.43549580672977
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.DNS, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.DNS, entry.getKey(), entry.getValue());\n\t}\n\tprivate static Entry<String, List<CHServer>> sendCheckHostRequest(ResultTypes type, String host, int maxNodes) throws IOException {\n\t\tfinal JsonObject main = performGetRequest(\"https://check-host.net/check-\" + type.value.toLowerCase(Locale.ROOT) + \"?host=\" + URLEncoder.encode(host, StandardCharsets.UTF_8) + \"&max_nodes=\" + maxNodes);\n\t\tif(!main.has(\"nodes\")) throw new IOException(\"Invalid response!\");\n\t\tfinal List<CHServer> servers = new ArrayList<>();\n\t\tJsonObject nodes = main.get(\"nodes\").getAsJsonObject();\n\t\tfor(Entry<String, JsonElement> entry : nodes.entrySet()) {\n\t\t\tfinal JsonArray list = entry.getValue().getAsJsonArray();",
"score": 48.18901230670347
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/types/CHResult.java",
"retrieved_chunk": "import java.util.Map.Entry;\npublic class CHResult<T> {\n\tprivate final ResultTypes type;\n\tprivate final List<CHServer> servers;\n\tprivate final String requestId;\n\tprivate T result;\n\tpublic CHResult(ResultTypes type, String requestId, List<CHServer> servers) throws IOException {\n\t\tthis.type = type;\n\t\tthis.requestId = requestId;\n\t\tthis.servers = servers;",
"score": 40.73008831301417
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "import de.florianmichael.checkhost4j.results.ResultTypes;\nimport de.florianmichael.checkhost4j.results.*;\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.net.HttpURLConnection;\nimport java.net.URL;\nimport java.net.URLEncoder;\nimport java.nio.charset.StandardCharsets;\nimport java.util.*;",
"score": 38.06574892069937
},
{
"filename": "src/main/java/de/florianmichael/checkhost4j/CheckHostAPI.java",
"retrieved_chunk": "\t}\n\tpublic static CHResult<Map<CHServer, UDPResult>> createUDPRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.UDP, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.UDP, entry.getKey(), entry.getValue());\n\t}\n\tpublic static CHResult<Map<CHServer, HTTPResult>> createHTTPRequest(String host, int maxNodes) throws IOException {\n\t\tfinal Entry<String, List<CHServer>> entry = sendCheckHostRequest(ResultTypes.HTTP, host, maxNodes);\n\t\treturn new CHResult<>(ResultTypes.HTTP, entry.getKey(), entry.getValue());\n\t}\n\tpublic static CHResult<Map<CHServer, DNSResult>> createDNSRequest(String host, int maxNodes) throws IOException {",
"score": 32.13085521095876
}
] | java | main = CheckHostAPI.performGetRequest("https://check-host.net/check-result/" + URLEncoder.encode(id, StandardCharsets.UTF_8)); |
package io;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import agencias.Agencia;
import contas.Conta;
import contas.ContaCorrente;
import contas.enums.ContasEnum;
import extratos.Extrato;
import menus.Menu;
import pessoas.Cliente;
import pessoas.Diretor;
import pessoas.Funcionario;
import pessoas.Gerente;
import pessoas.enums.UsuariosEnum;
import principal.SistemaBancario;
import segurosDeVida.SeguroDeVida;
public class Escritor {
static final String CAMINHO = "./comprovantes/";
static String SUB_CAMINHO = null;
static final String EXTENSAO = ".txt";
public static void comprovanteSaque(Conta conta, double valorSaque) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaque";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** SAQUE ***************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor do saque: R$" + valorSaque;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************ FIM DO SAQUE ************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteDeposito(Conta conta, double valorDeposito) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteDeposito";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "***************** DEPÓSITO *****************";
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Valor: R$" + valorDeposito;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "************* FIM DO DEPÓSITO **************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteTransferencia(Conta conta, Conta contaDestino, double valorTransferencia) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteTransferencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n*************** TRANSFERÊNCIA ***************";
bw.append(linha + "\n\n");
linha = "************ DADOS DO REMETENTE *************";
bw.append(linha + "\n");
linha = "Nome: " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "********** DADOS DO DESTINATÁRIO ************";
bw.append(linha + "\n");
linha = "Nome: " + contaDestino.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + contaDestino.getCpf();
bw.append(linha + "\n");
linha = "Agência: " + contaDestino.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + contaDestino.getNumConta();
bw.append(linha + "\n");
linha = "*********************************************";
bw.append(linha + "\n");
linha = "Valor: R$" + valorTransferencia;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*********** FIM DA TRANSFERÊNCIA ************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void extratoConta(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteExtrato";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "\n********************* EXTRATO *********************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Titular: " + conta.getTitular().getNome() + " | CPF: " + conta.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia().getNumAgencia() + " | Conta: " + conta.getNumConta();
bw.append(linha + "\n");
bw.append("\n");
for (Extrato listaMovimentacao : conta.getlistaDeMovimentacoes()) {
bw.append(listaMovimentacao.toString() + "\n");
}
bw.append("\n");
if (conta.getTipoDeConta().equals(ContasEnum.CORRENTE)) {
linha = "Total gasto em tributos = R$"
+ String.format("%.2f", ((ContaCorrente) conta).getTotalTarifas());
bw.append(linha + "\n");
}
if (Menu.contratoSeguro == true) {
linha = "Valor do Seguro de Vida = R$ " + String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
}
linha = "Saldo: R$" + String.format("%.2f", conta.getSaldo());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "********************* FIM **************************\n";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void comprovanteSaldo(Conta conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSaldo";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* SALDO *******************";
bw.append(linha + "\n");
linha = "Tipo: " + conta.getTipoDeConta();
bw.append(linha + "\n");
linha = "Agencia: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "Saldo: R$" + String.format("%.2f", (conta.getSaldo()));
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************* FIM *********************";
bw.append(linha + "\n");
} catch (IOException e) {
System.out.println("Erro: " + e.getMessage());
}
}
public static void relatorioTributacaoCC(ContaCorrente conta) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_"
+ "relatorioTributacaoCC";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** TOTAL DE TRIBUTAÇÕES *****************";
bw.append(linha + "\n\n");
linha = "Total gasto em transações = R$" + conta.getTotalTarifas();
bw.append(linha + "\n\n");
linha = "Taxa para saque = " + ContaCorrente.getTarifaSaque();
bw.append(linha + "\n");
linha = "Total de saques realizados = " + conta.getTotalSaques();
bw.append(linha + "\n\n");
linha = "Taxa para deposito = " + ContaCorrente.getTarifaDeposito();
bw.append(linha + "\n");
linha = "Total de depósitos realizados = " + conta.getTotalDepositos();
bw.append(linha + "\n\n");
linha = "Taxa para tranferência = " + ContaCorrente.getTarifaTransferencia();
bw.append(linha + "\n");
linha = | "Total de tranferências realizadas = " + conta.getTotalTransferencias(); |
bw.append(linha + "\n\n");
if (Menu.contratoSeguro == true) {
linha = "Valor segurado do Seguro de Vida = R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void rendimentDaPoupanca(Conta conta, Cliente cliente, Double rendimento, int dias,
double valorSimulado, double totalFinal) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado
+ "_relatorioRendimentoPoupanca";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******* Simulação de Rendimento da Poupança ********";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "Simulação para CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Valor simulado: R$ " + String.format("%.2f", valorSimulado);
bw.append(linha + "\n");
linha = "Total de dias: " + dias;
bw.append(linha + "\n");
linha = "O rendimento seria de: R$ " + String.format("%.2f", rendimento);
bw.append(linha + "\n");
linha = "O valor final seria de: R$ " + String.format("%.2f", totalFinal);
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void relatorioContasPorAgencia(Conta conta, Funcionario funcionario) throws IOException {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_relatorioContasPorAgencia";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
int totalContas = 0;
String linha = "****************** RESPONSÁVEL **********************";
bw.append(linha + "\n\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF: " + conta.getCpf();
bw.append(linha + "\n");
linha = "Agência : " + conta.getAgencia().getNumAgencia();
bw.append(linha + "\n");
linha = "*****************************************************";
bw.append(linha + "\n\n");
linha = "************ TOTAL DE CONTAS NA AGÊNCIA *************";
bw.append(linha + "\n\n");
for (String cpf : SistemaBancario.mapaDeContas.keySet()) {
if (SistemaBancario.mapaDeContas.get(cpf).getAgencia().getNumAgencia()
.equals(conta.getAgencia().getNumAgencia())) {
linha = "CPF: " + SistemaBancario.mapaDeContas.get(cpf).getCpf();
bw.append(linha + "\n");
linha = "Agência : " + SistemaBancario.mapaDeContas.get(cpf).getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + SistemaBancario.mapaDeContas.get(cpf).getNumConta();
bw.append(linha + "\n");
totalContas++;
linha = "*****************************************************";
bw.append(linha + "\n");
}
}
linha = "Total de contas: " + totalContas;
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "************************************************************************";
bw.append(linha + "\n\n");
bw.close();
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioClientes(List<Conta> contas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_relatorioDeClientes";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "******************* Informações dos Clientes *******************";
bw.append(linha + "\n\n");
Collections.sort(contas);
for (Conta c : contas) {
linha = c.getAgencia().getNumAgencia() + " - " + c.getTitular();
bw.append(linha + "\n");
}
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operações realizada em: " + date;
bw.append(linha + "\n");
linha = "****************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
e.printStackTrace();
}
}
public static void relatorioCapitalBanco(List<Conta> listaContas, Conta conta, Funcionario funcionario) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + funcionario.getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + hojeFormatado + "_" + "relatorioCapitalBanco";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
double capitalTotalBanco = 0;
String linha = "******** TOTAL DE CAPITAL ARMAZENADO NO BANCO ********";
bw.append(linha + "\n\n");
for (Conta lista : listaContas) {
capitalTotalBanco += lista.getSaldo();
}
linha = "Total do Capital armazenado no banco: R$ " + capitalTotalBanco;
bw.append(linha + "\n\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "******************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void comprovanteSeguroDeVida(Conta conta, Cliente cliente) {
SUB_CAMINHO = conta.getCpf() + "_" + conta.getTitular().getNome() + "_" + conta.getTitular().getTipoDeUsuario();
new File(CAMINHO + "\\" + SUB_CAMINHO).mkdir();
String hojeFormatado = LocalDate.now().format(DateTimeFormatter.ofPattern("dd_MM_yy"));
String arquivo = conta.getCpf() + "_" + conta.getAgencia() + "_" + hojeFormatado + "_comprovanteSeguroDeVida";
try (BufferedWriter bw = new BufferedWriter(
new FileWriter(CAMINHO + "\\" + SUB_CAMINHO + "\\" + arquivo + EXTENSAO, true))) {
String linha = "*************** COMPROVANTE SEGURO DE VIDA ********************";
bw.append(linha + "\n");
linha = "Nome = " + conta.getTitular().getNome();
bw.append(linha + "\n");
linha = "CPF = " + Cliente.imprimeCPF(conta.getCpf());
bw.append(linha + "\n");
linha = "Agência: " + conta.getAgencia();
bw.append(linha + "\n");
linha = "Conta: " + conta.getNumConta();
bw.append(linha + "\n");
linha = "O valor pago na contratação do Seguro de Vida foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguro());
bw.append(linha + "\n");
linha = "O valor segurado após taxação foi de: R$ "
+ String.format("%.2f", SeguroDeVida.getValorSeguroAposTaxa());
bw.append(linha + "\n");
linha = "Você pagou de tarifa R$ " + String.format("%.2f", SeguroDeVida.getValorTributacao());
bw.append(linha + "\n");
String date = LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"));
linha = "Operação realizada em: " + date;
bw.append(linha + "\n");
linha = "*************************************************************";
bw.append(linha + "\n\n");
} catch (IOException e) {
System.out.println("Erro escrevendo arquivo: " + e.getMessage());
}
}
public static void registroDeDadosAtualizados() throws IOException {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(".\\database\\registrodedados.txt"))) {
// registrando as agencias
Set<Agencia> set = new HashSet<>(SistemaBancario.listaAgencias);
for (Agencia ag : set) {
bw.write("AGENCIA" + ";" + ag.getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de gerente
for (Map.Entry<String, Gerente> dadosG : SistemaBancario.mapaDeGerentes.entrySet()) {
Gerente gerente = dadosG.getValue();
bw.write(gerente.getTipoDeUsuario().name() + ";" + gerente.getNome() + ";" + gerente.getCpf() + ";"
+ gerente.getSenha() + ";" + gerente.getAgencia().getNumAgencia());
bw.newLine();
}
// Loop pelo mapa de diretor
for (Map.Entry<String, Diretor> dadosD : SistemaBancario.mapaDeDiretores.entrySet()) {
Diretor diretor = dadosD.getValue();
bw.write(diretor.getTipoDeUsuario().name() + ";" + diretor.getNome() + ";" + diretor.getCpf() + ";"
+ diretor.getSenha());
bw.newLine();
}
// Loop pelo mapa de presidente
for (Map.Entry<String, Funcionario> dadosP : SistemaBancario.mapaDeFuncionarios.entrySet()) {
Funcionario presidente = dadosP.getValue();
if (presidente.getTipoDeUsuario() == UsuariosEnum.PRESIDENTE) {
bw.write(presidente.getTipoDeUsuario().name() + ";" + presidente.getNome() + ";"
+ presidente.getCpf() + ";" + presidente.getSenha());
bw.newLine();
}
}
// Loop pelo mapa de cliente
for (Map.Entry<String, Cliente> dadosClie : SistemaBancario.mapaDeClientes.entrySet()) {
Cliente cliente = dadosClie.getValue();
bw.write(cliente.getTipoDeUsuario().name() + ";" + cliente.getNome() + ";" + cliente.getCpf() + ";"
+ cliente.getSenha());
bw.newLine();
}
// Loop pelo mapa de contas
for (Map.Entry<String, Conta> entrada : SistemaBancario.mapaDeContas.entrySet()) {
Conta conta = entrada.getValue();
// Checando se a conta é POUPANCA ou CORRENTE
if (conta.getTipoDeConta() == ContasEnum.POUPANCA || conta.getTipoDeConta() == ContasEnum.CORRENTE) {
// Escrevendo detalhes da conta com o saldo atualizado
bw.write(conta.getTipoDeConta().name() + ";" + conta.getAgencia().getNumAgencia() + ";"
+ conta.getNumConta() + ";" + conta.getTitular().getTipoDeUsuario().name()+ ";" + conta.getTitular().getNome()
+ ";" + conta.getCpf() + ";" + conta.getTitular().getSenha() + ";"
+ conta.getCpf() + ";" + String.format("%.2f", conta.getSaldo()));
bw.newLine();
}
}
}
}
}
| src/io/Escritor.java | filipe-oliv95-TrabalhoBancoPOO_Grupo7-e86048d | [
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\t\tSystem.out.println(\"Valor de tarifa cobrado na tranferência: R$ \" + ContaCorrente.getTarifaTransferencia());\n\t\tSystem.out.println(\"Total de transferências: \" + conta.getTotalTransferencias());\n\t\tSystem.out.println(\"**************************************\");\n\t\tSystem.out.println();\n\t\tdouble tarifaTotalSaque = conta.getTotalSaques() * ContaCorrente.getTarifaSaque();\n\t\tdouble tarifaTotalDeposito = conta.getTotalDepositos() * ContaCorrente.getTarifaDeposito();\n\t\tdouble tarifaTotalTransferencia = conta.getTotalTransferencias() * ContaCorrente.getTarifaTransferencia();\n\t\tSystem.out.println(\"Total de tarifas cobradas em saques: R$\" + tarifaTotalSaque);\n\t\tSystem.out.println(\"Total de tarifas cobradas em depósitos: R$\" + tarifaTotalDeposito);\n\t\tSystem.out.println(\"Total de tarifas cobradas em transferências: R$\" + tarifaTotalTransferencia);",
"score": 53.68186413225127
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "import pessoas.Gerente;\nimport pessoas.Presidente;\nimport pessoas.enums.UsuariosEnum;\nimport principal.SistemaBancario;\npublic class Leitor {\n\tpublic static void leitura(String path) {\n\t\ttry (BufferedReader br = new BufferedReader(new FileReader(path))) {\n\t\t\tString linha = \"\";\n\t\t\twhile (true) {\n\t\t\t\tlinha = br.readLine();",
"score": 50.334889129992426
},
{
"filename": "src/io/Leitor.java",
"retrieved_chunk": "\t\t\t\tif (linha != null) {\n\t\t\t\t\tString[] vetor = linha.split(\";\");\n\t\t\t\t\tif (vetor[0].equalsIgnoreCase(\"AGENCIA\")) {\n\t\t\t\t\t\tAgencia agencia = new Agencia(vetor[1]);\n\t\t\t\t\t\tSistemaBancario.listaAgencias.add(agencia);\n\t\t\t\t\t} else if (vetor[0].equalsIgnoreCase(UsuariosEnum.GERENTE.name())) {\n\t\t\t\t\t\tGerente gerentes = new Gerente(UsuariosEnum.GERENTE, vetor[1], vetor[2],\n\t\t\t\t\t\t\t\tInteger.parseInt(vetor[3]), new Agencia(vetor[4]));\n\t\t\t\t\t\tSistemaBancario.mapaDeGerentes.put(vetor[2], gerentes);\n\t\t\t\t\t\tSistemaBancario.mapaDeFuncionarios.put(vetor[2], gerentes);",
"score": 41.803308549819654
},
{
"filename": "src/relatorios/Relatorio.java",
"retrieved_chunk": "\tpublic static void tributacaoCC(ContaCorrente conta) {\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"****** Relatório de tributação ******\");\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no saque: R$ \" + ContaCorrente.getTarifaSaque());\n\t\tSystem.out.println(\"Total de saques: \" + conta.getTotalSaques());\n\t\tSystem.out.println();\n\t\tSystem.out.println(\"Valor de tarifa cobrado no depósito: R$ \" + ContaCorrente.getTarifaDeposito());\n\t\tSystem.out.println(\"Total de depósitos: \" + conta.getTotalDepositos());\n\t\tSystem.out.println();",
"score": 40.85781316925872
},
{
"filename": "src/contas/ContaCorrente.java",
"retrieved_chunk": "\t\t\tSystem.out.println(cc);\n\t\t}\n\t\tSystem.out.printf(\"Total gasto em tributos = R$ %.2f%n\", ((ContaCorrente) conta).getTotalTarifas());\n\t\tif (Menu.contratoSeguro == true) {\n\t\t\tSystem.out.printf(\"O valor do seguro após tributação = R$ %.2f%n\", SeguroDeVida.getValorSeguroAposTaxa());\n\t\t}\n\t\tSystem.out.println();\n\t\tSystem.out.printf(\"Saldo atualizado: R$ %.2f%n\", conta.getSaldo());\n\t\tSystem.out.println(\"Data: \" + sdf.format(date));\n\t\tSystem.out.println(\"**********************************************************\");",
"score": 33.15286601471014
}
] | java | "Total de tranferências realizadas = " + conta.getTotalTransferencias(); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.util;
import de.florianmichael.classic4j.model.CookieStore;
import java.net.URLEncoder;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.charset.StandardCharsets;
public class WebRequests {
public final static HttpClient HTTP_CLIENT = HttpClient.newHttpClient();
@SafeVarargs
public static String createRequestBody(final Pair<String, String>... parameters) {
final StringBuilder builder = new StringBuilder();
for (int i = 0; i < parameters.length; i++) {
final Pair<String, String> parameter = parameters[i];
if (parameter.key() == null || parameter.value() == null) continue;
builder.append(parameter.key()).append("=").
append(URLEncoder.encode(parameter.value(), StandardCharsets.UTF_8));
if (i != parameters.length - 1) {
builder.append("&");
}
}
return builder.toString();
}
public static HttpRequest buildWithCookies(final CookieStore cookieStore, final HttpRequest.Builder builder) {
return | cookieStore.appendCookies(builder).build(); |
}
public static void updateCookies(final CookieStore cookieStore, final HttpResponse<?> response) {
cookieStore.mergeFromResponse(response);
}
}
| src/main/java/de/florianmichael/classic4j/util/WebRequests.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " this.merge(store);\n }\n public HttpRequest.Builder appendCookies(HttpRequest.Builder builder) {\n builder.header(\"Cookie\", this.toString());\n return builder;\n }\n public static CookieStore parse(final String value) {\n final char[] characters = value.toCharArray();\n StringBuilder currentKey = new StringBuilder();\n StringBuilder currentValue = new StringBuilder();",
"score": 52.25445254135679
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " int i = 0;\n for (Map.Entry<String, String> entry : values.entrySet()) {\n if (i != 0) {\n builder.append(\";\");\n }\n builder.append(entry.getKey());\n builder.append(\"=\");\n builder.append(entry.getValue());\n i++;\n }",
"score": 45.486546616228615
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " }\n public Map<String, String> getMap() {\n return Collections.unmodifiableMap(values);\n }\n public void merge(CookieStore cookieStore) {\n this.values.putAll(cookieStore.getMap());\n }\n @Override\n public String toString() {\n final StringBuilder builder = new StringBuilder();",
"score": 29.434531264156977
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/base/CCAuthenticationResponse.java",
"retrieved_chunk": " this.authenticated = authenticated;\n this.errors = errors;\n }\n public boolean shouldError() {\n return errors.size() > 0;\n }\n public String getErrorDisplay() {\n final StringBuilder builder = new StringBuilder();\n for (String error : this.errors) {\n builder.append(CCError.valueOf(error.toUpperCase()).description).append(\"\\n\");",
"score": 28.59606392432152
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " return builder.toString();\n }\n public void mergeFromResponse(HttpResponse<?> response) {\n final Optional<String> setCookieHeaderOptional = response.headers()\n .firstValue(\"set-cookie\");\n if (setCookieHeaderOptional.isEmpty()) {\n return;\n }\n final String setCookieHeader = setCookieHeaderOptional.get();\n final CookieStore store = CookieStore.parse(setCookieHeader);",
"score": 23.413701628969545
}
] | java | cookieStore.appendCookies(builder).build(); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.util;
import de.florianmichael.classic4j.model.CookieStore;
import java.net.URLEncoder;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.charset.StandardCharsets;
public class WebRequests {
public final static HttpClient HTTP_CLIENT = HttpClient.newHttpClient();
@SafeVarargs
public static String createRequestBody(final Pair<String, String>... parameters) {
final StringBuilder builder = new StringBuilder();
for (int i = 0; i < parameters.length; i++) {
final Pair<String, String> parameter = parameters[i];
if (parameter.key() == null || parameter.value() == null) continue;
builder.append(parameter.key()).append("=").
append(URLEncoder.encode(parameter.value(), StandardCharsets.UTF_8));
if (i != parameters.length - 1) {
builder.append("&");
}
}
return builder.toString();
}
public static HttpRequest buildWithCookies(final CookieStore cookieStore, final HttpRequest.Builder builder) {
return cookieStore.appendCookies(builder).build();
}
public static void updateCookies(final CookieStore cookieStore, final HttpResponse<?> response) {
| cookieStore.mergeFromResponse(response); |
}
}
| src/main/java/de/florianmichael/classic4j/util/WebRequests.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " this.merge(store);\n }\n public HttpRequest.Builder appendCookies(HttpRequest.Builder builder) {\n builder.header(\"Cookie\", this.toString());\n return builder;\n }\n public static CookieStore parse(final String value) {\n final char[] characters = value.toCharArray();\n StringBuilder currentKey = new StringBuilder();\n StringBuilder currentValue = new StringBuilder();",
"score": 52.13614856872487
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " }\n public Map<String, String> getMap() {\n return Collections.unmodifiableMap(values);\n }\n public void merge(CookieStore cookieStore) {\n this.values.putAll(cookieStore.getMap());\n }\n @Override\n public String toString() {\n final StringBuilder builder = new StringBuilder();",
"score": 44.61706798829498
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/CookieStore.java",
"retrieved_chunk": " return builder.toString();\n }\n public void mergeFromResponse(HttpResponse<?> response) {\n final Optional<String> setCookieHeaderOptional = response.headers()\n .firstValue(\"set-cookie\");\n if (setCookieHeaderOptional.isEmpty()) {\n return;\n }\n final String setCookieHeader = setCookieHeaderOptional.get();\n final CookieStore store = CookieStore.parse(setCookieHeader);",
"score": 44.29329083285387
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerInfoRequest.java",
"retrieved_chunk": " }\n public static CompletableFuture<CCServerList> send(final CCAccount account, final List<String> serverHashes) {\n return CompletableFuture.supplyAsync(() -> {\n final URI uri = generateUri(serverHashes);\n final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder().GET().uri(uri));\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);\n final String body = response.body();\n return CCServerList.fromJson(body);\n });",
"score": 42.35709243876827
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerListRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerListRequest {\n public static CompletableFuture<CCServerList> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.SERVER_LIST_INFO_URI));\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 40.709658316146616
}
] | java | cookieStore.mergeFromResponse(response); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
configurator.loadConfiguration();
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = | new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML()); |
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
| src/main/java/net/dragondelve/downfall/DownfallMain.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " */\n private void openEditor(URL editorFXMLURL, StageController controller, String title) {\n Stage stage = new Stage();\n try {\n FXMLLoader loader = new FXMLLoader(editorFXMLURL);\n loader.setController(controller);\n controller.setStage(stage);\n Scene scene = new Scene(loader.load());\n stage.setScene(scene);\n stage.initOwner(this.stage);",
"score": 43.258478818543466
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " Configurator.getInstance().loadAndApplyRules(selectedFile.getPath());\n }\n /**\n * loads the content of RealmScreen.fxml and puts its root node into the \"Realm\" tab.\n */\n private void initializeRealmTab() {\n try {\n FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLRealmScreenFXML());\n loader.setController(realmScreenController);\n Node screen = loader.load();",
"score": 30.156947432071153
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " saveRealm.setOnAction(e -> saveRealmAction());\n saveRealmTo.setOnAction(e -> saveRealmToAction());\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n minimizeButton.setStage(stage);\n maximizeButton.setStage(stage);\n exitButton.setStage(stage);\n menuBar.setOnMousePressed(e->{\n xOffset = stage.getX() - e.getScreenX();\n yOffset = stage.getY() - e.getScreenY();",
"score": 24.46597857541335
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": "import javafx.fxml.FXMLLoader;\nimport javafx.scene.Node;\nimport javafx.scene.Scene;\nimport javafx.scene.control.*;\nimport javafx.scene.control.cell.TextFieldTableCell;\nimport javafx.scene.layout.AnchorPane;\nimport javafx.scene.layout.BorderPane;\nimport javafx.stage.FileChooser;\nimport javafx.stage.Stage;\nimport javafx.util.converter.IntegerStringConverter;",
"score": 22.54485146241819
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " });\n menuBar.setOnMouseDragged(e-> {\n if (!stage.isMaximized()) {\n stage.setX(e.getScreenX() + xOffset);\n stage.setY(e.getScreenY() + yOffset);\n }\n });\n //intialize Stockpile TableView\n LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();\n stockpileLogoColumn.setDefaultSizePolicy();",
"score": 22.52414125737562
}
] | java | new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty() .unbindBidirectional(tag.tagProperty());
isFactionalCheckBox. | selectedProperty() .unbindBidirectional(tag.isFactionalProperty()); |
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " isExportableCheckBox.selectedProperty() .unbindBidirectional(template.isExportableProperty());\n pathToGFXTextField.textProperty() .unbindBidirectional(template.pathToGFXProperty());\n exportPriceTextField.textProperty() .unbindBidirectional(template.defExportPriceProperty());\n importPriceTextField.textProperty() .unbindBidirectional(template.defImportPriceProperty());\n }\n /**\n * Binds the properties of a given material to all TextFields and CheckBoxes.\n * @param materialTemplate template to be displayed\n */\n private void displayMaterial(VisualMaterialTemplate materialTemplate) {",
"score": 64.66042143848725
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " */\n private void enableTradable() {\n exportPriceTextField.setDisable(false);\n }\n /**\n * Unbinds the properties of a given materials from all TextFields and CheckBoxes.\n * @param template template to be unbound.\n */\n private void unbindMaterial(VisualMaterialTemplate template) {\n nameTextField.textProperty() .unbindBidirectional(template.nameProperty());",
"score": 55.823979813175804
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 48.29945670121194
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " * @param tag Tag name\n */\n public void setTag(String tag) {\n this.tag.set(tag);\n }\n /**\n * Lightweight mutator method.\n * @param isFactional Flag that determines if this tag is used to assign faction memberships to a realm.\n */\n public void setFactional(Boolean isFactional) {",
"score": 43.16803028933215
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " isFactional.set(false);\n }\n public Tag(Integer id, String tag, Boolean isFactional) {\n super();\n this.id.set(id);\n this.tag.set(tag);\n this.isFactional.set(isFactional);\n }\n /**\n * returns the tag value of the tag so that it can be made human-readable.",
"score": 42.50263887981278
}
] | java | selectedProperty() .unbindBidirectional(tag.isFactionalProperty()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
import java.util.List;
/**
* Template that is used when new buildings are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="visual-building-template")
public final class VisualBuildingTemplate extends BuildingTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. Generates an invalid instance with id set to -1
*/
public VisualBuildingTemplate() {
this(-1, "",-1,-1,false);
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param defConstructionCost construction cost per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
*/
public VisualBuildingTemplate(Integer id, String name, Integer defConstructionCost, Integer defConstructionTime, Boolean operatesImmediately) {
this(id, name | , null, null, defConstructionCost, null, defConstructionTime, operatesImmediately, Configurator.getInstance().getDefBuildingGFXPathname()); |
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param inputMaterials a list of input materials that are used in production in this building per turn
* @param outputMaterials a list of output materials that are produced in this building per turn
* @param defConstructionCost construction cost per turn of construction
* @param constructionMaterials a list of materials consumed during construction per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public VisualBuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately, String pathToGFX) {
super(id, name, inputMaterials, outputMaterials, defConstructionCost, constructionMaterials, defConstructionTime, operatesImmediately);
this.pathToGFXProperty.setValue(pathToGFX);
this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname());
}
/**
* Lightweight Accessor Method
* @return pathname to an image file that represents this building as a property. That Image should be square, but isn't required to be square
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Lightweight Accessor Method
* @return String pathname to an image file that represents this building.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Accessor Method that initiates graphics if they haven't been initialized
* @return Image that represents this Building.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.set(pathToGFX);
}
/**
* Updates the Image representation building to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
}
| src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * @param defConstructionTime number of turns it takes to construct a building\n * @param operatesImmediately does the building operate immediately or do you need to finish its construction\n */\n public BuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately) {\n this.idProperty.setValue(id);\n this.inputMaterials.clear();\n if(inputMaterials != null)\n this.inputMaterials.addAll(inputMaterials);\n this.outputMaterials.clear();\n if(outputMaterials != null)",
"score": 156.2992013625685
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * Lightweight Mutator Method\n * @param operatesImmediately does the building operate immediately or do you need to finish its construction\n */\n public void setOperatesImmediately(Boolean operatesImmediately) {\n this.operatesImmediatelyProperty.set(operatesImmediately);\n }\n}",
"score": 104.29928303155641
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " super();\n }\n /**\n *\n * @param id unique identifier used to differentiate different templates\n * @param name a human-readable name of the template.\n * @param inputMaterials a list of input materials that are used in production in this building per turn\n * @param outputMaterials a list of output materials that are produced in this building per turn\n * @param defConstructionCost construction cost per turn of construction\n * @param constructionMaterials a list of materials consumed during construction per turn of construction",
"score": 102.6757874358121
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * @param defConstructionCost construction cost per turn of construction\n */\n public void setDefConstructionCost(Integer defConstructionCost) {\n this.defConstructionCostProperty.setValue(defConstructionCost);\n }\n /**\n * Lightweight Mutator Method\n * @param constructionMaterials a list of materials consumed during construction per turn of construction\n */\n public void setConstructionMaterials(ObservableList<Material> constructionMaterials) {",
"score": 80.35147577739735
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " this.constructionMaterials = constructionMaterials;\n }\n /**\n * Lightweight Mutator Method\n * @param defConstructionTime number of turns it takes to construct a building\n */\n public void setDefConstructionTime(Integer defConstructionTime) {\n this.defConstructionTimeProperty.setValue(defConstructionTime);\n }\n /**",
"score": 80.13804557588583
}
] | java | , null, null, defConstructionCost, null, defConstructionTime, operatesImmediately, Configurator.getInstance().getDefBuildingGFXPathname()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Savegame;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Simple implementation of save manager that uses the Configurator class to store the LastSavegamePathname.
* If a savegame is loaded it also tries to find, load and apply the rules that were used when last saving this savegame.
*/
final class SimpleSaveManager implements SaveManager{
/**
* Loads and applies the savegame from last pathname used and attempts to find,
* load and validate the rules that are referenced in the savegame.
*/
@Override
public void loadFromLast() {
loadFrom(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Loads and applies the savegame from a given pathname and attempts to find,
* load and validate the rules that are referenced in the savegame.
* @param pathname pathname to a savegame file.
*/
@Override
public void loadFrom(String pathname) {
File saveFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Savegame savegame = (Savegame) unmarshaller.unmarshal(saveFile);
Configurator.getInstance( | ).setUserRealm(savegame.getUserRealm()); |
Configurator.getInstance().loadAndApplyRules(savegame.getPathToRules());
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame config loading successfully completed.");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Savegame config loading failed, loading default ");
}
}
/**
* Formulates a new Savegame based on the state of the Configurator and then saves it
* to the last pathname used.
*/
@Override
public void saveToLast() {
saveTo(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Formulates a new Savegame ba
* @param pathname pathname to a file in which the savegame data will be recorded.
*/
@Override
public void saveTo(String pathname) {
Savegame savegame = new Savegame();
savegame.setPathToRules(Configurator.getInstance().getLastRulesPathname());
savegame.setUserRealm(Configurator.getInstance().getUserRealm());
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(savegame, file);
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Savegame to path: "+pathname);
}
}
}
| src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " */\n private Rules loadRules(String pathname) {\n File rulesFile = new File(pathname);\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules loading initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Unmarshaller unmarshaller = context.createUnmarshaller();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules config loading successfully completed.\");\n Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);\n configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());",
"score": 120.55937814197391
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " try {\n JAXBContext context = JAXBContext.newInstance(Configuration.class);\n Unmarshaller unmarshaller = context.createUnmarshaller();\n configuration = (Configuration) unmarshaller.unmarshal(config);\n } catch (JAXBException | IllegalArgumentException e) {\n e.printStackTrace();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,\"Configuration loading failed, attempting to save a default configuration\");\n saveConfiguration();\n }\n }",
"score": 89.88773976658567
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " try {\n file.createNewFile();\n } catch (IOException ioException) {\n ioException.printStackTrace();\n }\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, \"Rules saving initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Marshaller marshaller = context.createMarshaller();\n marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);",
"score": 79.26300152762987
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " /**\n * Saves configuration to an XML file at CONFIG_PATH defined in this class\n */\n public void saveConfiguration() {\n File config = new File(CONFIG_PATH);\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, \"Configuration saving initiated with path: \" + CONFIG_PATH);\n try {\n JAXBContext context = JAXBContext.newInstance(Configuration.class);\n Marshaller marshaller = context.createMarshaller();\n marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);",
"score": 74.95976738824892
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SaveManager.java",
"retrieved_chunk": " /**\n * Formulates a new Savegame based on the state of the Configurator and then saves it\n * to the last pathname used.\n */\n void saveToLast();\n /**\n * Formulates a new Savegame ba\n * @param pathname pathname to a file in which the savegame data will be recorded.\n */\n void saveTo(String pathname);",
"score": 53.246048168016024
}
] | java | ).setUserRealm(savegame.getUserRealm()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Savegame;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Simple implementation of save manager that uses the Configurator class to store the LastSavegamePathname.
* If a savegame is loaded it also tries to find, load and apply the rules that were used when last saving this savegame.
*/
final class SimpleSaveManager implements SaveManager{
/**
* Loads and applies the savegame from last pathname used and attempts to find,
* load and validate the rules that are referenced in the savegame.
*/
@Override
public void loadFromLast() {
loadFrom(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Loads and applies the savegame from a given pathname and attempts to find,
* load and validate the rules that are referenced in the savegame.
* @param pathname pathname to a savegame file.
*/
@Override
public void loadFrom(String pathname) {
File saveFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Savegame savegame = (Savegame) unmarshaller.unmarshal(saveFile);
Configurator.getInstance().setUserRealm(savegame.getUserRealm());
Configurator.getInstance( | ).loadAndApplyRules(savegame.getPathToRules()); |
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Savegame config loading successfully completed.");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Savegame config loading failed, loading default ");
}
}
/**
* Formulates a new Savegame based on the state of the Configurator and then saves it
* to the last pathname used.
*/
@Override
public void saveToLast() {
saveTo(Configurator.getInstance().getLastSavegamePathname());
}
/**
* Formulates a new Savegame ba
* @param pathname pathname to a file in which the savegame data will be recorded.
*/
@Override
public void saveTo(String pathname) {
Savegame savegame = new Savegame();
savegame.setPathToRules(Configurator.getInstance().getLastRulesPathname());
savegame.setUserRealm(Configurator.getInstance().getUserRealm());
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Savegame.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(savegame, file);
Configurator.getInstance().setLastSavegamePathname(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Savegame saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Savegame to path: "+pathname);
}
}
}
| src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " */\n private Rules loadRules(String pathname) {\n File rulesFile = new File(pathname);\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules loading initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Unmarshaller unmarshaller = context.createUnmarshaller();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,\"Rules config loading successfully completed.\");\n Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);\n configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());",
"score": 120.55937814197391
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " try {\n JAXBContext context = JAXBContext.newInstance(Configuration.class);\n Unmarshaller unmarshaller = context.createUnmarshaller();\n configuration = (Configuration) unmarshaller.unmarshal(config);\n } catch (JAXBException | IllegalArgumentException e) {\n e.printStackTrace();\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,\"Configuration loading failed, attempting to save a default configuration\");\n saveConfiguration();\n }\n }",
"score": 89.88773976658567
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " try {\n file.createNewFile();\n } catch (IOException ioException) {\n ioException.printStackTrace();\n }\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, \"Rules saving initiated with path: \"+pathname);\n try {\n JAXBContext context = JAXBContext.newInstance(Rules.class);\n Marshaller marshaller = context.createMarshaller();\n marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);",
"score": 79.26300152762987
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " /**\n * Saves configuration to an XML file at CONFIG_PATH defined in this class\n */\n public void saveConfiguration() {\n File config = new File(CONFIG_PATH);\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, \"Configuration saving initiated with path: \" + CONFIG_PATH);\n try {\n JAXBContext context = JAXBContext.newInstance(Configuration.class);\n Marshaller marshaller = context.createMarshaller();\n marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);",
"score": 74.95976738824892
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SaveManager.java",
"retrieved_chunk": " /**\n * Formulates a new Savegame based on the state of the Configurator and then saves it\n * to the last pathname used.\n */\n void saveToLast();\n /**\n * Formulates a new Savegame ba\n * @param pathname pathname to a file in which the savegame data will be recorded.\n */\n void saveTo(String pathname);",
"score": 59.49609916888962
}
] | java | ).loadAndApplyRules(savegame.getPathToRules()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
import java.util.List;
/**
* Template that is used when new buildings are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="visual-building-template")
public final class VisualBuildingTemplate extends BuildingTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. Generates an invalid instance with id set to -1
*/
public VisualBuildingTemplate() {
this(-1, "",-1,-1,false);
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param defConstructionCost construction cost per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
*/
public VisualBuildingTemplate(Integer id, String name, Integer defConstructionCost, Integer defConstructionTime, Boolean operatesImmediately) {
this(id, name, null, null, defConstructionCost, null, defConstructionTime, operatesImmediately, Configurator.getInstance().getDefBuildingGFXPathname());
}
/**
*
* @param id unique identifier used to differentiate different templates
* @param name a human-readable name of the template.
* @param inputMaterials a list of input materials that are used in production in this building per turn
* @param outputMaterials a list of output materials that are produced in this building per turn
* @param defConstructionCost construction cost per turn of construction
* @param constructionMaterials a list of materials consumed during construction per turn of construction
* @param defConstructionTime number of turns it takes to construct a building
* @param operatesImmediately does the building operate immediately or do you need to finish its construction
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public VisualBuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately, String pathToGFX) {
super(id, name, inputMaterials, outputMaterials, defConstructionCost, constructionMaterials, defConstructionTime, operatesImmediately);
this.pathToGFXProperty.setValue(pathToGFX);
| this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname()); |
}
/**
* Lightweight Accessor Method
* @return pathname to an image file that represents this building as a property. That Image should be square, but isn't required to be square
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Lightweight Accessor Method
* @return String pathname to an image file that represents this building.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Accessor Method that initiates graphics if they haven't been initialized
* @return Image that represents this Building.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.set(pathToGFX);
}
/**
* Updates the Image representation building to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
}
| src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * @param defConstructionTime number of turns it takes to construct a building\n * @param operatesImmediately does the building operate immediately or do you need to finish its construction\n */\n public BuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately) {\n this.idProperty.setValue(id);\n this.inputMaterials.clear();\n if(inputMaterials != null)\n this.inputMaterials.addAll(inputMaterials);\n this.outputMaterials.clear();\n if(outputMaterials != null)",
"score": 219.71156741311628
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * @param defConstructionCost construction cost per turn of construction\n */\n public void setDefConstructionCost(Integer defConstructionCost) {\n this.defConstructionCostProperty.setValue(defConstructionCost);\n }\n /**\n * Lightweight Mutator Method\n * @param constructionMaterials a list of materials consumed during construction per turn of construction\n */\n public void setConstructionMaterials(ObservableList<Material> constructionMaterials) {",
"score": 153.37212850447563
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " super();\n }\n /**\n *\n * @param id unique identifier used to differentiate different templates\n * @param name a human-readable name of the template.\n * @param inputMaterials a list of input materials that are used in production in this building per turn\n * @param outputMaterials a list of output materials that are produced in this building per turn\n * @param defConstructionCost construction cost per turn of construction\n * @param constructionMaterials a list of materials consumed during construction per turn of construction",
"score": 144.22667104405582
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/BuildingTemplate.java",
"retrieved_chunk": " * Lightweight Mutator Method\n * @param operatesImmediately does the building operate immediately or do you need to finish its construction\n */\n public void setOperatesImmediately(Boolean operatesImmediately) {\n this.operatesImmediatelyProperty.set(operatesImmediately);\n }\n}",
"score": 116.98383034771676
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java",
"retrieved_chunk": " * Lightweight Mutator Method\n * @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square\n */\n public void setPathToGFX(String pathToGFX) {\n this.pathToGFXProperty.setValue(pathToGFX);\n }\n}",
"score": 115.96705323763513
}
] | java | this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
configurator.loadConfiguration();
| configurator.loadAndApplyRules(); |
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
| src/main/java/net/dragondelve/downfall/DownfallMain.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " @Override\n public void initialize(Stage parent, ObservableList<Tag> items) {\n stage = new Stage();\n if(parent != null)\n stage.initOwner(parent);\n Scene scene = new Scene(this);\n stage.setScene(scene);\n tableView.setItems(Objects.requireNonNullElseGet(items, () -> FXCollections.observableList(Configurator.getInstance().getRules().getActorTags())));\n }\n /**",
"score": 25.577650975396928
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**",
"score": 24.99081781662191
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " * Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.\n */\npublic final class Configurator {\n private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;\n private static final String DEFAULT_RULES_PATH = \"rules/default.xml\";\n private static final Configurator instance = new Configurator();\n private Configuration configuration = new Configuration();\n private Rules rules = new Rules();\n private final Realm userRealm = new Realm();\n private final SaveManager saveManager = new SimpleSaveManager();",
"score": 24.65293473586346
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " fileChooserButton.setOutput(pathToGFXTextField);\n okButton.setOnAction(e-> stage.close());\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {",
"score": 24.54821765176098
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/ConversionMaterialFetcher.java",
"retrieved_chunk": " }\n /**\n * Creates a new stage that will be owned by the parent Stage. sets the provided list of items to the Table View. It should always be run before its retrieve method.\n * @param parent a parent stage that will be set as an owner of the stage displayed by the ConversionMaterialFetcher if a null is provided it will not set any owners for the stage.\n * @param items a list of items to be displayed in the TableView if a null is provided it will load a list in the current ruleset\n */\n @Override\n public void initialize(Stage parent, ObservableList<VisualMaterialTemplate> items) {\n stage = new Stage();\n if(parent != null)",
"score": 23.968888745728623
}
] | java | configurator.loadAndApplyRules(); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
configurator.loadConfiguration();
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
| configurator.saveRules(); |
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
| src/main/java/net/dragondelve/downfall/DownfallMain.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " @Override\n public void initialize(Stage parent, ObservableList<Tag> items) {\n stage = new Stage();\n if(parent != null)\n stage.initOwner(parent);\n Scene scene = new Scene(this);\n stage.setScene(scene);\n tableView.setItems(Objects.requireNonNullElseGet(items, () -> FXCollections.observableList(Configurator.getInstance().getRules().getActorTags())));\n }\n /**",
"score": 28.699409420927424
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " * Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.\n */\npublic final class Configurator {\n private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;\n private static final String DEFAULT_RULES_PATH = \"rules/default.xml\";\n private static final Configurator instance = new Configurator();\n private Configuration configuration = new Configuration();\n private Rules rules = new Rules();\n private final Realm userRealm = new Realm();\n private final SaveManager saveManager = new SimpleSaveManager();",
"score": 26.063977946572862
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**",
"score": 26.0058365816571
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " fileChooserButton.setOutput(pathToGFXTextField);\n okButton.setOnAction(e-> stage.close());\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {",
"score": 24.57803687559222
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " private void exportRules() {\n FileChooser fileChooser = new FileChooser();\n fileChooser.setTitle(\"Export Rules\");\n fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter(\"xml rules file\",\"*.xml\"));\n fileChooser.setInitialDirectory(new File(\"rules\"));\n File selectedFile = fileChooser.showSaveDialog(stage);\n if(selectedFile != null)\n Configurator.getInstance().saveRules(selectedFile.getPath());\n }\n /**",
"score": 24.563569660577752
}
] | java | configurator.saveRules(); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger | .getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId()); |
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
| src/main/java/net/dragondelve/downfall/util/Configurator.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/mabel/button/ImageChooserButton.java",
"retrieved_chunk": " if(output != null)\n if(fileChosen != null) {\n PathRelativisor relativisor = new PathRelativisor(fileChosen);\n output.setText(relativisor.relativize());\n }\n else\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.INFO, \"ImageChooserButton: No File Chosen, content of output was not changed.\");\n else\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, \"Attempting to set Text without setting an output first.\");\n });",
"score": 73.98810676832667
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " stockpileLogoColumn.setCellValueFactory(e-> {\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).pathToGFXProperty();\n });\n TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);\n stockpileNameColumn.setCellValueFactory(e ->{\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)",
"score": 68.99404790438092
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " stockpileLogoColumn.setCellValueFactory(e-> {\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).pathToGFXProperty();\n });\n TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);\n stockpileNameColumn.setCellValueFactory(e ->{\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)",
"score": 68.99404790438092
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void configureMaterialEditor(SimpleTableEditor<Material> editor, String nameColumnTitle, String amountColumnTitle) {\n LogoTableColumn<Material> logoColumn = new LogoTableColumn<>();\n logoColumn.setDefaultSizePolicy();\n logoColumn.setCellValueFactory(e-> {\n VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());\n if(template == null)\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"VisualMaterialTemplate expected from Configuration returned null\");\n return Objects.requireNonNull(template).pathToGFXProperty();\n });",
"score": 64.71858323389333
},
{
"filename": "src/main/java/net/dragondelve/mabel/button/MaximizeButton.java",
"retrieved_chunk": " if(stage != null)\n stage.setMaximized(!stage.isMaximized());\n else {\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"MaximizeButton attempted to maximize a stage that was equal to null.\");\n }\n });\n }\n}",
"score": 63.155538485459545
}
] | java | .getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator | = Configurator.getInstance(); |
configurator.loadConfiguration();
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
| src/main/java/net/dragondelve/downfall/DownfallMain.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " @Override\n public void initialize(Stage parent, ObservableList<Tag> items) {\n stage = new Stage();\n if(parent != null)\n stage.initOwner(parent);\n Scene scene = new Scene(this);\n stage.setScene(scene);\n tableView.setItems(Objects.requireNonNullElseGet(items, () -> FXCollections.observableList(Configurator.getInstance().getRules().getActorTags())));\n }\n /**",
"score": 25.577650975396928
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**",
"score": 24.99081781662191
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " fileChooserButton.setOutput(pathToGFXTextField);\n okButton.setOnAction(e-> stage.close());\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {",
"score": 24.54821765176098
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/ConversionMaterialFetcher.java",
"retrieved_chunk": " }\n /**\n * Creates a new stage that will be owned by the parent Stage. sets the provided list of items to the Table View. It should always be run before its retrieve method.\n * @param parent a parent stage that will be set as an owner of the stage displayed by the ConversionMaterialFetcher if a null is provided it will not set any owners for the stage.\n * @param items a list of items to be displayed in the TableView if a null is provided it will load a list in the current ruleset\n */\n @Override\n public void initialize(Stage parent, ObservableList<VisualMaterialTemplate> items) {\n stage = new Stage();\n if(parent != null)",
"score": 23.968888745728623
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**\n * Creates a stage on which an editor controlled by a StageController can be displayed.\n * Loads an FXML File from the URL, sets the controller and finally displays the stage.\n * @param editorFXMLURL URL to a FXML file that contains the editor's gui information.\n * @param controller controller to be used for the new Stage.\n * @param title text title to be displayed on the new Stage.",
"score": 22.887057296873397
}
] | java | = Configurator.getInstance(); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
/**
* Template that is used when new materials are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="gfx-material-template")
public final class VisualMaterialTemplate extends MaterialTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. it generates an invalid VisualMaterialTemplate with an id of -1
*/
public VisualMaterialTemplate() {
this("",-1,-1,-1,false, false);
}
/**
* Initializes pathToGFX to the default MaterialGFXPathname defined in the current configuration.
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {
this(name, id, defExportPrice | , defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname()); |
}
/**
*
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral, String pathToGFX) {
super(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral);
this.pathToGFXProperty.setValue(pathToGFX);
this.pathToGFXProperty.setValue(Configurator.getInstance().getDefMaterialGFXPathname());
}
/**
* Lightweight accessor method.
* @return pathname to an image file that represents this material as a property.
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Updates the Image representation material to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
//TODO: I think something second loads these Graphics. MaterialEditorController (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
/**
* Lightweight accessor method that initiates graphics if they haven't been initialized
* @return Image that represents this material.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight accessor method.
* @return String pathname to an image file that represents this material.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.setValue(pathToGFX);
}
}
| src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public MaterialTemplate(String name, Integer id, Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n super();\n this.nameProperty.setValue(name);\n this.idProperty.setValue(id);\n this.defExportPriceProperty .setValue(defExportPrice);\n this.defImportPriceProperty.setValue(defImportPrice);\n this.isExportableProperty.setValue(isExportable);",
"score": 195.43983518588973
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " */\n public MaterialTemplate() {\n super();\n }\n /**\n *\n * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price",
"score": 151.64311705958173
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param exportable Value that determines if the material will be exportable from the realm\n */\n public void setExportable(Boolean exportable) {\n isExportableProperty.setValue(exportable);\n }\n /**\n * Lightweight mutator method\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public void setIsEphemeral(Boolean isEphemeral) {",
"score": 122.25654038006142
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " @XmlElement(name = \"exportable\")\n public Boolean isExportable() {\n return isExportableProperty.get();\n }\n /**\n * Lightweight accessor method\n * @return Value that determines if the material can be stockpiled or stored\n */\n @XmlElement(name = \"ephemeral\")\n public Boolean isEphemeral() { return isEphemeralProperty.get();}",
"score": 116.25414324368512
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @return Default import price\n */\n @XmlElement(name = \"def-import-price\")\n public Integer getDefImportPrice() {\n return defImportPriceProperty.get();\n }\n /**\n * Lightweight accessor method\n * @return Value that determines if the material will be exportable from the realm\n */",
"score": 96.91817217725759
}
] | java | , defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.button;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.image.ImageView;
/**
* a JavaFX TableColumn that displays an image for each row that corresponds to pathname of this cell's String value
* @param <S> Class of an object that is displayed in the TableView
*/
public class LogoTableColumn<S> extends TableColumn<S, String> {
public static final double DEFAULT_IMAGE_HEIGHT = 24;
public static final double DEFAULT_IMAGE_WIDTH = 24;
public static final double DEFAULT_COLUMN_WIDTH = 42;
private final DoubleProperty imageHeightProperty = new SimpleDoubleProperty(DEFAULT_IMAGE_HEIGHT);
private final DoubleProperty imageWidthProperty = new SimpleDoubleProperty(DEFAULT_IMAGE_WIDTH);
/**
* Lightweight accessor method
* @return image height property
*/
DoubleProperty ImageHeightProperty() {
return imageHeightProperty;
}
/**
* Lightweight accessor method
* @return image width property
*/
DoubleProperty ImageWidthProperty() {
return imageWidthProperty;
}
/**
* Lightweight accessor method
* @return numeric value of imageHeightProperty
*/
public Double getImageHeight() {
return imageHeightProperty.get();
}
/**
* Lightweight accessor method
* @return numeric value of imageWidthProperty
*/
public Double getImageWidth() {
return imageWidthProperty.get();
}
/**
* Lightweight mutator method
* @param height desired height of the image inside the column
*/
public void setImageHeight(Double height) {
imageHeightProperty.setValue(height);
}
/**
* Lightweight mutator method
* @param width desired width of the image inside the column
*/
public void setImageWidth(Double width) {
imageWidthProperty.setValue(width);
}
/**
* Default constructor. does not initialize the column title.
*/
public LogoTableColumn() {
super();
initializeCells();
}
/**
* Constructor that initializes the column title
* @param name title text of the column.
*/
public LogoTableColumn(String name) {
super(name);
initializeCells();
}
/**
* Sets default resize policy for the column. It is recommended to call this method before the column is displayed.
*/
public void setDefaultSizePolicy() {
this.minWidthProperty().setValue(DEFAULT_COLUMN_WIDTH);
this.prefWidthProperty().setValue(DEFAULT_COLUMN_WIDTH);
this.maxWidthProperty().setValue(DEFAULT_COLUMN_WIDTH);
}
/**
* Initializes the cell factory for this column to display an image that is loaded from pathname of the String value of the column
*/
private void initializeCells() {
setCellFactory(param -> {
ImageView view = new ImageView();
view.fitHeightProperty().bind(imageHeightProperty);
view.fitWidthProperty().bind(imageWidthProperty);
TableCell<S, String> cell = new TableCell<>() {
public void updateItem(String item, boolean empty) {
if (item != null) {
view.setImage( | DownfallUtil.getInstance().loadImage(item)); |
} else
view.setImage(null);
}
};
cell.setGraphic(view);
return cell;
});
}
}
| src/main/java/net/dragondelve/mabel/button/LogoTableColumn.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " * Updates the given ImageView to contain the given Image, if image provided is not null, forces the width of the container to conform to the ImageView's Image width\n * modified so that the image keeps its aspect ratio, plus some gaps that are defined in IMAGE_PANE_GAP. If the image equals to null it forces the ImageView\n * to conform to IMAGE_PANE_HEIGHT in both Width and Height.\n * @param container Container Pane that contains the ImageView. It will be resized to have a height of IMAGE_PANE_HEIGHT. It's width will depend on the aspect ratio of the Image provided.\n * @param image Image to be set into the ImageView. It's aspect ratio is used to define container's width.\n * @param imageView Image view to be set with a given image. It's best if ImageView's parent is the container argument, but it's not required.\n */\n private void updateImageView(Pane container, Image image, ImageView imageView) {\n imageView.setImage(image);\n if(image != null && !image.isError()) {",
"score": 32.45859538406176
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " materialImageColumn.setCellValueFactory(param -> param.getValue().pathToGFXProperty());\n materialTemplateEditor.getTableView().getColumns().addAll(materialImageColumn, materialNameColumn);\n //listening for changes in selection made by the user in materials table view to update data displayed.\n materialTemplateEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {\n if(oldValue != null) {\n if (!validateMaterial(oldValue))\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"Material Editor Controller saving an invalid tag\");\n else\n unbindMaterial(oldValue);\n }",
"score": 24.197786359755362
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());\n tagTableEditor.getTableView().getColumns().add(tagColumn);\n //Listening for changes in selection made by the user in tag table view to update data displayed.\n tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {\n if(oldValue != null)\n unbindTag(oldValue);\n displayTag(newValue);\n });\n //other inits\n okButton.setOnAction(e-> this.stage.close());",
"score": 23.629075077381437
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " if (Configurator.getInstance().getUserRealm().getStability() <= threshold)\n stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));\n else\n stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));\n } else {\n if (Configurator.getInstance().getUserRealm().getStability() >= threshold)\n stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));\n else\n stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));\n }",
"score": 21.43637893889496
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleTagFetcher.java",
"retrieved_chunk": " //set the new instance's id to be equal of the last item in that list incremented by one\n template.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);\n else\n template.setId(1);\n template.setName(\"New Template\");\n return template;\n }\n}",
"score": 20.085490332218384
}
] | java | DownfallUtil.getInstance().loadImage(item)); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty() .unbindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty | () .bindBidirectional(tag.isFactionalProperty()); |
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " isExportableCheckBox.selectedProperty() .unbindBidirectional(template.isExportableProperty());\n pathToGFXTextField.textProperty() .unbindBidirectional(template.pathToGFXProperty());\n exportPriceTextField.textProperty() .unbindBidirectional(template.defExportPriceProperty());\n importPriceTextField.textProperty() .unbindBidirectional(template.defImportPriceProperty());\n }\n /**\n * Binds the properties of a given material to all TextFields and CheckBoxes.\n * @param materialTemplate template to be displayed\n */\n private void displayMaterial(VisualMaterialTemplate materialTemplate) {",
"score": 57.68964584656813
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " */\n private void enableTradable() {\n exportPriceTextField.setDisable(false);\n }\n /**\n * Unbinds the properties of a given materials from all TextFields and CheckBoxes.\n * @param template template to be unbound.\n */\n private void unbindMaterial(VisualMaterialTemplate template) {\n nameTextField.textProperty() .unbindBidirectional(template.nameProperty());",
"score": 53.63680987514285
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " * @param tag Tag name\n */\n public void setTag(String tag) {\n this.tag.set(tag);\n }\n /**\n * Lightweight mutator method.\n * @param isFactional Flag that determines if this tag is used to assign faction memberships to a realm.\n */\n public void setFactional(Boolean isFactional) {",
"score": 48.90448977014084
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " isFactional.set(false);\n }\n public Tag(Integer id, String tag, Boolean isFactional) {\n super();\n this.id.set(id);\n this.tag.set(tag);\n this.isFactional.set(isFactional);\n }\n /**\n * returns the tag value of the tag so that it can be made human-readable.",
"score": 48.246563589305026
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " */\n@XmlRootElement(name = \"tag\")\npublic class Tag {\n private final IntegerProperty id = new SimpleIntegerProperty();\n private final StringProperty tag = new SimpleStringProperty();\n private final BooleanProperty isFactional = new SimpleBooleanProperty();\n public Tag() {\n super();\n id.set(-1);\n tag.set(\"\");",
"score": 46.88763191902907
}
] | java | () .bindBidirectional(tag.isFactionalProperty()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty() | .unbindBidirectional(tag.tagProperty()); |
isFactionalCheckBox.selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " isExportableCheckBox.selectedProperty() .unbindBidirectional(template.isExportableProperty());\n pathToGFXTextField.textProperty() .unbindBidirectional(template.pathToGFXProperty());\n exportPriceTextField.textProperty() .unbindBidirectional(template.defExportPriceProperty());\n importPriceTextField.textProperty() .unbindBidirectional(template.defImportPriceProperty());\n }\n /**\n * Binds the properties of a given material to all TextFields and CheckBoxes.\n * @param materialTemplate template to be displayed\n */\n private void displayMaterial(VisualMaterialTemplate materialTemplate) {",
"score": 52.56058305397171
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " */\n private void enableTradable() {\n exportPriceTextField.setDisable(false);\n }\n /**\n * Unbinds the properties of a given materials from all TextFields and CheckBoxes.\n * @param template template to be unbound.\n */\n private void unbindMaterial(VisualMaterialTemplate template) {\n nameTextField.textProperty() .unbindBidirectional(template.nameProperty());",
"score": 52.32039346208837
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " * @param tag Tag name\n */\n public void setTag(String tag) {\n this.tag.set(tag);\n }\n /**\n * Lightweight mutator method.\n * @param isFactional Flag that determines if this tag is used to assign faction memberships to a realm.\n */\n public void setFactional(Boolean isFactional) {",
"score": 40.24733363106593
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " isFactional.set(false);\n }\n public Tag(Integer id, String tag, Boolean isFactional) {\n super();\n this.id.set(id);\n this.tag.set(tag);\n this.isFactional.set(isFactional);\n }\n /**\n * returns the tag value of the tag so that it can be made human-readable.",
"score": 37.19738098793016
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " */\n@XmlRootElement(name = \"tag\")\npublic class Tag {\n private final IntegerProperty id = new SimpleIntegerProperty();\n private final StringProperty tag = new SimpleStringProperty();\n private final BooleanProperty isFactional = new SimpleBooleanProperty();\n public Tag() {\n super();\n id.set(-1);\n tag.set(\"\");",
"score": 36.76637940728673
}
] | java | .unbindBidirectional(tag.tagProperty()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.button;
import net.dragondelve.downfall.util.DownfallUtil;
import net.dragondelve.downfall.util.PathRelativisor;
import javafx.scene.control.Button;
import javafx.scene.control.TextInputControl;
import javafx.stage.FileChooser;
import java.io.File;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* JavaFX Button that creates a FileChooser on action. the FileChooser is pre-configured to filter for images. Its initial directory is the gfx folder in the installation directory
*/
public class ImageChooserButton extends Button {
TextInputControl output;
/**
* Default constructor. If you use the default constructor you must set output before the button can be triggered by the user.
*/
public ImageChooserButton() {
this(null);
}
/**
* If you use this constructor the text title of the button will be set the default value of to "..."
* @param output a TextInputControl into which pathname to the chosen image will be written
*/
public ImageChooserButton(TextInputControl output) {
super();
textProperty().set("...");
this.output = output;
initBehaviour();
}
/**
*
* @param output a TextInputControl into which pathname to the chosen image will be written
* @param title text that is going to be displayed on the button.
*/
public ImageChooserButton(TextInputControl output,String title) {
super(title);
this.output = output;
initBehaviour();
}
/**
* Lightweight mutator method
* @param output a TextInputControl into which pathname to the chosen image will be written
*/
public void setOutput(TextInputControl output) {
this.output = output;
}
/**
* Initializes the default behaviour of the button.
*/
private void initBehaviour() {
setOnAction(e->{
FileChooser chooser = new FileChooser();
chooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("image","*.png"));
chooser.setInitialDirectory(new File("gfx"));
chooser.setTitle("Choose Your Image Wisely");
File fileChosen = chooser.showOpenDialog(this.getScene().getWindow());
if(output != null)
if(fileChosen != null) {
PathRelativisor relativisor = new PathRelativisor(fileChosen);
output.setText | (relativisor.relativize()); |
}
else
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.INFO, "ImageChooserButton: No File Chosen, content of output was not changed.");
else
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "Attempting to set Text without setting an output first.");
});
}
}
| src/main/java/net/dragondelve/mabel/button/ImageChooserButton.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " private void exportRules() {\n FileChooser fileChooser = new FileChooser();\n fileChooser.setTitle(\"Export Rules\");\n fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter(\"xml rules file\",\"*.xml\"));\n fileChooser.setInitialDirectory(new File(\"rules\"));\n File selectedFile = fileChooser.showSaveDialog(stage);\n if(selectedFile != null)\n Configurator.getInstance().saveRules(selectedFile.getPath());\n }\n /**",
"score": 67.54454468682056
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Imports and applies a ruleset from an XML File at a destination selected by a user with a JavaFX FileChooser.\n * Saves the new destination as lastLoadedRules in the Configuration\n */\n private void importRules() {\n FileChooser fileChooser = new FileChooser();\n fileChooser.setTitle(\"Import Rules\");\n fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter(\"xml rules file\",\"*.xml\"));\n fileChooser.setInitialDirectory(new File(\"rules\"));\n File selectedFile = fileChooser.showOpenDialog(stage);\n if(selectedFile != null)",
"score": 65.1212104210917
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter(\"xml save file\",\"*.xml\"));\n fileChooser.setInitialDirectory(new File(\"save\"));\n File selectedFile = fileChooser.showOpenDialog(stage);\n if(selectedFile != null) {\n Configurator.getInstance().getSaveManager().loadFrom(selectedFile.getPath());\n updateTabs();\n }\n }\n /**\n * Saves test realm",
"score": 63.456007995771394
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter(\"xml save file\",\"*.xml\"));\n fileChooser.setInitialDirectory(new File(\"save\"));\n File selectedFile = fileChooser.showSaveDialog(stage);\n if(selectedFile != null)\n Configurator.getInstance().getSaveManager().saveTo(selectedFile.getPath());\n }\n }",
"score": 60.0298789107641
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " */\n private void updateRealmTab() {\n realmScreenController.update();\n }\n /**\n * Loads test realm\n */\n private void loadRealmAction() {\n FileChooser fileChooser = new FileChooser();\n fileChooser.setTitle(\"Choose Savegame\");",
"score": 39.61366352402668
}
] | java | (relativisor.relativize()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.fetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
/**
* Simple implementation of Fetcher class that returns a new instance of Tag on request
*/
public final class SimpleTagFetcher implements Fetcher<Tag> {
/**
* This method is used to return a new instance of Tag on request.
* @return a new instance of Tag with its id set to be one larger than the last Tag in the currently selected rules
*/
@Override
public Tag retrieve() {
Tag tag = new Tag();
//TODO:Replace this mess with a proper solution distributing IDs.
//if there are any Tags in the current rules
if(Configurator.getInstance().getRules().getActorTags().size() > 1)
//set the new instance's id to be equal of the last item in that list incremented by one
tag.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);
else
tag.setId(1);
| tag.setTag("New Tag"); |
return tag;
}
}
| src/main/java/net/dragondelve/mabel/fetcher/SimpleTagFetcher.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " //set the new instance's id to be equal of the last item in that list incremented by one\n template.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);\n else\n template.setId(1);\n template.setName(\"New Template\");\n return template;\n }\n}",
"score": 146.3580955464874
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleBuildingTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualBuildingTemplate on request.\n * @return A new instance of VisualBuildingTemplate with its id set to be one larger than the last VisualBuildingTemplate in the currently selected rules\n */\n @Override\n public VisualBuildingTemplate retrieve() {\n VisualBuildingTemplate template = new VisualBuildingTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n if(Configurator.getInstance().getRules().getBuildingTemplates().size() > 1)\n template.setId(Configurator.getInstance().getRules().getBuildingTemplates().get(Configurator.getInstance().getRules().getBuildingTemplates().size()-1).getId()+1);",
"score": 129.919687918457
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualMaterialTemplate on request.\n * @return a new instance of VisualMaterialTemplate with its id set to be one larger than the last VisualMaterialTemplate in the currently selected rules\n */\n @Override\n public VisualMaterialTemplate retrieve() {\n VisualMaterialTemplate template = new VisualMaterialTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n //if there are any MaterialTemplates in the current rules\n if(Configurator.getInstance().getRules().getMaterialTemplates().size() > 1)",
"score": 120.43343857018692
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " */\n@XmlRootElement(name = \"tag\")\npublic class Tag {\n private final IntegerProperty id = new SimpleIntegerProperty();\n private final StringProperty tag = new SimpleStringProperty();\n private final BooleanProperty isFactional = new SimpleBooleanProperty();\n public Tag() {\n super();\n id.set(-1);\n tag.set(\"\");",
"score": 64.75505345216467
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " //retrieving full list of tags in current rules.\n tags = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags());\n //configuring Table Editor\n tagTableEditor.setFetcher(new SimpleTagFetcher());\n //Configuring Table View\n tagTableEditor.getTableView().setItems(tags);\n tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);\n //Configuring Columns\n TableColumn<Tag, String> tagColumn = new TableColumn<>();\n tagColumn.setText(\"Tag\");",
"score": 55.77123471266669
}
] | java | tag.setTag("New Tag"); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.main.tabs;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.Accordion;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.*;
/**
* A controller that controls the content of the Realm Tab.
* It displays user's realm Data allowing the user to see a quick overview of the state of their realm.
* Controls /fxml/main/tabs/RealmScreenController.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmScreenController {
@FXML
private Label diploRepLabel;
@FXML
private ImageView dynastyImageView;
@FXML
private Label govRankLabel;
@FXML
private Label infamyLabel;
@FXML
private Label legitimacyLabel;
@FXML
private Label nationalUnrestLabel;
@FXML
private Label nuicpLabel;
@FXML
private Label powerProjectionLabel;
@FXML
private Label prestigeLabel;
@FXML
private ImageView realmImageView;
@FXML
private GridPane stabilityNegativeGrid;
@FXML
private Label stabilityPerMonthLabel;
@FXML
private GridPane stabilityPositiveGrid;
@FXML
private VBox rootPane;
@FXML
private Label stabilityLabel;
@FXML
private Label realmNameLabel;
@FXML
private Pane stabilityCirclePane;
@FXML
private ListView<Tag> realmTagListView;
@FXML
private ListView<Tag> nonRealmTagListView;
@FXML
private Accordion tagsAccordion;
@FXML
private Pane realmPane;
@FXML
private Pane dynastyPane;
@FXML
private Pane negStabilityPane1;
@FXML
private Pane negStabilityPane2;
@FXML
private Pane negStabilityPane3;
@FXML
private Pane negStabilityPane4;
@FXML
private Pane negStabilityPane5;
@FXML
private Pane posStabilityPane1;
@FXML
private Pane posStabilityPane2;
@FXML
private Pane posStabilityPane3;
@FXML
private Pane posStabilityPane4;
@FXML
private Pane posStabilityPane5;
private final static Double IMAGE_PANE_GAP = 10.0;
private final static Double IMAGE_PANE_HEIGHT = 200.0;
private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();
private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
realmTagListView.setItems(realmTags);
nonRealmTagListView.setItems(nonRealmTags);
tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));
//Update ImageView Positions.
realmImageView.setX(10);
realmImageView.setY(10);
dynastyImageView.setX(10);
dynastyImageView.setY(10);
update();
}
/**
* Updates values on all labels if there was an action or an event that could have changed them.
* Also updates ImageViews and the tag table.
*/
public void update() {
//update user realm
Realm userRealm = | Configurator.getInstance().getUserRealm(); |
//update Labels
realmNameLabel .setText(userRealm.getName());
diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());
stabilityLabel .setText(userRealm.getStability().toString());
legitimacyLabel .setText(userRealm.getLegitimacy().toString());
powerProjectionLabel .setText(userRealm.getPowerProjection().toString());
infamyLabel .setText(userRealm.getInfamy().toString());
prestigeLabel .setText(userRealm.getPrestige().toString());
//TODO: Add Gouvernment Rank
//govRankLabel.setText(userRealm.getGouvernmentRank());
//update Image views
updateImageView(realmPane, new Image("file:"+userRealm.getRealmPathToGFX()), realmImageView);
updateImageView(dynastyPane, new Image("file:"+userRealm.getRulerPathToGFX()), dynastyImageView);
//update Stability Bar
updateStabilityBar();
//update realm tags
realmTags.clear();
nonRealmTags.clear();
userRealm.getTags().forEach(e->{
if(e.isFactional())
realmTags.add(e);
else
nonRealmTags.add(e);
});
}
/**
* Updates the given ImageView to contain the given Image, if image provided is not null, forces the width of the container to conform to the ImageView's Image width
* modified so that the image keeps its aspect ratio, plus some gaps that are defined in IMAGE_PANE_GAP. If the image equals to null it forces the ImageView
* to conform to IMAGE_PANE_HEIGHT in both Width and Height.
* @param container Container Pane that contains the ImageView. It will be resized to have a height of IMAGE_PANE_HEIGHT. It's width will depend on the aspect ratio of the Image provided.
* @param image Image to be set into the ImageView. It's aspect ratio is used to define container's width.
* @param imageView Image view to be set with a given image. It's best if ImageView's parent is the container argument, but it's not required.
*/
private void updateImageView(Pane container, Image image, ImageView imageView) {
imageView.setImage(image);
if(image != null && !image.isError()) {
double ratio = imageView.getFitHeight()/image.getHeight();
forceDimensions(container, IMAGE_PANE_HEIGHT, realmImageView.getImage().getWidth() * ratio + IMAGE_PANE_GAP * 2);
} else
forceDimensions(container, IMAGE_PANE_HEIGHT, IMAGE_PANE_HEIGHT);
}
/**
* Forces the dimension of the pane to conform to the parameters specified.
* @param pane Pane whose width and height you want to fix to particular values.
* @param height Height to which you want to set the pane's height.
* @param width Width to which you want to set the pane's width.
*/
private void forceDimensions(Pane pane, Double height, Double width) {
pane.setMinWidth(width);
pane.setMaxWidth(width);
pane.setPrefWidth(width);
pane.setMinHeight(height);
pane.setPrefHeight(height);
pane.setMaxHeight(height);
}
/**
* Updates the Stability bar to display the current stability in a visual way.
*/
private void updateStabilityBar() {
//update user realm
BackgroundFill negFill = new BackgroundFill(DownfallUtil.HIGHLIGHT_COLOR, null, null);
BackgroundFill posFill = new BackgroundFill(DownfallUtil.CONFIRM_COLOR, null, null);
BackgroundFill neutralFill = new BackgroundFill(DownfallUtil.BACKGROUND_COLOR, null, null);
updateStabilityPane(negStabilityPane5, neutralFill, negFill, -5.0, true);
updateStabilityPane(negStabilityPane4, neutralFill, negFill, -4.0, true);
updateStabilityPane(negStabilityPane3, neutralFill, negFill, -3.0, true);
updateStabilityPane(negStabilityPane2, neutralFill, negFill, -2.0, true);
updateStabilityPane(negStabilityPane1, neutralFill, negFill, -1.0, true);
updateStabilityPane(posStabilityPane1, neutralFill, posFill, 1.0, false);
updateStabilityPane(posStabilityPane2, neutralFill, posFill, 2.0, false);
updateStabilityPane(posStabilityPane3, neutralFill, posFill, 3.0, false);
updateStabilityPane(posStabilityPane4, neutralFill, posFill, 4.0, false);
updateStabilityPane(posStabilityPane5, neutralFill, posFill, 5.0, false);
}
/**
* Binds the background property to a new Background that is created with one of the two fills depending on whether the Stability of the realm "exceeds" the threshold given.
* "exceeds" for the purposes of this method means less than or equal to threshold if lessThanThreshold is true and greater or equal to the threshold if it is false.
* @param stabilityPane Pane whose background needs to be updated.
* @param neutralFill BackgroundFill to be used if the userRealm's stability does not "exceed" the threshold.
* @param activeFill BackgroundFill to be used if the userRealm's stability "exceeds" the threshold.
* @param threshold Value of the threshold that needs to be "exceeded" in order for the active fill to be used instead of neutralFill.
* @param lessThanThreshold Controls if the threshold is "exceeded" when the UserRealm's stability is less than or equal to, or greater than or equal to the threshold provided.
*/
private void updateStabilityPane( Pane stabilityPane, BackgroundFill neutralFill, BackgroundFill activeFill, Double threshold,Boolean lessThanThreshold) {
//TODO:Find a more refined way of doing this.
if (lessThanThreshold) {
if (Configurator.getInstance().getUserRealm().getStability() <= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
} else {
if (Configurator.getInstance().getUserRealm().getStability() >= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
}
}
}
| src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 34.76625651977128
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " updateTabs();\n }\n /**\n * Forces an update on all tabs.\n */\n private void updateTabs() {\n updateRealmTab();\n }\n /**\n * Forces an upgrade on Realm Tab",
"score": 33.33089048202747
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " stockpileTableView.getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);\n stockpileTableView.setItems(Configurator.getInstance().getUserRealm().getStockpile());\n initializeTabs();\n update();\n }\n /**\n * Lightweight Mutator Method.\n * Always should be called before the stage is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */",
"score": 28.310363767353486
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " public void setLastSavegamePathname(String lastSavegamePathname) {\n configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());\n saveConfiguration();\n }\n /**\n * Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm\n * @param realm realm whose values are going to override the current values of userRealm\n */\n public void setUserRealm(Realm realm) {\n userRealm.setId(realm.getId());",
"score": 24.797730858626483
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " materialImageColumn.setCellValueFactory(param -> param.getValue().pathToGFXProperty());\n materialTemplateEditor.getTableView().getColumns().addAll(materialImageColumn, materialNameColumn);\n //listening for changes in selection made by the user in materials table view to update data displayed.\n materialTemplateEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {\n if(oldValue != null) {\n if (!validateMaterial(oldValue))\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"Material Editor Controller saving an invalid tag\");\n else\n unbindMaterial(oldValue);\n }",
"score": 24.79060153999584
}
] | java | Configurator.getInstance().getUserRealm(); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.mabel.fetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
/**
* Simple implementation of Fetcher class that returns a new instance of Tag on request
*/
public final class SimpleTagFetcher implements Fetcher<Tag> {
/**
* This method is used to return a new instance of Tag on request.
* @return a new instance of Tag with its id set to be one larger than the last Tag in the currently selected rules
*/
@Override
public Tag retrieve() {
Tag tag = new Tag();
//TODO:Replace this mess with a proper solution distributing IDs.
//if there are any Tags in the current rules
if(Configurator.getInstance().getRules().getActorTags().size() > 1)
//set the new instance's id to be equal of the last item in that list incremented by one
tag.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);
else
| tag.setId(1); |
tag.setTag("New Tag");
return tag;
}
}
| src/main/java/net/dragondelve/mabel/fetcher/SimpleTagFetcher.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " //set the new instance's id to be equal of the last item in that list incremented by one\n template.setId(Configurator.getInstance().getRules().getMaterialTemplates().get(Configurator.getInstance().getRules().getMaterialTemplates().size()-1).getId()+1);\n else\n template.setId(1);\n template.setName(\"New Template\");\n return template;\n }\n}",
"score": 141.44115783200579
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleBuildingTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualBuildingTemplate on request.\n * @return A new instance of VisualBuildingTemplate with its id set to be one larger than the last VisualBuildingTemplate in the currently selected rules\n */\n @Override\n public VisualBuildingTemplate retrieve() {\n VisualBuildingTemplate template = new VisualBuildingTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n if(Configurator.getInstance().getRules().getBuildingTemplates().size() > 1)\n template.setId(Configurator.getInstance().getRules().getBuildingTemplates().get(Configurator.getInstance().getRules().getBuildingTemplates().size()-1).getId()+1);",
"score": 132.25430280338057
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/SimpleMaterialTemplateFetcher.java",
"retrieved_chunk": " /**\n * This method is used to return a new instance of VisualMaterialTemplate on request.\n * @return a new instance of VisualMaterialTemplate with its id set to be one larger than the last VisualMaterialTemplate in the currently selected rules\n */\n @Override\n public VisualMaterialTemplate retrieve() {\n VisualMaterialTemplate template = new VisualMaterialTemplate();\n //TODO:Replace this mess with a proper solution distributing IDs.\n //if there are any MaterialTemplates in the current rules\n if(Configurator.getInstance().getRules().getMaterialTemplates().size() > 1)",
"score": 122.87972915073914
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Tag.java",
"retrieved_chunk": " */\n@XmlRootElement(name = \"tag\")\npublic class Tag {\n private final IntegerProperty id = new SimpleIntegerProperty();\n private final StringProperty tag = new SimpleStringProperty();\n private final BooleanProperty isFactional = new SimpleBooleanProperty();\n public Tag() {\n super();\n id.set(-1);\n tag.set(\"\");",
"score": 54.988959960677896
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " * @return VisualMaterialTemplate that is associated with that material. If none found returns null.\n */\n public VisualMaterialTemplate findMaterialTemplate(Material material) {\n if(material == null)\n return null;\n List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());\n if(list.size() > 1) {\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, \"Multiple(\"+list.size()+\") IDs found for template with id = \"+material.getTemplateId());\n } else if(list.size() <= 0) {\n Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, \"No Template found for id = \"+material.getTemplateId());",
"score": 52.599870256228684
}
] | java | tag.setId(1); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.main.tabs;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.Accordion;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.*;
/**
* A controller that controls the content of the Realm Tab.
* It displays user's realm Data allowing the user to see a quick overview of the state of their realm.
* Controls /fxml/main/tabs/RealmScreenController.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmScreenController {
@FXML
private Label diploRepLabel;
@FXML
private ImageView dynastyImageView;
@FXML
private Label govRankLabel;
@FXML
private Label infamyLabel;
@FXML
private Label legitimacyLabel;
@FXML
private Label nationalUnrestLabel;
@FXML
private Label nuicpLabel;
@FXML
private Label powerProjectionLabel;
@FXML
private Label prestigeLabel;
@FXML
private ImageView realmImageView;
@FXML
private GridPane stabilityNegativeGrid;
@FXML
private Label stabilityPerMonthLabel;
@FXML
private GridPane stabilityPositiveGrid;
@FXML
private VBox rootPane;
@FXML
private Label stabilityLabel;
@FXML
private Label realmNameLabel;
@FXML
private Pane stabilityCirclePane;
@FXML
private ListView<Tag> realmTagListView;
@FXML
private ListView<Tag> nonRealmTagListView;
@FXML
private Accordion tagsAccordion;
@FXML
private Pane realmPane;
@FXML
private Pane dynastyPane;
@FXML
private Pane negStabilityPane1;
@FXML
private Pane negStabilityPane2;
@FXML
private Pane negStabilityPane3;
@FXML
private Pane negStabilityPane4;
@FXML
private Pane negStabilityPane5;
@FXML
private Pane posStabilityPane1;
@FXML
private Pane posStabilityPane2;
@FXML
private Pane posStabilityPane3;
@FXML
private Pane posStabilityPane4;
@FXML
private Pane posStabilityPane5;
private final static Double IMAGE_PANE_GAP = 10.0;
private final static Double IMAGE_PANE_HEIGHT = 200.0;
private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();
private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
realmTagListView.setItems(realmTags);
nonRealmTagListView.setItems(nonRealmTags);
tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));
//Update ImageView Positions.
realmImageView.setX(10);
realmImageView.setY(10);
dynastyImageView.setX(10);
dynastyImageView.setY(10);
update();
}
/**
* Updates values on all labels if there was an action or an event that could have changed them.
* Also updates ImageViews and the tag table.
*/
public void update() {
//update user realm
Realm userRealm = Configurator.getInstance().getUserRealm();
//update Labels
realmNameLabel .setText(userRealm.getName());
diploRepLabel | .setText(userRealm.getDiplomaticReputation().toString()); |
stabilityLabel .setText(userRealm.getStability().toString());
legitimacyLabel .setText(userRealm.getLegitimacy().toString());
powerProjectionLabel .setText(userRealm.getPowerProjection().toString());
infamyLabel .setText(userRealm.getInfamy().toString());
prestigeLabel .setText(userRealm.getPrestige().toString());
//TODO: Add Gouvernment Rank
//govRankLabel.setText(userRealm.getGouvernmentRank());
//update Image views
updateImageView(realmPane, new Image("file:"+userRealm.getRealmPathToGFX()), realmImageView);
updateImageView(dynastyPane, new Image("file:"+userRealm.getRulerPathToGFX()), dynastyImageView);
//update Stability Bar
updateStabilityBar();
//update realm tags
realmTags.clear();
nonRealmTags.clear();
userRealm.getTags().forEach(e->{
if(e.isFactional())
realmTags.add(e);
else
nonRealmTags.add(e);
});
}
/**
* Updates the given ImageView to contain the given Image, if image provided is not null, forces the width of the container to conform to the ImageView's Image width
* modified so that the image keeps its aspect ratio, plus some gaps that are defined in IMAGE_PANE_GAP. If the image equals to null it forces the ImageView
* to conform to IMAGE_PANE_HEIGHT in both Width and Height.
* @param container Container Pane that contains the ImageView. It will be resized to have a height of IMAGE_PANE_HEIGHT. It's width will depend on the aspect ratio of the Image provided.
* @param image Image to be set into the ImageView. It's aspect ratio is used to define container's width.
* @param imageView Image view to be set with a given image. It's best if ImageView's parent is the container argument, but it's not required.
*/
private void updateImageView(Pane container, Image image, ImageView imageView) {
imageView.setImage(image);
if(image != null && !image.isError()) {
double ratio = imageView.getFitHeight()/image.getHeight();
forceDimensions(container, IMAGE_PANE_HEIGHT, realmImageView.getImage().getWidth() * ratio + IMAGE_PANE_GAP * 2);
} else
forceDimensions(container, IMAGE_PANE_HEIGHT, IMAGE_PANE_HEIGHT);
}
/**
* Forces the dimension of the pane to conform to the parameters specified.
* @param pane Pane whose width and height you want to fix to particular values.
* @param height Height to which you want to set the pane's height.
* @param width Width to which you want to set the pane's width.
*/
private void forceDimensions(Pane pane, Double height, Double width) {
pane.setMinWidth(width);
pane.setMaxWidth(width);
pane.setPrefWidth(width);
pane.setMinHeight(height);
pane.setPrefHeight(height);
pane.setMaxHeight(height);
}
/**
* Updates the Stability bar to display the current stability in a visual way.
*/
private void updateStabilityBar() {
//update user realm
BackgroundFill negFill = new BackgroundFill(DownfallUtil.HIGHLIGHT_COLOR, null, null);
BackgroundFill posFill = new BackgroundFill(DownfallUtil.CONFIRM_COLOR, null, null);
BackgroundFill neutralFill = new BackgroundFill(DownfallUtil.BACKGROUND_COLOR, null, null);
updateStabilityPane(negStabilityPane5, neutralFill, negFill, -5.0, true);
updateStabilityPane(negStabilityPane4, neutralFill, negFill, -4.0, true);
updateStabilityPane(negStabilityPane3, neutralFill, negFill, -3.0, true);
updateStabilityPane(negStabilityPane2, neutralFill, negFill, -2.0, true);
updateStabilityPane(negStabilityPane1, neutralFill, negFill, -1.0, true);
updateStabilityPane(posStabilityPane1, neutralFill, posFill, 1.0, false);
updateStabilityPane(posStabilityPane2, neutralFill, posFill, 2.0, false);
updateStabilityPane(posStabilityPane3, neutralFill, posFill, 3.0, false);
updateStabilityPane(posStabilityPane4, neutralFill, posFill, 4.0, false);
updateStabilityPane(posStabilityPane5, neutralFill, posFill, 5.0, false);
}
/**
* Binds the background property to a new Background that is created with one of the two fills depending on whether the Stability of the realm "exceeds" the threshold given.
* "exceeds" for the purposes of this method means less than or equal to threshold if lessThanThreshold is true and greater or equal to the threshold if it is false.
* @param stabilityPane Pane whose background needs to be updated.
* @param neutralFill BackgroundFill to be used if the userRealm's stability does not "exceed" the threshold.
* @param activeFill BackgroundFill to be used if the userRealm's stability "exceeds" the threshold.
* @param threshold Value of the threshold that needs to be "exceeded" in order for the active fill to be used instead of neutralFill.
* @param lessThanThreshold Controls if the threshold is "exceeded" when the UserRealm's stability is less than or equal to, or greater than or equal to the threshold provided.
*/
private void updateStabilityPane( Pane stabilityPane, BackgroundFill neutralFill, BackgroundFill activeFill, Double threshold,Boolean lessThanThreshold) {
//TODO:Find a more refined way of doing this.
if (lessThanThreshold) {
if (Configurator.getInstance().getUserRealm().getStability() <= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
} else {
if (Configurator.getInstance().getUserRealm().getStability() >= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
}
}
}
| src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " userRealm.setName(realm.getName());\n userRealm.setTreasury(realm.getTreasury());\n userRealm.setInfamy(realm.getInfamy());\n userRealm.setLegitimacy(realm.getLegitimacy());\n userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());\n userRealm.setPowerProjection(realm.getPowerProjection());\n userRealm.setPrestige(realm.getPrestige());\n userRealm.setStability(realm.getStability());\n userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());\n userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());",
"score": 39.027933869379716
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " public void setLastSavegamePathname(String lastSavegamePathname) {\n configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());\n saveConfiguration();\n }\n /**\n * Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm\n * @param realm realm whose values are going to override the current values of userRealm\n */\n public void setUserRealm(Realm realm) {\n userRealm.setId(realm.getId());",
"score": 37.191779637497405
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 37.035051273530435
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 34.76625651977128
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " *\n * @param pathToRules pathname to the rules that were used for this Save\n * @param userRealm user's realm data.\n */\n public Savegame(String pathToRules, Realm userRealm) {\n this.pathToRules = pathToRules;\n this.userRealm = userRealm;\n }\n /**\n * Lightweight accessor method.",
"score": 33.64186428975215
}
] | java | .setText(userRealm.getDiplomaticReputation().toString()); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.model.betacraft;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
public class BCServerList {
private final List<BCServerInfo> servers;
public BCServerList(final List<BCServerInfo> servers) {
this.servers = servers;
}
public static BCServerList fromDocument(final Document document) {
final List<BCServerInfo> servers = new LinkedList<>();
final Elements serverElements = document.getElementsByClass("online");
for (final Element serverElement : serverElements) {
final String joinUrl = serverElement.attr("href");
if (joinUrl.length() < 7) {
continue;
}
final String substringedUrl = joinUrl.substring(7);
final String[] urlParts = substringedUrl.split("/");
if (urlParts.length != 4) {
continue;
}
final String hostAndPort = urlParts[0];
final int portColonIndex = hostAndPort.lastIndexOf(":");
if (portColonIndex == -1) {
continue;
}
// We're using substring here in-case someone uses IPv6 for their server.
final String portStr = hostAndPort.substring(Math.min(portColonIndex + 1, hostAndPort.length() - 1));
final int port;
try {
port = Integer.parseInt(portStr);
} catch (NumberFormatException ignored) {
continue;
}
// We're doing this .replace operation because some server entries somehow manage to duplicate their port.
final String host = hostAndPort.substring(0, portColonIndex).replace(":" + port, "");
final String versionIdentifier = urlParts[3];
final BCVersion version = BCVersion.fromString(versionIdentifier);
final String rawNameStr = serverElement.text();
final int firstIndexOfClosingSquareBracket = rawNameStr.indexOf("]");
if (firstIndexOfClosingSquareBracket == -1) {
continue;
}
final String halfParsedNameStr = rawNameStr.substring(Math.min(firstIndexOfClosingSquareBracket + 2, rawNameStr.length() - 1));
final boolean onlineMode = halfParsedNameStr.endsWith("[Online Mode]");
final String parsedNameStr = onlineMode ? halfParsedNameStr.replace("[Online Mode]", "") : halfParsedNameStr;
final Element playerCountElement = serverElement.nextElementSibling();
if (playerCountElement == null) {
continue;
}
final String playerCountContent = playerCountElement.text();
final int indexOfOpeningBracket = playerCountContent.indexOf("(");
final int indexOfClosingBracket = playerCountContent.indexOf(")");
if (indexOfOpeningBracket == -1 || indexOfClosingBracket == -1) {
continue;
}
final String playerCountActualContent = playerCountContent.substring(indexOfOpeningBracket + 1, indexOfClosingBracket)
.replace(" ", "");
final String[] splitPlayerCount = playerCountActualContent.split("/");
if (splitPlayerCount.length != 2) {
continue;
}
final int playerCount;
final int playerLimit;
try {
playerCount = Integer.parseInt(splitPlayerCount[0]);
playerLimit = Integer.parseInt(splitPlayerCount[1]);
} catch (NumberFormatException ignored) {
continue;
}
final BCServerInfo server = new BCServerInfo(parsedNameStr, playerCount, playerLimit, host, port, version, onlineMode, joinUrl, versionIdentifier);
servers.add(server);
}
return new BCServerList(servers);
}
public List<BCServerInfo> servers() {
return Collections.unmodifiableList(this.servers);
}
public List<BCServerInfo> serversOfVersion(final BCVersion version) {
final List<BCServerInfo> serverListCopy = this.servers();
return serverListCopy.stream().filter(s -> s.version().equals(version)).toList();
}
public List<BCServerInfo> serversWithOnlineMode(final boolean on) {
return this.servers().stream().filter(s -> s.onlineMode() == on).toList();
}
public List<BCServerInfo> withGameVersion(final String gameVersion) {
return this.servers().stream().filter | (s -> s.gameVersion().equals(gameVersion)).toList(); |
}
}
| src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerList.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/base/CCAuthenticationResponse.java",
"retrieved_chunk": " }\n return builder.toString()\n .trim();\n }\n public Set<CCError> errors() {\n return this.errors.stream().map(s -> CCError.valueOf(s.toUpperCase(Locale.ROOT))).collect(Collectors.toSet());\n }\n public boolean mfaRequired() {\n return this.errors().stream().anyMatch(e -> e == CCError.LOGIN_CODE);\n }",
"score": 66.17978348240872
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/CCServerList.java",
"retrieved_chunk": " private final List<CCServerInfo> servers;\n public CCServerList(final List<CCServerInfo> servers) {\n this.servers = servers;\n }\n public List<CCServerInfo> servers() {\n return this.servers;\n }\n public static CCServerList fromJson(final String json) {\n return ClassiCubeHandler.GSON.fromJson(json, CCServerList.class);\n }",
"score": 53.26896974944937
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " private final int playerLimit;\n private final String host;\n private final int port;\n private final BCVersion version;\n private final boolean onlineMode;\n private final String joinUrl;\n private final String gameVersion;\n public BCServerInfo(final String name, final int playerCount, final int playerLimit, final String host, final int port, final BCVersion version, final boolean onlineMode, final String joinUrl, final String gameVersion) {\n this.name = name.trim();\n this.playerCount = playerCount;",
"score": 50.83289080744382
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " this.playerLimit = playerLimit;\n this.host = host;\n this.port = port;\n this.version = version;\n this.onlineMode = onlineMode;\n this.joinUrl = joinUrl;\n this.gameVersion = gameVersion;\n }\n public String name() {\n return name;",
"score": 42.89614716696075
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " return joinUrl;\n }\n public String gameVersion() {\n return gameVersion;\n }\n @Override\n public String toString() {\n return \"BCServerInfo{\" +\n \"name='\" + name + '\\'' +\n \", playerCount=\" + playerCount +",
"score": 42.265843333110425
}
] | java | (s -> s.gameVersion().equals(gameVersion)).toList(); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.model.betacraft;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
public class BCServerList {
private final List<BCServerInfo> servers;
public BCServerList(final List<BCServerInfo> servers) {
this.servers = servers;
}
public static BCServerList fromDocument(final Document document) {
final List<BCServerInfo> servers = new LinkedList<>();
final Elements serverElements = document.getElementsByClass("online");
for (final Element serverElement : serverElements) {
final String joinUrl = serverElement.attr("href");
if (joinUrl.length() < 7) {
continue;
}
final String substringedUrl = joinUrl.substring(7);
final String[] urlParts = substringedUrl.split("/");
if (urlParts.length != 4) {
continue;
}
final String hostAndPort = urlParts[0];
final int portColonIndex = hostAndPort.lastIndexOf(":");
if (portColonIndex == -1) {
continue;
}
// We're using substring here in-case someone uses IPv6 for their server.
final String portStr = hostAndPort.substring(Math.min(portColonIndex + 1, hostAndPort.length() - 1));
final int port;
try {
port = Integer.parseInt(portStr);
} catch (NumberFormatException ignored) {
continue;
}
// We're doing this .replace operation because some server entries somehow manage to duplicate their port.
final String host = hostAndPort.substring(0, portColonIndex).replace(":" + port, "");
final String versionIdentifier = urlParts[3];
final BCVersion version = | BCVersion.fromString(versionIdentifier); |
final String rawNameStr = serverElement.text();
final int firstIndexOfClosingSquareBracket = rawNameStr.indexOf("]");
if (firstIndexOfClosingSquareBracket == -1) {
continue;
}
final String halfParsedNameStr = rawNameStr.substring(Math.min(firstIndexOfClosingSquareBracket + 2, rawNameStr.length() - 1));
final boolean onlineMode = halfParsedNameStr.endsWith("[Online Mode]");
final String parsedNameStr = onlineMode ? halfParsedNameStr.replace("[Online Mode]", "") : halfParsedNameStr;
final Element playerCountElement = serverElement.nextElementSibling();
if (playerCountElement == null) {
continue;
}
final String playerCountContent = playerCountElement.text();
final int indexOfOpeningBracket = playerCountContent.indexOf("(");
final int indexOfClosingBracket = playerCountContent.indexOf(")");
if (indexOfOpeningBracket == -1 || indexOfClosingBracket == -1) {
continue;
}
final String playerCountActualContent = playerCountContent.substring(indexOfOpeningBracket + 1, indexOfClosingBracket)
.replace(" ", "");
final String[] splitPlayerCount = playerCountActualContent.split("/");
if (splitPlayerCount.length != 2) {
continue;
}
final int playerCount;
final int playerLimit;
try {
playerCount = Integer.parseInt(splitPlayerCount[0]);
playerLimit = Integer.parseInt(splitPlayerCount[1]);
} catch (NumberFormatException ignored) {
continue;
}
final BCServerInfo server = new BCServerInfo(parsedNameStr, playerCount, playerLimit, host, port, version, onlineMode, joinUrl, versionIdentifier);
servers.add(server);
}
return new BCServerList(servers);
}
public List<BCServerInfo> servers() {
return Collections.unmodifiableList(this.servers);
}
public List<BCServerInfo> serversOfVersion(final BCVersion version) {
final List<BCServerInfo> serverListCopy = this.servers();
return serverListCopy.stream().filter(s -> s.version().equals(version)).toList();
}
public List<BCServerInfo> serversWithOnlineMode(final boolean on) {
return this.servers().stream().filter(s -> s.onlineMode() == on).toList();
}
public List<BCServerInfo> withGameVersion(final String gameVersion) {
return this.servers().stream().filter(s -> s.gameVersion().equals(gameVersion)).toList();
}
}
| src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerList.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " private final int playerLimit;\n private final String host;\n private final int port;\n private final BCVersion version;\n private final boolean onlineMode;\n private final String joinUrl;\n private final String gameVersion;\n public BCServerInfo(final String name, final int playerCount, final int playerLimit, final String host, final int port, final BCVersion version, final boolean onlineMode, final String joinUrl, final String gameVersion) {\n this.name = name.trim();\n this.playerCount = playerCount;",
"score": 25.502652131539335
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " public int port() {\n return port;\n }\n public BCVersion version() {\n return version;\n }\n public boolean onlineMode() {\n return onlineMode;\n }\n public String joinUrl() {",
"score": 24.715145794269052
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " \", playerLimit=\" + playerLimit +\n \", host='\" + host + '\\'' +\n \", port=\" + port +\n \", version=\" + version +\n \", onlineMode=\" + onlineMode +\n \", joinUrl='\" + joinUrl + '\\'' +\n \", gameVersion='\" + gameVersion + '\\'' +\n '}';\n }\n}",
"score": 23.394768477163478
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCServerInfo.java",
"retrieved_chunk": " this.playerLimit = playerLimit;\n this.host = host;\n this.port = port;\n this.version = version;\n this.onlineMode = onlineMode;\n this.joinUrl = joinUrl;\n this.gameVersion = gameVersion;\n }\n public String name() {\n return name;",
"score": 22.51174291864713
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/betacraft/BCVersion.java",
"retrieved_chunk": " CLASSIC(new String[]{\"c\"}),\n INDEV(new String[]{\"mp-in-\", \"in-\", \"indev\"}),\n INFDEV(new String[]{\"infdev\"}),\n // 12-year-old server owners try not to give their server a non-compliant \"custom\" version challenge (Quite impossible)\n ALPHA(new String[]{\"a\", \"nsss\"}),\n BETA(new String[]{\"b\"}),\n UNKNOWN(new String[0]);\n final String[] versionPrefixes;\n BCVersion(final String[] versionPrefixes) {\n this.versionPrefixes = versionPrefixes;",
"score": 20.914303517965322
}
] | java | BCVersion.fromString(versionIdentifier); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall;
import net.dragondelve.downfall.ui.main.DownfallMainController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
/**
* Main application class of Downfall.
*/
public final class DownfallMain extends Application {
/**
* Launches the JavaFX application.
* @param args Program arguments. Ignored.
*/
public static void main(String[] args) {
launch();
}
/**
* start method of the client application
* @param stage primary stage of the application
* @throws Exception any uncaught exception.
*/
@Override
public void start(Stage stage) throws Exception {
Configurator configurator = Configurator.getInstance();
| configurator.loadConfiguration(); |
configurator.loadAndApplyRules();
stage.setTitle("Downfall v0.1.1");
stage.initStyle(StageStyle.UNDECORATED);
stage.setOnCloseRequest(e -> {
configurator.saveRules();
configurator.saveConfiguration();
});
stage.setWidth(1260);
stage.setHeight(700);
stage.setMinHeight(650);
stage.setMinWidth(1200);
FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLDownfallMainFXML());
DownfallMainController controller = new DownfallMainController();
controller.setStage(stage);
loader.setController(controller);
Scene scene = new Scene(loader.load());
stage.setScene(scene);
stage.show();
}
}
| src/main/java/net/dragondelve/downfall/DownfallMain.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/VisualTagFetcher.java",
"retrieved_chunk": " @Override\n public void initialize(Stage parent, ObservableList<Tag> items) {\n stage = new Stage();\n if(parent != null)\n stage.initOwner(parent);\n Scene scene = new Scene(this);\n stage.setScene(scene);\n tableView.setItems(Objects.requireNonNullElseGet(items, () -> FXCollections.observableList(Configurator.getInstance().getRules().getActorTags())));\n }\n /**",
"score": 25.577650975396928
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**",
"score": 24.99081781662191
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " fileChooserButton.setOutput(pathToGFXTextField);\n okButton.setOnAction(e-> stage.close());\n }\n /**\n * Lightweight mutator method.\n * Always should be called before the editor is displayed to the user.\n * @param stage Stage on which this controller is displayed.\n */\n @Override\n public void setStage(Stage stage) {",
"score": 24.54821765176098
},
{
"filename": "src/main/java/net/dragondelve/mabel/fetcher/ConversionMaterialFetcher.java",
"retrieved_chunk": " }\n /**\n * Creates a new stage that will be owned by the parent Stage. sets the provided list of items to the Table View. It should always be run before its retrieve method.\n * @param parent a parent stage that will be set as an owner of the stage displayed by the ConversionMaterialFetcher if a null is provided it will not set any owners for the stage.\n * @param items a list of items to be displayed in the TableView if a null is provided it will load a list in the current ruleset\n */\n @Override\n public void initialize(Stage parent, ObservableList<VisualMaterialTemplate> items) {\n stage = new Stage();\n if(parent != null)",
"score": 23.968888745728623
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**\n * Creates a stage on which an editor controlled by a StageController can be displayed.\n * Loads an FXML File from the URL, sets the controller and finally displays the stage.\n * @param editorFXMLURL URL to a FXML file that contains the editor's gui information.\n * @param controller controller to be used for the new Stage.\n * @param title text title to be displayed on the new Stage.",
"score": 22.887057296873397
}
] | java | configurator.loadConfiguration(); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm;
import net.dragondelve.downfall.realm.template.MaterialTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
/**
* Represents a bundle of materials, like 30 Wood or 15 Stone.
* Each Material has a template and is used to both show income and amount stockpiled. It is also used to show costs of operating a building
*/
@XmlRootElement(name="material")
public class Material {
private final IntegerProperty idProperty = new SimpleIntegerProperty(-1);
//I honestly would have overloaded +- operators for Material because you can just add/subtract their amounts if they have the same ID
private final IntegerProperty amountProperty = new SimpleIntegerProperty(0);
/**
* Initializes amount to a default value of 0.
* @param template Template from which this material will be generated from
*/
public Material(VisualMaterialTemplate template) {
this(template, 0);
}
/**
*
* @param template Template from which this material will be generated from
* @param amount Amount of materials in this bundle.
*/
public Material(MaterialTemplate template, Integer amount) {
idProperty | .setValue(template.getId()); |
amountProperty.setValue(amount);
}
/**
* Default Constructor. it creates an invalid material. Its id is set to -1 and amount is set 0.
*/
public Material(){
this(-1, 0);
}
/**
*
* @param id Material Template id of a template that this bundle of materials represents
* @param amount Amount of materials in this bundle.
*/
public Material(Integer id, Integer amount) {
idProperty.setValue(id);
amountProperty.setValue(amount);
}
/**
* Lightweight Accessor Method
* @return Material Template id of a template that this bundle of materials represents
*/
public IntegerProperty idProperty() {
return idProperty;
}
/**
* Lightweight Accessor Method
* @return Amount of materials in this bundle as a property.
*/
public IntegerProperty amountProperty() {
return amountProperty;
}
/**
* Lightweight Accessor Method
* @return Material Template id of a template that this bundle of materials represents
*/
@XmlElement(name = "template-id")
public Integer getTemplateId() {
return idProperty.get();
}
/**
* Lightweight Accessor Method
* @return Amount of materials in this bundle.
*/
@XmlElement(name = "amount")
public Integer getAmount() {
return amountProperty.get();
}
/**
* Lightweight Mutator Method
* @param id Material Template id of a template that this bundle of materials represents
*/
public void setTemplateId(Integer id) {
idProperty.setValue(id);
}
/**
* Lightweight Mutator Method
* @param amount Amount of materials in this bundle.
*/
public void setAmount(Integer amount) {
amountProperty.setValue(amount);
}
} | src/main/java/net/dragondelve/downfall/realm/Material.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " @Override\n public void setStage(Stage stage) {\n this.stage = stage;\n }\n /**\n * Configures a SimpleTableEditor to have two columns. a Name column that will display the name of its template and an amount column that will display its amount.\n * It makes the amount column editable using TextFieldTableCell and sets up a ConversionFetcher that will generate a new material based on\n * @param editor Material editor to be configured.\n * @param nameColumnTitle title text to be used for the name column\n * @param amountColumnTitle title text to be used for the amount column",
"score": 34.868496709465056
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public MaterialTemplate(String name, Integer id, Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n super();\n this.nameProperty.setValue(name);\n this.idProperty.setValue(id);\n this.defExportPriceProperty .setValue(defExportPrice);\n this.defImportPriceProperty.setValue(defImportPrice);\n this.isExportableProperty.setValue(isExportable);",
"score": 33.609461375974234
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " /**\n * Lightweight mutator method\n * @param name Human-readable name of the materials to be generated with this template\n */\n public void setName(String name) {\n this.nameProperty.setValue(name);\n }\n /**\n * Lightweight mutator method\n * @param idProperty Unique identifier used to differentiate different material templates",
"score": 32.989821124194165
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " */\n public MaterialTemplate() {\n super();\n }\n /**\n *\n * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price",
"score": 31.696703950491433
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java",
"retrieved_chunk": " * @param name Human-readable name of the materials to be generated with this template\n * @param id Unique identifier used to differentiate different material templates\n * @param defExportPrice Default export price\n * @param defImportPrice Default import price\n * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n * @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square\n */\n public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral, String pathToGFX) {\n super(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral);",
"score": 27.595244444593995
}
] | java | .setValue(template.getId()); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j;
import de.florianmichael.classic4j.api.JoinServerInterface;
import java.io.InputStream;
import java.net.InetAddress;
import java.net.URI;
import java.net.URL;
import java.security.MessageDigest;
import java.util.Formatter;
import java.util.Scanner;
public class JSPBetaCraftHandler {
public final static URI GET_MP_PASS = URI.create("http://api.betacraft.uk/getmppass.jsp");
public static String requestMPPass(final String username, final String ip, final int port, final JoinServerInterface joinServerInterface) {
try {
final String server = InetAddress.getByName(ip).getHostAddress() + ":" + port;
| joinServerInterface.sendAuthRequest(sha1(server.getBytes())); |
final InputStream connection = new URL(GET_MP_PASS + "?user=" + username + "&server=" + server).openStream();
Scanner scanner = new Scanner(connection);
StringBuilder response = new StringBuilder();
while (scanner.hasNext()) {
response.append(scanner.next());
}
connection.close();
if (response.toString().contains("FAILED") || response.toString().contains("SERVER NOT FOUND")) return "0";
return response.toString();
} catch (Throwable t) {
t.printStackTrace();
return "0";
}
}
private static String sha1(final byte[] input) {
try {
Formatter formatter = new Formatter();
final byte[] hash = MessageDigest.getInstance("SHA-1").digest(input);
for (byte b : hash) {
formatter.format("%02x", b);
}
return formatter.toString();
} catch (Exception e) {
return null;
}
}
}
| src/main/java/de/florianmichael/classic4j/JSPBetaCraftHandler.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerInfoRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.URI;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.List;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerInfoRequest {\n private static URI generateUri(final List<String> serverHashes) {\n final String joined = String.join(\",\", serverHashes);\n return ClassiCubeHandler.SERVER_INFO_URI.resolve(joined);",
"score": 46.346349731006725
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": "import de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationLoginRequest;\nimport de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationTokenRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerInfoRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerListRequest;\nimport de.florianmichael.classic4j.model.classicube.CCServerList;\nimport de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;\nimport javax.security.auth.login.LoginException;\nimport java.net.URI;\nimport java.util.List;\nimport java.util.function.Consumer;",
"score": 41.025140488265706
},
{
"filename": "src/main/java/de/florianmichael/classic4j/BetaCraftHandler.java",
"retrieved_chunk": "import java.util.function.Consumer;\npublic class BetaCraftHandler {\n public final static URI SERVER_LIST = URI.create(\"https://betacraft.uk/serverlist\");\n public static void requestServerList(final Consumer<BCServerList> complete) {\n requestServerList(complete, Throwable::printStackTrace);\n }\n public static void requestServerList(final Consumer<BCServerList> complete, final Consumer<Throwable> throwableConsumer) {\n BCServerListRequest.send().whenComplete((bcServerList, throwable) -> {\n if (throwable != null) {\n throwableConsumer.accept(throwable);",
"score": 38.998216264903085
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationLoginRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.model.classicube.highlevel.CCAuthenticationData;\nimport de.florianmichael.classic4j.util.Pair;\nimport de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCAuthenticationLoginRequest {\n public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account, final CCAuthenticationResponse previousResponse, final String loginCode) {\n return CompletableFuture.supplyAsync(() -> {\n final CCAuthenticationData authenticationData = new CCAuthenticationData(account.username(), account.password(), previousResponse.token, loginCode);",
"score": 35.15423248691482
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationTokenRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCAuthenticationTokenRequest {\n public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.AUTHENTICATION_URI).build();\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 32.38305415439772
}
] | java | joinServerInterface.sendAuthRequest(sha1(server.getBytes())); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleTagFetcher;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.stage.Stage;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class TagsEditorController implements StageController {
@FXML
CheckBox isFactionalCheckBox;
@FXML
Button okButton;
@FXML
TextField tagTextField;
@FXML
SimpleTableEditor<Tag> tagTableEditor;
@FXML
SplitPane rootPane;
ObservableList<Tag> tags = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving full list of tags in current rules.
tags | = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()); |
//configuring Table Editor
tagTableEditor.setFetcher(new SimpleTagFetcher());
//Configuring Table View
tagTableEditor.getTableView().setItems(tags);
tagTableEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Configuring Columns
TableColumn<Tag, String> tagColumn = new TableColumn<>();
tagColumn.setText("Tag");
tagColumn.setCellValueFactory(param -> param.getValue().tagProperty());
tagTableEditor.getTableView().getColumns().add(tagColumn);
//Listening for changes in selection made by the user in tag table view to update data displayed.
tagTableEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null)
unbindTag(oldValue);
displayTag(newValue);
});
//other inits
okButton.setOnAction(e-> this.stage.close());
}
/**
* Lightweight mutator method.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Binds the properties of a given tag to all TextFields and CheckBoxes.
* @param tag Tag to be unbound.
*/
private void unbindTag(Tag tag) {
tagTextField.textProperty() .unbindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .unbindBidirectional(tag.isFactionalProperty());
}
/**
* Unbinds the properties of a given tag from all TextFields and CheckBoxes.
* @param tag Tag to be displayed.
*/
private void displayTag(Tag tag) {
tagTextField.textProperty() .bindBidirectional(tag.tagProperty());
isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n //retrieving the list of material templates in current rules.\n materials = FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates());\n //Configuring Template Editor",
"score": 136.02110809510967
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " ObservableList<Material> constructionMaterials = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 123.01414658023388
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);\n Realm realm = new Realm();\n //bind textFields",
"score": 121.101205703298
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();\n private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n realmTagListView.setItems(realmTags);\n nonRealmTagListView.setItems(nonRealmTags);\n tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));",
"score": 71.73459960216195
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " private Double yOffset;\n final RealmScreenController realmScreenController = new RealmScreenController();\n private static final String STOCKPILE_NAME_COLUMN_NAME = \"Stockpile\";\n private static final String STOCKPILE_AMOUNT_COLUMN_NAME = \"#\";\n private static final Integer STOCKPILE_AMOUNT_COLUMN_WIDTH = 50;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {",
"score": 68.30257061302976
}
] | java | = FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.main.tabs;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.Accordion;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.*;
/**
* A controller that controls the content of the Realm Tab.
* It displays user's realm Data allowing the user to see a quick overview of the state of their realm.
* Controls /fxml/main/tabs/RealmScreenController.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmScreenController {
@FXML
private Label diploRepLabel;
@FXML
private ImageView dynastyImageView;
@FXML
private Label govRankLabel;
@FXML
private Label infamyLabel;
@FXML
private Label legitimacyLabel;
@FXML
private Label nationalUnrestLabel;
@FXML
private Label nuicpLabel;
@FXML
private Label powerProjectionLabel;
@FXML
private Label prestigeLabel;
@FXML
private ImageView realmImageView;
@FXML
private GridPane stabilityNegativeGrid;
@FXML
private Label stabilityPerMonthLabel;
@FXML
private GridPane stabilityPositiveGrid;
@FXML
private VBox rootPane;
@FXML
private Label stabilityLabel;
@FXML
private Label realmNameLabel;
@FXML
private Pane stabilityCirclePane;
@FXML
private ListView<Tag> realmTagListView;
@FXML
private ListView<Tag> nonRealmTagListView;
@FXML
private Accordion tagsAccordion;
@FXML
private Pane realmPane;
@FXML
private Pane dynastyPane;
@FXML
private Pane negStabilityPane1;
@FXML
private Pane negStabilityPane2;
@FXML
private Pane negStabilityPane3;
@FXML
private Pane negStabilityPane4;
@FXML
private Pane negStabilityPane5;
@FXML
private Pane posStabilityPane1;
@FXML
private Pane posStabilityPane2;
@FXML
private Pane posStabilityPane3;
@FXML
private Pane posStabilityPane4;
@FXML
private Pane posStabilityPane5;
private final static Double IMAGE_PANE_GAP = 10.0;
private final static Double IMAGE_PANE_HEIGHT = 200.0;
private final ObservableList<Tag> realmTags = FXCollections.observableArrayList();
private final ObservableList<Tag> nonRealmTags = FXCollections.observableArrayList();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
realmTagListView.setItems(realmTags);
nonRealmTagListView.setItems(nonRealmTags);
tagsAccordion.setExpandedPane(tagsAccordion.getPanes().get(0));
//Update ImageView Positions.
realmImageView.setX(10);
realmImageView.setY(10);
dynastyImageView.setX(10);
dynastyImageView.setY(10);
update();
}
/**
* Updates values on all labels if there was an action or an event that could have changed them.
* Also updates ImageViews and the tag table.
*/
public void update() {
//update user realm
Realm userRealm = Configurator.getInstance().getUserRealm();
//update Labels
realmNameLabel .setText(userRealm.getName());
diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());
stabilityLabel .setText(userRealm.getStability().toString());
| legitimacyLabel .setText(userRealm.getLegitimacy().toString()); |
powerProjectionLabel .setText(userRealm.getPowerProjection().toString());
infamyLabel .setText(userRealm.getInfamy().toString());
prestigeLabel .setText(userRealm.getPrestige().toString());
//TODO: Add Gouvernment Rank
//govRankLabel.setText(userRealm.getGouvernmentRank());
//update Image views
updateImageView(realmPane, new Image("file:"+userRealm.getRealmPathToGFX()), realmImageView);
updateImageView(dynastyPane, new Image("file:"+userRealm.getRulerPathToGFX()), dynastyImageView);
//update Stability Bar
updateStabilityBar();
//update realm tags
realmTags.clear();
nonRealmTags.clear();
userRealm.getTags().forEach(e->{
if(e.isFactional())
realmTags.add(e);
else
nonRealmTags.add(e);
});
}
/**
* Updates the given ImageView to contain the given Image, if image provided is not null, forces the width of the container to conform to the ImageView's Image width
* modified so that the image keeps its aspect ratio, plus some gaps that are defined in IMAGE_PANE_GAP. If the image equals to null it forces the ImageView
* to conform to IMAGE_PANE_HEIGHT in both Width and Height.
* @param container Container Pane that contains the ImageView. It will be resized to have a height of IMAGE_PANE_HEIGHT. It's width will depend on the aspect ratio of the Image provided.
* @param image Image to be set into the ImageView. It's aspect ratio is used to define container's width.
* @param imageView Image view to be set with a given image. It's best if ImageView's parent is the container argument, but it's not required.
*/
private void updateImageView(Pane container, Image image, ImageView imageView) {
imageView.setImage(image);
if(image != null && !image.isError()) {
double ratio = imageView.getFitHeight()/image.getHeight();
forceDimensions(container, IMAGE_PANE_HEIGHT, realmImageView.getImage().getWidth() * ratio + IMAGE_PANE_GAP * 2);
} else
forceDimensions(container, IMAGE_PANE_HEIGHT, IMAGE_PANE_HEIGHT);
}
/**
* Forces the dimension of the pane to conform to the parameters specified.
* @param pane Pane whose width and height you want to fix to particular values.
* @param height Height to which you want to set the pane's height.
* @param width Width to which you want to set the pane's width.
*/
private void forceDimensions(Pane pane, Double height, Double width) {
pane.setMinWidth(width);
pane.setMaxWidth(width);
pane.setPrefWidth(width);
pane.setMinHeight(height);
pane.setPrefHeight(height);
pane.setMaxHeight(height);
}
/**
* Updates the Stability bar to display the current stability in a visual way.
*/
private void updateStabilityBar() {
//update user realm
BackgroundFill negFill = new BackgroundFill(DownfallUtil.HIGHLIGHT_COLOR, null, null);
BackgroundFill posFill = new BackgroundFill(DownfallUtil.CONFIRM_COLOR, null, null);
BackgroundFill neutralFill = new BackgroundFill(DownfallUtil.BACKGROUND_COLOR, null, null);
updateStabilityPane(negStabilityPane5, neutralFill, negFill, -5.0, true);
updateStabilityPane(negStabilityPane4, neutralFill, negFill, -4.0, true);
updateStabilityPane(negStabilityPane3, neutralFill, negFill, -3.0, true);
updateStabilityPane(negStabilityPane2, neutralFill, negFill, -2.0, true);
updateStabilityPane(negStabilityPane1, neutralFill, negFill, -1.0, true);
updateStabilityPane(posStabilityPane1, neutralFill, posFill, 1.0, false);
updateStabilityPane(posStabilityPane2, neutralFill, posFill, 2.0, false);
updateStabilityPane(posStabilityPane3, neutralFill, posFill, 3.0, false);
updateStabilityPane(posStabilityPane4, neutralFill, posFill, 4.0, false);
updateStabilityPane(posStabilityPane5, neutralFill, posFill, 5.0, false);
}
/**
* Binds the background property to a new Background that is created with one of the two fills depending on whether the Stability of the realm "exceeds" the threshold given.
* "exceeds" for the purposes of this method means less than or equal to threshold if lessThanThreshold is true and greater or equal to the threshold if it is false.
* @param stabilityPane Pane whose background needs to be updated.
* @param neutralFill BackgroundFill to be used if the userRealm's stability does not "exceed" the threshold.
* @param activeFill BackgroundFill to be used if the userRealm's stability "exceeds" the threshold.
* @param threshold Value of the threshold that needs to be "exceeded" in order for the active fill to be used instead of neutralFill.
* @param lessThanThreshold Controls if the threshold is "exceeded" when the UserRealm's stability is less than or equal to, or greater than or equal to the threshold provided.
*/
private void updateStabilityPane( Pane stabilityPane, BackgroundFill neutralFill, BackgroundFill activeFill, Double threshold,Boolean lessThanThreshold) {
//TODO:Find a more refined way of doing this.
if (lessThanThreshold) {
if (Configurator.getInstance().getUserRealm().getStability() <= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
} else {
if (Configurator.getInstance().getUserRealm().getStability() >= threshold)
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(activeFill)));
else
stabilityPane.backgroundProperty().bind(new SimpleObjectProperty<>(new Background(neutralFill)));
}
}
}
| src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " userRealm.setName(realm.getName());\n userRealm.setTreasury(realm.getTreasury());\n userRealm.setInfamy(realm.getInfamy());\n userRealm.setLegitimacy(realm.getLegitimacy());\n userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());\n userRealm.setPowerProjection(realm.getPowerProjection());\n userRealm.setPrestige(realm.getPrestige());\n userRealm.setStability(realm.getStability());\n userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());\n userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());",
"score": 66.57982845157545
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 52.86193138236235
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " *\n * @param pathToRules pathname to the rules that were used for this Save\n * @param userRealm user's realm data.\n */\n public Savegame(String pathToRules, Realm userRealm) {\n this.pathToRules = pathToRules;\n this.userRealm = userRealm;\n }\n /**\n * Lightweight accessor method.",
"score": 47.29829805481708
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " public void setLastSavegamePathname(String lastSavegamePathname) {\n configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());\n saveConfiguration();\n }\n /**\n * Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm\n * @param realm realm whose values are going to override the current values of userRealm\n */\n public void setUserRealm(Realm realm) {\n userRealm.setId(realm.getId());",
"score": 41.551324629865775
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configurator.java",
"retrieved_chunk": " userRealm.getStockpile().clear();\n userRealm.getStockpile().addAll(realm.getStockpile());\n userRealm.getOwnedBuildings().clear();\n userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());\n userRealm.getTags().clear();\n userRealm.getTags().addAll(realm.getTags());\n }\n /**\n * Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.\n * @param material material that has an id set to represent a specific template.",
"score": 40.85645091868537
}
] | java | legitimacyLabel .setText(userRealm.getLegitimacy().toString()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.realm.template;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.image.Image;
/**
* Template that is used when new materials are generated. It stores a pathname that leads to its GFX and an JavaFX Image if a reference to that is required.
* This Class if fully annotated for use with JAXB to be exported to an XML File.
*/
@XmlRootElement(name="gfx-material-template")
public final class VisualMaterialTemplate extends MaterialTemplate{
private final StringProperty pathToGFXProperty = new SimpleStringProperty();
private Image GFX;
private Boolean gfxInitialized = false;
/**
* Default Constructor. it generates an invalid VisualMaterialTemplate with an id of -1
*/
public VisualMaterialTemplate() {
this("",-1,-1,-1,false, false);
}
/**
* Initializes pathToGFX to the default MaterialGFXPathname defined in the current configuration.
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {
this(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral, Configurator.getInstance().getDefMaterialGFXPathname());
}
/**
*
* @param name Human-readable name of the materials to be generated with this template
* @param id Unique identifier used to differentiate different material templates
* @param defExportPrice Default export price
* @param defImportPrice Default import price
* @param isExportable Value that determines if the material will be exportable from the realm
* @param isEphemeral Value that determines if the material can be stockpiled or stored
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public VisualMaterialTemplate(String name, Integer id,Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral, String pathToGFX) {
super(name, id, defExportPrice, defImportPrice, isExportable, isEphemeral);
this.pathToGFXProperty.setValue(pathToGFX);
this | .pathToGFXProperty.setValue(Configurator.getInstance().getDefMaterialGFXPathname()); |
}
/**
* Lightweight accessor method.
* @return pathname to an image file that represents this material as a property.
*/
public StringProperty pathToGFXProperty() {
return pathToGFXProperty;
}
/**
* Updates the Image representation material to comply with the current value of pathToGFXProperty
* @return new Image that has been updated.
*/
public Image updateGFX() {
//TODO: contemplate removing GFX from here or doing something better with loading (?)
//TODO: I think something second loads these Graphics. MaterialEditorController (?)
GFX = DownfallUtil.getInstance().loadImage(pathToGFXProperty.get());
gfxInitialized = true;
return GFX;
}
/**
* Lightweight accessor method that initiates graphics if they haven't been initialized
* @return Image that represents this material.
*/
public Image getGFX() {
if(!gfxInitialized)
return updateGFX();
else
return GFX;
}
/**
* Lightweight accessor method.
* @return String pathname to an image file that represents this material.
*/
@XmlElement(name="path-to-gfx")
public String getPathToGFX() {
return pathToGFXProperty.get();
}
/**
* Lightweight Mutator Method
* @param pathToGFX String pathname to an image file that represents this material. That Image should be square, but isn't required to be square
*/
public void setPathToGFX(String pathToGFX) {
this.pathToGFXProperty.setValue(pathToGFX);
}
}
| src/main/java/net/dragondelve/downfall/realm/template/VisualMaterialTemplate.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param isExportable Value that determines if the material will be exportable from the realm\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public MaterialTemplate(String name, Integer id, Integer defExportPrice, Integer defImportPrice, Boolean isExportable, Boolean isEphemeral) {\n super();\n this.nameProperty.setValue(name);\n this.idProperty.setValue(id);\n this.defExportPriceProperty .setValue(defExportPrice);\n this.defImportPriceProperty.setValue(defImportPrice);\n this.isExportableProperty.setValue(isExportable);",
"score": 197.49151064405726
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " * @param exportable Value that determines if the material will be exportable from the realm\n */\n public void setExportable(Boolean exportable) {\n isExportableProperty.setValue(exportable);\n }\n /**\n * Lightweight mutator method\n * @param isEphemeral Value that determines if the material can be stockpiled or stored\n */\n public void setIsEphemeral(Boolean isEphemeral) {",
"score": 126.784801043848
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java",
"retrieved_chunk": " */\n public VisualBuildingTemplate(Integer id, String name, List<Material> inputMaterials, List<Material> outputMaterials, Integer defConstructionCost, List<Material> constructionMaterials, Integer defConstructionTime, Boolean operatesImmediately, String pathToGFX) {\n super(id, name, inputMaterials, outputMaterials, defConstructionCost, constructionMaterials, defConstructionTime, operatesImmediately);\n this.pathToGFXProperty.setValue(pathToGFX);\n this.pathToGFXProperty.setValue(Configurator.getInstance().getDefBuildingGFXPathname());\n }\n /**\n * Lightweight Accessor Method\n * @return pathname to an image file that represents this building as a property. That Image should be square, but isn't required to be square\n */",
"score": 119.88300934145727
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/MaterialTemplate.java",
"retrieved_chunk": " @XmlElement(name = \"exportable\")\n public Boolean isExportable() {\n return isExportableProperty.get();\n }\n /**\n * Lightweight accessor method\n * @return Value that determines if the material can be stockpiled or stored\n */\n @XmlElement(name = \"ephemeral\")\n public Boolean isEphemeral() { return isEphemeralProperty.get();}",
"score": 112.60901013592272
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/template/VisualBuildingTemplate.java",
"retrieved_chunk": " }\n /**\n * Lightweight Mutator Method\n * @param pathToGFX String pathname to an image file that represents this building. That Image should be square, but isn't required to be square\n */\n public void setPathToGFX(String pathToGFX) {\n this.pathToGFXProperty.set(pathToGFX);\n }\n /**\n * Updates the Image representation building to comply with the current value of pathToGFXProperty",
"score": 110.98808030338583
}
] | java | .pathToGFXProperty.setValue(Configurator.getInstance().getDefMaterialGFXPathname()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm. | setLegitimacy(realm.getLegitimacy()); |
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
| src/main/java/net/dragondelve/downfall/util/Configurator.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 91.19287992779137
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 86.43912173252338
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " *\n * @param pathToRules pathname to the rules that were used for this Save\n * @param userRealm user's realm data.\n */\n public Savegame(String pathToRules, Realm userRealm) {\n this.pathToRules = pathToRules;\n this.userRealm = userRealm;\n }\n /**\n * Lightweight accessor method.",
"score": 79.43935356886959
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 71.18446713809723
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " @XmlElement(name = \"user-realm\")\n public Realm getUserRealm() {\n return userRealm;\n }\n /**\n * Lightweight mutator method.\n * @param pathToRules pathname to the rules that were used for this Save\n */\n public void setPathToRules(String pathToRules) {\n this.pathToRules = pathToRules;",
"score": 58.06145066230002
}
] | java | setLegitimacy(realm.getLegitimacy()); |
/**
*
*/
package org.lunifera.gpt.commands.impl;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Supplier;
import org.lunifera.gpt.commands.api.ICommand;
import org.lunifera.gpt.commands.api.ICommandApi;
import org.lunifera.gpt.commands.api.IPrompter;
import com.theokanning.openai.completion.chat.ChatCompletionChoice;
import com.theokanning.openai.completion.chat.ChatCompletionRequest;
import com.theokanning.openai.completion.chat.ChatMessage;
import com.theokanning.openai.completion.chat.ChatMessageRole;
import com.theokanning.openai.service.OpenAiService;
/**
*
*/
public class CommandApi implements ICommandApi {
private static final String GPT_4 = "gpt-4";
private final String OPENAI_KEY;
private IPrompter prompter = new Prompter();
private Supplier<List<? extends ICommand>> commands;
public CommandApi(String OPENAI_KEY) {
this.OPENAI_KEY = OPENAI_KEY;
}
public void setPrompter(IPrompter prompter) {
this.prompter = prompter;
}
/**
* Returns the {@link IPrompter}.
*
* @return
*/
public IPrompter getPrompter() {
return prompter;
}
public void setCommands(Supplier<List<? extends ICommand>> commands) {
this.commands = commands;
}
/**
* Returns the supplier of commands.
*
* @return
*/
public Supplier<List<? extends ICommand>> getCommands() {
return commands;
}
@Override
public ICommand queryCommand(String userInput) {
List<ChatMessage> messages = createMessages(userInput);
ChatCompletionRequest chatCompletionRequest = ChatCompletionRequest.builder().model(GPT_4).messages(messages)
.n(1).temperature(0d).maxTokens(50).build();
OpenAiService service = new OpenAiService(OPENAI_KEY);
List<ChatCompletionChoice> choices = service.createChatCompletion(chatCompletionRequest).getChoices();
String commandText = choices.get(0).getMessage().getContent();
return | prompter.findCommand(commandText, commands); |
}
protected List<ChatMessage> createMessages(String userInput) {
List<ChatMessage> messages = new ArrayList<>();
ChatMessage systemMessage = new ChatMessage(ChatMessageRole.SYSTEM.value(), prompter.getSystemPrompt(commands));
messages.add(systemMessage);
ChatMessage userMessage = new ChatMessage(ChatMessageRole.USER.value(), userInput);
messages.add(userMessage);
return messages;
}
}
| src/main/java/org/lunifera/gpt/commands/impl/CommandApi.java | florianpirchner-java-gpt-commands-8f92fe9 | [
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandApi.java",
"retrieved_chunk": "\t * @return\n\t */\n\tICommand queryCommand(String userInput);\n}",
"score": 17.837244283719254
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t\t\tsb.append(c.toPrompt(ICommandWrapper.DEFAULT));\n\t\t\tsb.append(\"\\n\");\n\t\t});\n\t\treturn sb.toString();\n\t}\n\t@Override\n\tpublic ICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands) {\n\t\tString unwrappedCommandString = unwrapRawCommand(commandString);\n\t\tif (unwrappedCommandString.isEmpty()) {\n\t\t\treturn createErrorCommand(\"No response\");",
"score": 14.248156749310734
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandApi.java",
"retrieved_chunk": "\t * Sets the {@link IPrompter prompter} to be used to api. The {@link IPrompter\n\t * prompter} is responsible to create the required prompts.\n\t * \n\t * @param prompter\n\t */\n\tvoid setPrompter(IPrompter prompter);\n\t/**\n\t * Tries to query a command for the given userInput.\n\t * \n\t * @param userInput",
"score": 13.703160290234406
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\t\t\t\treturn wrappedCommand;\n\t\t\t}\n\t\t\tString command = wrappedCommand.trim();\n\t\t\tif (wrappedCommand.startsWith(prefix)) {\n\t\t\t\tcommand = wrappedCommand.substring(1, wrappedCommand.length());\n\t\t\t}\n\t\t\tif (command.endsWith(postfix)) {\n\t\t\t\tcommand = command.substring(0, command.length() - 1);\n\t\t\t}\n\t\t\treturn command;",
"score": 11.121427123887328
},
{
"filename": "src/test/java/org/lunifera/gpt/commands/minimalhint/CommandTest.java",
"retrieved_chunk": "\t}\n\tprivate void testCommand(CommandApi api, String query, String expectedCommandName) {\n\t\tICommand command = api.queryCommand(query);\n\t\tassertEquals(expectedCommandName, command.getName());\n\t}\n\t/**\n\t * Creates and returns a list of commands.\n\t */\n\tprivate List<ICommand> createCommands() {\n\t\tList<ICommand> commands = new ArrayList<>();",
"score": 10.773844400660947
}
] | java | prompter.findCommand(commandText, commands); |
/**
*
*/
package org.lunifera.gpt.commands.impl;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Supplier;
import org.lunifera.gpt.commands.api.ICommand;
import org.lunifera.gpt.commands.api.ICommandApi;
import org.lunifera.gpt.commands.api.IPrompter;
import com.theokanning.openai.completion.chat.ChatCompletionChoice;
import com.theokanning.openai.completion.chat.ChatCompletionRequest;
import com.theokanning.openai.completion.chat.ChatMessage;
import com.theokanning.openai.completion.chat.ChatMessageRole;
import com.theokanning.openai.service.OpenAiService;
/**
*
*/
public class CommandApi implements ICommandApi {
private static final String GPT_4 = "gpt-4";
private final String OPENAI_KEY;
private IPrompter prompter = new Prompter();
private Supplier<List<? extends ICommand>> commands;
public CommandApi(String OPENAI_KEY) {
this.OPENAI_KEY = OPENAI_KEY;
}
public void setPrompter(IPrompter prompter) {
this.prompter = prompter;
}
/**
* Returns the {@link IPrompter}.
*
* @return
*/
public IPrompter getPrompter() {
return prompter;
}
public void setCommands(Supplier<List<? extends ICommand>> commands) {
this.commands = commands;
}
/**
* Returns the supplier of commands.
*
* @return
*/
public Supplier<List<? extends ICommand>> getCommands() {
return commands;
}
@Override
public ICommand queryCommand(String userInput) {
List<ChatMessage> messages = createMessages(userInput);
ChatCompletionRequest chatCompletionRequest = ChatCompletionRequest.builder().model(GPT_4).messages(messages)
.n(1).temperature(0d).maxTokens(50).build();
OpenAiService service = new OpenAiService(OPENAI_KEY);
List<ChatCompletionChoice> choices = service.createChatCompletion(chatCompletionRequest).getChoices();
String commandText = choices.get(0).getMessage().getContent();
return prompter.findCommand(commandText, commands);
}
protected List<ChatMessage> createMessages(String userInput) {
List<ChatMessage> messages = new ArrayList<>();
ChatMessage systemMessage = new ChatMessage(ChatMessageRole.SYSTEM.value() | , prompter.getSystemPrompt(commands)); |
messages.add(systemMessage);
ChatMessage userMessage = new ChatMessage(ChatMessageRole.USER.value(), userInput);
messages.add(userMessage);
return messages;
}
}
| src/main/java/org/lunifera/gpt/commands/impl/CommandApi.java | florianpirchner-java-gpt-commands-8f92fe9 | [
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandApi.java",
"retrieved_chunk": "\t * Sets the {@link IPrompter prompter} to be used to api. The {@link IPrompter\n\t * prompter} is responsible to create the required prompts.\n\t * \n\t * @param prompter\n\t */\n\tvoid setPrompter(IPrompter prompter);\n\t/**\n\t * Tries to query a command for the given userInput.\n\t * \n\t * @param userInput",
"score": 15.763867030390458
},
{
"filename": "src/test/java/org/lunifera/gpt/commands/minimalhint/CommandTest.java",
"retrieved_chunk": "\t}\n\tprivate void testCommand(CommandApi api, String query, String expectedCommandName) {\n\t\tICommand command = api.queryCommand(query);\n\t\tassertEquals(expectedCommandName, command.getName());\n\t}\n\t/**\n\t * Creates and returns a list of commands.\n\t */\n\tprivate List<ICommand> createCommands() {\n\t\tList<ICommand> commands = new ArrayList<>();",
"score": 14.535151889294658
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t/**\n\t * Returns the commands text to be included in the prompt.\n\t * \n\t * @param commands\n\t * @return\n\t */\n\tprivate String createCommdansPromptSection(Supplier<List<? extends ICommand>> commands) {\n\t\tStringBuilder sb = new StringBuilder();\n\t\tcommands.get().forEach(c -> {\n\t\t\tsb.append(\"- \");",
"score": 13.6970386966333
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t\t\tsb.append(c.toPrompt(ICommandWrapper.DEFAULT));\n\t\t\tsb.append(\"\\n\");\n\t\t});\n\t\treturn sb.toString();\n\t}\n\t@Override\n\tpublic ICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands) {\n\t\tString unwrappedCommandString = unwrapRawCommand(commandString);\n\t\tif (unwrappedCommandString.isEmpty()) {\n\t\t\treturn createErrorCommand(\"No response\");",
"score": 13.020165159519385
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t\t}\n\t\tICommand command = commands.get().stream().filter(c -> c.getName().equals(unwrappedCommandString)).findFirst()\n\t\t\t\t.orElse(null);\n\t\tif (command == null) {\n\t\t\tcommand = createInvalidCommand();\n\t\t}\n\t\treturn command;\n\t}\n\tprotected ICommand createErrorCommand(String text) {\n\t\treturn new ErrorCommand();",
"score": 12.296184649471371
}
] | java | , prompter.getSystemPrompt(commands)); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
| userRealm.setPowerProjection(realm.getPowerProjection()); |
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
| src/main/java/net/dragondelve/downfall/util/Configurator.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 109.20883216592456
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 102.59655717587708
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " *\n * @param pathToRules pathname to the rules that were used for this Save\n * @param userRealm user's realm data.\n */\n public Savegame(String pathToRules, Realm userRealm) {\n this.pathToRules = pathToRules;\n this.userRealm = userRealm;\n }\n /**\n * Lightweight accessor method.",
"score": 86.07573282917922
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 82.05249635536543
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " @XmlElement(name = \"user-realm\")\n public Realm getUserRealm() {\n return userRealm;\n }\n /**\n * Lightweight mutator method.\n * @param pathToRules pathname to the rules that were used for this Save\n */\n public void setPathToRules(String pathToRules) {\n this.pathToRules = pathToRules;",
"score": 63.83708133595276
}
] | java | userRealm.setPowerProjection(realm.getPowerProjection()); |
package org.lunifera.gpt.commands.api;
import java.util.List;
import java.util.function.Supplier;
/**
* An interface with the responsibility to create prompts. And to convert the
* received command string to a proper command.
*
* @author Florian
*/
public interface IPrompter {
public static final String PREFIX_TEMPLATE = "\\{___PREFIX___}";
public static final String POSTFIX_TEMPLATE = "\\{___POSTFIX___}";
public static final String COMMAND_LIST_TEMPLATE = "\\{___COMMAND_LIST___}";
/**
* Parts of this prompt are copied and/or modified from "[Auto-GPT"](https://github.com/Torantulino/Auto-GPT).
*
* {___PREFIX___}, {___POSTFIX___} and {___COMMAND_LIST___} need to be replaced
* later.
*/
public static final String DEFAULT_SYSTEM_PROMPT = //
"You are a CommandEngine. Your only task is to deliver the best matching {___PREFIX___}COMMAND{___POSTFIX___} from a list of COMMANDS as a response.\n" //
+ "\n" //
+ "To make your decision, you receive a text. Based on this text, you choose the best matching {___PREFIX___}COMMAND{___POSTFIX___} and respond with it.\n" //
+ "\n" //
+ "\n" //
+ "COMMANDS:\n" //
+ "{___COMMAND_LIST___}" //
+ "\n" //
+ "You will never ask a follow-up question!\n" + "\n" //
+ "And you MUST only answer the {COMMAND}!"; //
/**
* Returns the DEFAULT_SYSTEM_PROMPT but replaces the pre- and postfix.
*
* @return
*/
default String getDefaultSystemPromptTemplate(ICommandWrapper delimiter) {
| return DEFAULT_SYSTEM_PROMPT.replaceAll(PREFIX_TEMPLATE, delimiter.getPrefix())//
.replaceAll(POSTFIX_TEMPLATE, delimiter.getPostfix()); |
}
/**
* Returns the "system" prompt to be used in the OpenAI Chat API.
*
* @param see {@link ICommandApi#setCommands(Supplier)}
*
* @return
*/
String getSystemPrompt(Supplier<List<? extends ICommand>> commands);
/**
* Returns a proper command for the given commandString in respect to the system
* prompt.
*
* @param commandString
* @param commands
* @return
*/
ICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands);
/**
* Sets the command delimiter. See {@link ICommandWrapper}.
*
* @param wrapper
*/
void setCommandWrapper(ICommandWrapper wrapper);
/**
* Returns the command delimiter. See {@link ICommandWrapper}.
*
* @return
*/
default ICommandWrapper getCommandWrapper() {
return ICommandWrapper.DEFAULT;
}
}
| src/main/java/org/lunifera/gpt/commands/api/IPrompter.java | florianpirchner-java-gpt-commands-8f92fe9 | [
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommand.java",
"retrieved_chunk": "\t * @return\n\t */\n\tString getName();\n\t/**\n\t * Returns a String representation of this command to be used by the\n\t * {@link IPrompter}. It is important, to wrap the command inside the delimiter\n\t * pre- and postfix, if they are not blank.\n\t * <p>\n\t * Eg command WEB_SEARCH. Prefix = { and postfix = }. So the command needs to be\n\t * wrapped inside {WEB_SEARCH}. Pre- and postfix allow gpt to recognize the",
"score": 18.034377859483545
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/impl/Prompter.java",
"retrieved_chunk": "\t}\n\tprotected InvalidCommand createInvalidCommand() {\n\t\treturn new InvalidCommand();\n\t}\n\t/**\n\t * GPT will return the command in the form {Prefix}COMMAND{POSTFIX}.\n\t * <p>\n\t * Eg. {WEB_SEARCH}. So we will remove the pre- and postfix here to get the raw\n\t * command WEB_SEARCH.\n\t * ",
"score": 15.37658094483427
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\tDefaultCommandWrapper DEFAULT = new DefaultCommandWrapper(\"{\", \"}\");\n\tString getPrefix();\n\tString getPostfix();\n\t/**\n\t * WEB_SEARCH to {WEB_SEARCH}, if pre- and postfix is { and }.\n\t * \n\t * @param command\n\t * @return\n\t */\n\tString wrapCommand(String command);",
"score": 15.197039538810419
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\t/**\n\t * {WEB_SEARCH} to WEB_SEARCH, if pre- and postfix is { and }.\n\t * \n\t * @param wrappedCommand\n\t * @return\n\t */\n\tString unwrapCommand(String wrappedCommand);\n\t/**\n\t * Describes how to wrap the command. By default, the command will be wrapped\n\t * following the format \"{%s}\". This is required, to ensure that gpt-4 can",
"score": 13.612841066873528
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\t\t\tthis.postfix = postFix;\n\t\t}\n\t\t@Override\n\t\tpublic String getPrefix() {\n\t\t\treturn prefix;\n\t\t}\n\t\t@Override\n\t\tpublic String getPostfix() {\n\t\t\treturn postfix;\n\t\t}",
"score": 13.165046523104948
}
] | java | return DEFAULT_SYSTEM_PROMPT.replaceAll(PREFIX_TEMPLATE, delimiter.getPrefix())//
.replaceAll(POSTFIX_TEMPLATE, delimiter.getPostfix()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
| loadAndApplyRules(configuration.getLastRulesPathname()); |
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm.setRulerPathToGFX(realm.getRulerPathToGFX());
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
| src/main/java/net/dragondelve/downfall/util/Configurator.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/util/Configuration.java",
"retrieved_chunk": "/**\n * Determines the configuration of the program, currently chosen Ruleset and default values for gfx files.\n */\n@XmlRootElement(name = \"configuration\")\npublic final class Configuration {\n private final StringProperty lastRulesPathname = new SimpleStringProperty(DownfallUtil.DEFAULT_RULES_PATHNAME);\n private final StringProperty defMaterialGFXPathname = new SimpleStringProperty(DownfallUtil.DEFAULT_MATERIAL_GFX_PATHNAME);\n private final StringProperty defBuildingGFXPathname = new SimpleStringProperty(DownfallUtil.DEFAULT_BUILDING_GFX_PATHNAME);\n private final BooleanProperty autoloadLastSave = new SimpleBooleanProperty(false);\n private final StringProperty lastSavegamePathname = new SimpleStringProperty(DownfallUtil.DEFAULT_SAVEGAME_PATHNAME);",
"score": 30.408569088048765
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " Configurator.getInstance().loadAndApplyRules(selectedFile.getPath());\n }\n /**\n * loads the content of RealmScreen.fxml and puts its root node into the \"Realm\" tab.\n */\n private void initializeRealmTab() {\n try {\n FXMLLoader loader = new FXMLLoader(DownfallUtil.getInstance().getURLRealmScreenFXML());\n loader.setController(realmScreenController);\n Node screen = loader.load();",
"score": 27.17257647824742
},
{
"filename": "src/main/java/net/dragondelve/downfall/util/SimpleSaveManager.java",
"retrieved_chunk": "import java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n/**\n * Simple implementation of save manager that uses the Configurator class to store the LastSavegamePathname.\n * If a savegame is loaded it also tries to find, load and apply the rules that were used when last saving this savegame.\n */\nfinal class SimpleSaveManager implements SaveManager{\n /**\n * Loads and applies the savegame from last pathname used and attempts to find,",
"score": 25.061041245022423
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": "public final class Savegame {\n private String pathToRules = \"\";\n private Realm userRealm = new Realm();\n /**\n * Default constructor. Default values are \"\" pathToRules, and an empty Realm\n */\n public Savegame() {\n super();\n }\n /**",
"score": 24.32374318509751
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " alert.showAndWait();\n return false;\n }\n }\n /**\n * Removes the old Material Templates from the current Ruleset, adds all materialTemplates in materials field, and then force saves the rules at a lastLoadedRules location.\n */\n @Deprecated\n private void saveChanges() {\n Configurator.getInstance().getRules().getMaterialTemplates().clear();",
"score": 23.48473617094687
}
] | java | loadAndApplyRules(configuration.getLastRulesPathname()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.util;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.template.VisualBuildingTemplate;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
/**
* Non Instantiable configurator class that is responsible for loading, and storing the Configuration of the program.
*/
public final class Configurator {
private static final String CONFIG_PATH = DownfallUtil.DEFAULT_CONFIG_PATHNAME;
private static final String DEFAULT_RULES_PATH = "rules/default.xml";
private static final Configurator instance = new Configurator();
private Configuration configuration = new Configuration();
private Rules rules = new Rules();
private final Realm userRealm = new Realm();
private final SaveManager saveManager = new SimpleSaveManager();
/**
* Private constructor to make this class non instantiable.
*/
private Configurator() {super();}
/**
* loads and applies rules stored as lastLoadedRules in the current configuration
*/
public void loadAndApplyRules() {
loadAndApplyRules(configuration.getLastRulesPathname());
}
/**
* loads and applies rules stored at pathname and changes the configuration to remember the new pathname as lastLoaderRules
* @param pathname pathname to rules to be loaded and applied
*/
public void loadAndApplyRules(String pathname) {
rules = loadRules(pathname);
}
/**
* Lightweight accessor method.
* @return Currently applied rules.
*/
public Rules getRules() {
return rules;
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded savegame.
*/
public String getLastSavegamePathname() {
return configuration.getLastSavegamePathname();
}
/**
* Lightweight accessor method.
* @return Pathname to the last loaded rules
*/
public String getLastRulesPathname() {
return configuration.getLastRulesPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualMaterialTemplate in the current configuration.
*/
public String getDefMaterialGFXPathname() {
return configuration.getDefMaterialGFXPathname();
}
/**
* Lightweight Accessor Method
* @return pathname to the default GFX of VisualBuildingTemplate in the current configuration.
*/
public String getDefBuildingGFXPathname() {
return configuration.getDefBuildingGFXPathname();
}
/**
* Lightweight Accessor Method
* @return User Realm. This realm gets saved and loaded by the save manager and should be treated as the one and only realm that represents the user/
*/
public Realm getUserRealm() {
return userRealm;
}
/**
* Lightweight accessor method
* @return Save Manager instance that is used to manage savegames.
*/
public SaveManager getSaveManager() {
return saveManager;
}
/**
* NOT a lightweight mutator method, executes save configuration when called.
* @param lastSavegamePathname Pathname to the last loaded rules.
*/
public void setLastSavegamePathname(String lastSavegamePathname) {
configuration.setLastSavegamePathname(new PathRelativisor(lastSavegamePathname).relativize());
saveConfiguration();
}
/**
* Relatively lightweight accessor method, overrides all fields of the original final reference to userRealm
* @param realm realm whose values are going to override the current values of userRealm
*/
public void setUserRealm(Realm realm) {
userRealm.setId(realm.getId());
userRealm.setName(realm.getName());
userRealm.setTreasury(realm.getTreasury());
userRealm.setInfamy(realm.getInfamy());
userRealm.setLegitimacy(realm.getLegitimacy());
userRealm.setDiplomaticReputation(realm.getDiplomaticReputation());
userRealm.setPowerProjection(realm.getPowerProjection());
userRealm.setPrestige(realm.getPrestige());
userRealm.setStability(realm.getStability());
userRealm.setRealmPathToGFX(realm.getRealmPathToGFX());
userRealm | .setRulerPathToGFX(realm.getRulerPathToGFX()); |
userRealm.getStockpile().clear();
userRealm.getStockpile().addAll(realm.getStockpile());
userRealm.getOwnedBuildings().clear();
userRealm.getOwnedBuildings().addAll(realm.getOwnedBuildings());
userRealm.getTags().clear();
userRealm.getTags().addAll(realm.getTags());
}
/**
* Searches the list of all VisualMaterialTemplates in the currently loaded ruleset for a matching id of a given material.
* @param material material that has an id set to represent a specific template.
* @return VisualMaterialTemplate that is associated with that material. If none found returns null.
*/
public VisualMaterialTemplate findMaterialTemplate(Material material) {
if(material == null)
return null;
List<VisualMaterialTemplate> list = rules.getMaterialTemplates().stream().filter(visualMaterialTemplate -> visualMaterialTemplate.getId().equals(material.getTemplateId())).collect(Collectors.toList());
if(list.size() > 1) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Multiple("+list.size()+") IDs found for template with id = "+material.getTemplateId());
} else if(list.size() <= 0) {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.SEVERE, "No Template found for id = "+material.getTemplateId());
return null;
}
return list.get(0);
}
/**
* Loads configuration from CONFIG_PATH defined in this class.
*/
public void loadConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration loading initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
configuration = (Configuration) unmarshaller.unmarshal(config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration loading failed, attempting to save a default configuration");
saveConfiguration();
}
}
/**
* Saves configuration to an XML file at CONFIG_PATH defined in this class
*/
public void saveConfiguration() {
File config = new File(CONFIG_PATH);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Configuration saving initiated with path: " + CONFIG_PATH);
try {
JAXBContext context = JAXBContext.newInstance(Configuration.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(configuration, config);
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Configuration saving failed =C");
}
}
/**
* Loads rules from a specific provided pathname.
* @param pathname pathname to an xml file where rules to be downloaded are located.
* @return rules that have been loaded. If loading from pathname fails, returns defaultRules isnted.
*/
private Rules loadRules(String pathname) {
File rulesFile = new File(pathname);
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules loading initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE,"Rules config loading successfully completed.");
Rules rules = (Rules) unmarshaller.unmarshal(rulesFile);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
return rules;
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING,"Rules config loading failed, loading default ");
Rules rules = loadDefaultRules();
saveRules(rules, pathname);
return rules;
}
}
/**
* Saves currently applied rules to an XML file at DEFAULT_RULES_PATH defined in this class
*/
public void saveRules() {
saveRules(DEFAULT_RULES_PATH);
}
/**
* Saves currently applied rules to an XML file at a given pathname
* @param pathname pathname to a file that can be written.
*/
public void saveRules(String pathname){
saveRules(rules, pathname);
}
/**
* Saves given rules to an XML files at a given pathname
* @param rules rules to be saved.
* @param pathname pathname to a file that can be written.
*/
private void saveRules(Rules rules, String pathname) {
File file = new File(pathname);
try {
file.createNewFile();
} catch (IOException ioException) {
ioException.printStackTrace();
}
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving initiated with path: "+pathname);
try {
JAXBContext context = JAXBContext.newInstance(Rules.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(rules, file);
configuration.setLastRulesPathname(new PathRelativisor(pathname).relativize());
saveConfiguration();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.FINE, "Rules saving successfully completed");
} catch (JAXBException | IllegalArgumentException e) {
e.printStackTrace();
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Couldn't save Rules to path: "+pathname);
}
}
/**
* Loads predefined default rules that are hard coded.
* @return default rules that .
*/
private Rules loadDefaultRules() {
Rules rules = new Rules();
List<VisualMaterialTemplate> materialTemplates = new ArrayList<>();
materialTemplates.add(new VisualMaterialTemplate("Grain",1,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Meat",2,8,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Cloth",3,12,16,true, false));
materialTemplates.add(new VisualMaterialTemplate("Clay",4,4,7,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bricks",5,9,14,true, false));
materialTemplates.add(new VisualMaterialTemplate("Wood",6,5,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Hardwood",7,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Furniture",8,16,22,true, false));
materialTemplates.add(new VisualMaterialTemplate("Copper",9,3,6,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze",10,4,8,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron",11,6,12,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel",12,9,18,true, false));
materialTemplates.add(new VisualMaterialTemplate("Thaumium",13,20,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Gold",14,50,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Tools",15,20,24,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Tools",16,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Tools",17,32,44,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Tools",18,44,72,true, false));
materialTemplates.add(new VisualMaterialTemplate("Bronze Weapons",19,24,30,true, false));
materialTemplates.add(new VisualMaterialTemplate("Iron Weapons",20,28,36,true, false));
materialTemplates.add(new VisualMaterialTemplate("Steel Weapons",21,36,50,true, false));
materialTemplates.add(new VisualMaterialTemplate("Magic Weapons",22,48,78,true, false));
materialTemplates.add(new VisualMaterialTemplate("Siege Equipment",23,50,75,true, false));
materialTemplates.add(new VisualMaterialTemplate("Services",24,-1,10,false, false));
List<VisualBuildingTemplate> buildingTemplates = new ArrayList<>();
VisualBuildingTemplate farmTemplate = new VisualBuildingTemplate();
farmTemplate.setId(1);
farmTemplate.setName("Farm (Iron Tools)");
farmTemplate.setDefConstructionTime(30);
farmTemplate.setDefConstructionCost(30);
farmTemplate.getInputMaterials().add(new Material(17, 1));
farmTemplate.getOutputMaterials().add(new Material(1, 10));
farmTemplate.getConstructionMaterials().add(new Material(7, 10));
farmTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(farmTemplate);
VisualBuildingTemplate barnTemplate = new VisualBuildingTemplate();
barnTemplate.setId(2);
barnTemplate.setName("Barn (Iron Tools)");
barnTemplate.setDefConstructionTime(30);
barnTemplate.setDefConstructionCost(30);
barnTemplate.getInputMaterials().add(new Material(17, 1));
barnTemplate.getInputMaterials().add(new Material(1,10));
barnTemplate.getOutputMaterials().add(new Material(2, 10));
barnTemplate.getConstructionMaterials().add(new Material(7, 10));
barnTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(barnTemplate);
VisualBuildingTemplate mineTemplate = new VisualBuildingTemplate();
mineTemplate.setId(3);
mineTemplate.setName("Iron Mine (Iron Tools)");
mineTemplate.setDefConstructionTime(30);
mineTemplate.setDefConstructionCost(30);
mineTemplate.getInputMaterials().add(new Material(17, 1));
mineTemplate.getOutputMaterials().add(new Material(12, 10));
mineTemplate.getConstructionMaterials().add(new Material(6, 5));
mineTemplate.getConstructionMaterials().add(new Material(7, 5));
mineTemplate.getConstructionMaterials().add(new Material(17, 1));
buildingTemplates.add(mineTemplate);
rules.setMaterialTemplates(materialTemplates);
rules.setBuildingTemplates(buildingTemplates);
return rules;
}
/**
* Lightweight Accessor Method
* @return The only instance of this class.
*/
public static Configurator getInstance() {
return instance;
}
}
| src/main/java/net/dragondelve/downfall/util/Configurator.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " */\n public void update() {\n //update user realm\n Realm userRealm = Configurator.getInstance().getUserRealm();\n //update Labels\n realmNameLabel .setText(userRealm.getName());\n diploRepLabel .setText(userRealm.getDiplomaticReputation().toString());\n stabilityLabel .setText(userRealm.getStability().toString());\n legitimacyLabel .setText(userRealm.getLegitimacy().toString());\n powerProjectionLabel .setText(userRealm.getPowerProjection().toString());",
"score": 110.12867900522224
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/tabs/RealmScreenController.java",
"retrieved_chunk": " infamyLabel .setText(userRealm.getInfamy().toString());\n prestigeLabel .setText(userRealm.getPrestige().toString());\n //TODO: Add Gouvernment Rank\n //govRankLabel.setText(userRealm.getGouvernmentRank());\n //update Image views\n updateImageView(realmPane, new Image(\"file:\"+userRealm.getRealmPathToGFX()), realmImageView);\n updateImageView(dynastyPane, new Image(\"file:\"+userRealm.getRulerPathToGFX()), dynastyImageView);\n //update Stability Bar\n updateStabilityBar();\n //update realm tags",
"score": 103.44874850513011
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " }\n /**\n * Lightweight mutator method.\n * @param userRealm user's realm data.\n */\n public void setUserRealm(Realm userRealm) {\n this.userRealm = userRealm;\n }\n}",
"score": 93.6427800484747
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " *\n * @param pathToRules pathname to the rules that were used for this Save\n * @param userRealm user's realm data.\n */\n public Savegame(String pathToRules, Realm userRealm) {\n this.pathToRules = pathToRules;\n this.userRealm = userRealm;\n }\n /**\n * Lightweight accessor method.",
"score": 84.30785919272964
},
{
"filename": "src/main/java/net/dragondelve/downfall/realm/Savegame.java",
"retrieved_chunk": " @XmlElement(name = \"user-realm\")\n public Realm getUserRealm() {\n return userRealm;\n }\n /**\n * Lightweight mutator method.\n * @param pathToRules pathname to the rules that were used for this Save\n */\n public void setPathToRules(String pathToRules) {\n this.pathToRules = pathToRules;",
"score": 57.48174584837497
}
] | java | .setRulerPathToGFX(realm.getRulerPathToGFX()); |
package org.lunifera.gpt.commands.impl;
import java.util.List;
import java.util.function.Supplier;
import org.lunifera.gpt.commands.api.ErrorCommand;
import org.lunifera.gpt.commands.api.ICommand;
import org.lunifera.gpt.commands.api.ICommandWrapper;
import org.lunifera.gpt.commands.api.IPrompter;
import org.lunifera.gpt.commands.api.InvalidCommand;
public class Prompter implements IPrompter {
private ICommandWrapper commandWrapper = ICommandWrapper.DEFAULT;
@Override
public String getSystemPrompt(Supplier<List<? extends ICommand>> commands) {
String template = getDefaultSystemPromptTemplate(commandWrapper);
String prompt = template.replaceFirst(COMMAND_LIST_TEMPLATE, createCommdansPromptSection(commands));
return prompt;
}
@Override
public void setCommandWrapper(ICommandWrapper commandWrapper) {
this.commandWrapper = commandWrapper;
}
/**
* Returns the commands text to be included in the prompt.
*
* @param commands
* @return
*/
private String createCommdansPromptSection(Supplier<List<? extends ICommand>> commands) {
StringBuilder sb = new StringBuilder();
commands.get().forEach(c -> {
sb.append("- ");
sb.append(c.toPrompt(ICommandWrapper.DEFAULT));
sb.append("\n");
});
return sb.toString();
}
@Override
public ICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands) {
String unwrappedCommandString = unwrapRawCommand(commandString);
if (unwrappedCommandString.isEmpty()) {
return createErrorCommand("No response");
}
ICommand command = commands.get().stream().filter(c -> c.getName().equals(unwrappedCommandString)).findFirst()
.orElse(null);
if (command == null) {
command = createInvalidCommand();
}
return command;
}
protected ICommand createErrorCommand(String text) {
return new ErrorCommand();
}
protected InvalidCommand createInvalidCommand() {
return new InvalidCommand();
}
/**
* GPT will return the command in the form {Prefix}COMMAND{POSTFIX}.
* <p>
* Eg. {WEB_SEARCH}. So we will remove the pre- and postfix here to get the raw
* command WEB_SEARCH.
*
* @param commandString
* @return
*/
protected String unwrapRawCommand(String commandString) {
| return commandWrapper.unwrapCommand(commandString); |
}
}
| src/main/java/org/lunifera/gpt/commands/impl/Prompter.java | florianpirchner-java-gpt-commands-8f92fe9 | [
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommand.java",
"retrieved_chunk": "\t * @return\n\t */\n\tString getName();\n\t/**\n\t * Returns a String representation of this command to be used by the\n\t * {@link IPrompter}. It is important, to wrap the command inside the delimiter\n\t * pre- and postfix, if they are not blank.\n\t * <p>\n\t * Eg command WEB_SEARCH. Prefix = { and postfix = }. So the command needs to be\n\t * wrapped inside {WEB_SEARCH}. Pre- and postfix allow gpt to recognize the",
"score": 22.584766642697844
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\t/**\n\t * {WEB_SEARCH} to WEB_SEARCH, if pre- and postfix is { and }.\n\t * \n\t * @param wrappedCommand\n\t * @return\n\t */\n\tString unwrapCommand(String wrappedCommand);\n\t/**\n\t * Describes how to wrap the command. By default, the command will be wrapped\n\t * following the format \"{%s}\". This is required, to ensure that gpt-4 can",
"score": 22.18100577387159
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "package org.lunifera.gpt.commands.api;\n/**\n * Describes how to wrap the command. By default, the command will be wrapped\n * following the format \"PREFIX%sPOSTFIX\". This is required, to ensure that\n * gpt-4 can recognize the raw command part properly.\n * <p>\n * Eg: WEB_SEARCH to {WEB_SEARCH}, if pre- and postfix is { and } and vies\n * versa.\n */\npublic interface ICommandWrapper {",
"score": 20.663804295168767
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/IPrompter.java",
"retrieved_chunk": "\t * \n\t * @param commandString\n\t * @param commands\n\t * @return\n\t */\n\tICommand findCommand(String commandString, Supplier<List<? extends ICommand>> commands);\n\t/**\n\t * Sets the command delimiter. See {@link ICommandWrapper}.\n\t * \n\t * @param wrapper",
"score": 19.78785033870861
},
{
"filename": "src/main/java/org/lunifera/gpt/commands/api/ICommandWrapper.java",
"retrieved_chunk": "\tDefaultCommandWrapper DEFAULT = new DefaultCommandWrapper(\"{\", \"}\");\n\tString getPrefix();\n\tString getPostfix();\n\t/**\n\t * WEB_SEARCH to {WEB_SEARCH}, if pre- and postfix is { and }.\n\t * \n\t * @param command\n\t * @return\n\t */\n\tString wrapCommand(String command);",
"score": 18.11658950584283
}
] | java | return commandWrapper.unwrapCommand(commandString); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField | .textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter()); |
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " * @param template template that was selected by the user to be displayed and edited.\n */\n private void displayBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().bindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().bindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().bindBidirectional(template.defConstructionCostProperty(), new NumberStringConverter());\n constructionTimeField.textProperty().bindBidirectional(template.defConstructionTimeProperty(), new NumberStringConverter());\n operatesImmediatelyCheckBox.selectedProperty().bindBidirectional(template.operatesImmediatelyProperty());\n inputMaterialEditor.setItems(template.getInputMaterials());\n outputMaterialEditor.setItems(template.getOutputMaterials());",
"score": 64.93031804990451
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " nameTextField.textProperty() .bindBidirectional(materialTemplate.nameProperty());\n isExportableCheckBox.selectedProperty() .bindBidirectional(materialTemplate.isExportableProperty());\n pathToGFXTextField.textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty());\n exportPriceTextField.textProperty() .bindBidirectional(materialTemplate.defExportPriceProperty(), new NumberStringConverter());\n importPriceTextField.textProperty() .bindBidirectional(materialTemplate.defImportPriceProperty(), new NumberStringConverter());\n }\n /**\n * Checks that it can read a file that is set as a pathToGFX.\n * @param materialTemplate VisualMaterialTemplate to be validated.\n * @return true if file can be read. False if it cannot be read.",
"score": 62.046143457317086
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " ObservableList<Tag> tags = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed.\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 52.470596392643806
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " ObservableList<Material> constructionMaterials = FXCollections.emptyObservableList();\n Stage stage;\n /**\n * Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed\n */\n @FXML\n public void initialize() {\n //init css\n rootPane.getStylesheets().clear();\n rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);",
"score": 52.470596392643806
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 51.268784320846336
}
] | java | .textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField. | textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter()); |
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " * @param template template that was selected by the user to be displayed and edited.\n */\n private void displayBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().bindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().bindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().bindBidirectional(template.defConstructionCostProperty(), new NumberStringConverter());\n constructionTimeField.textProperty().bindBidirectional(template.defConstructionTimeProperty(), new NumberStringConverter());\n operatesImmediatelyCheckBox.selectedProperty().bindBidirectional(template.operatesImmediatelyProperty());\n inputMaterialEditor.setItems(template.getInputMaterials());\n outputMaterialEditor.setItems(template.getOutputMaterials());",
"score": 130.50980277939496
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " nameTextField.textProperty() .bindBidirectional(materialTemplate.nameProperty());\n isExportableCheckBox.selectedProperty() .bindBidirectional(materialTemplate.isExportableProperty());\n pathToGFXTextField.textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty());\n exportPriceTextField.textProperty() .bindBidirectional(materialTemplate.defExportPriceProperty(), new NumberStringConverter());\n importPriceTextField.textProperty() .bindBidirectional(materialTemplate.defImportPriceProperty(), new NumberStringConverter());\n }\n /**\n * Checks that it can read a file that is set as a pathToGFX.\n * @param materialTemplate VisualMaterialTemplate to be validated.\n * @return true if file can be read. False if it cannot be read.",
"score": 126.87143669771825
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 97.54312964310789
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " */\n private void displayTag(Tag tag) {\n tagTextField.textProperty() .bindBidirectional(tag.tagProperty());\n isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());\n }\n}",
"score": 82.70307864288512
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 43.252361200931574
}
] | java | textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter()); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j;
import de.florianmichael.classic4j.request.betacraft.BCServerListRequest;
import de.florianmichael.classic4j.model.betacraft.BCServerList;
import java.net.URI;
import java.util.function.Consumer;
public class BetaCraftHandler {
public final static URI SERVER_LIST = URI.create("https://betacraft.uk/serverlist");
public static void requestServerList(final Consumer<BCServerList> complete) {
requestServerList(complete, Throwable::printStackTrace);
}
public static void requestServerList(final Consumer<BCServerList> complete, final Consumer<Throwable> throwableConsumer) {
| BCServerListRequest.send().whenComplete((bcServerList, throwable) -> { |
if (throwable != null) {
throwableConsumer.accept(throwable);
return;
}
complete.accept(bcServerList);
});
}
}
| src/main/java/de/florianmichael/classic4j/BetaCraftHandler.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": "public class ClassiCubeHandler {\n public final static Gson GSON = new GsonBuilder().serializeNulls().create();\n public final static URI CLASSICUBE_ROOT_URI = URI.create(\"https://www.classicube.net\");\n public final static URI AUTHENTICATION_URI = CLASSICUBE_ROOT_URI.resolve(\"/api/login/\");\n public final static URI SERVER_INFO_URI = CLASSICUBE_ROOT_URI.resolve(\"/api/server/\");\n public final static URI SERVER_LIST_INFO_URI = CLASSICUBE_ROOT_URI.resolve(\"/api/servers/\");\n public static void requestServerList(final CCAccount account, final Consumer<CCServerList> complete) {\n requestServerList(account, complete, Throwable::printStackTrace);\n }\n public static void requestServerList(final CCAccount account, final Consumer<CCServerList> complete, final Consumer<Throwable> throwableConsumer) {",
"score": 98.89419469326218
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " }\n public static void requestServerInfo(final CCAccount account, final String serverHash, final Consumer<CCServerList> complete, final Consumer<Throwable> throwableConsumer) {\n requestServerInfo(account, List.of(serverHash), complete, throwableConsumer);\n }\n public static void requestServerInfo(final CCAccount account, final List<String> serverHashes, final Consumer<CCServerList> complete) {\n requestServerInfo(account, serverHashes, complete, Throwable::printStackTrace);\n }\n public static void requestServerInfo(final CCAccount account, final List<String> serverHashes, final Consumer<CCServerList> complete, final Consumer<Throwable> throwableConsumer) {\n CCServerInfoRequest.send(account, serverHashes).whenComplete((ccServerList, throwable) -> {\n if (throwable != null) {",
"score": 76.47386405274383
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": " CCServerListRequest.send(account).whenComplete((ccServerList, throwable) -> {\n if (throwable != null) {\n throwableConsumer.accept(throwable);\n return;\n }\n complete.accept(ccServerList);\n });\n }\n public static void requestServerInfo(final CCAccount account, final String serverHash, final Consumer<CCServerList> complete) {\n requestServerInfo(account, serverHash, complete, Throwable::printStackTrace);",
"score": 67.2160852594458
},
{
"filename": "src/main/java/de/florianmichael/classic4j/JSPBetaCraftHandler.java",
"retrieved_chunk": "import java.net.URI;\nimport java.net.URL;\nimport java.security.MessageDigest;\nimport java.util.Formatter;\nimport java.util.Scanner;\npublic class JSPBetaCraftHandler {\n public final static URI GET_MP_PASS = URI.create(\"http://api.betacraft.uk/getmppass.jsp\");\n public static String requestMPPass(final String username, final String ip, final int port, final JoinServerInterface joinServerInterface) {\n try {\n final String server = InetAddress.getByName(ip).getHostAddress() + \":\" + port;",
"score": 52.03578480075261
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": "import de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationLoginRequest;\nimport de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationTokenRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerInfoRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerListRequest;\nimport de.florianmichael.classic4j.model.classicube.CCServerList;\nimport de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;\nimport javax.security.auth.login.LoginException;\nimport java.net.URI;\nimport java.util.List;\nimport java.util.function.Consumer;",
"score": 47.50395625817285
}
] | java | BCServerListRequest.send().whenComplete((bcServerList, throwable) -> { |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.request.classicube.auth;
import de.florianmichael.classic4j.ClassiCubeHandler;
import de.florianmichael.classic4j.request.classicube.auth.base.CCAuthenticationResponse;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAuthenticationData;
import de.florianmichael.classic4j.util.Pair;
import de.florianmichael.classic4j.util.WebRequests;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.concurrent.CompletableFuture;
public class CCAuthenticationLoginRequest {
public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account, final CCAuthenticationResponse previousResponse, final String loginCode) {
return CompletableFuture.supplyAsync(() -> {
final CCAuthenticationData | authenticationData = new CCAuthenticationData(account.username(), account.password(), previousResponse.token, loginCode); |
final String requestBody = WebRequests.createRequestBody(
new Pair<>("username", authenticationData.username()),
new Pair<>("password", authenticationData.password()),
new Pair<>("token", authenticationData.previousToken()),
new Pair<>("login_code", authenticationData.loginCode())
);
final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder()
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.uri(ClassiCubeHandler.AUTHENTICATION_URI)
.header("content-type", "application/x-www-form-urlencoded"));
final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();
WebRequests.updateCookies(account.cookieStore, response);
final String responseBody = response.body();
return CCAuthenticationResponse.fromJson(responseBody);
});
}
}
| src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationLoginRequest.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationTokenRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCAuthenticationTokenRequest {\n public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.AUTHENTICATION_URI).build();\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 91.50452554733644
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerListRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerListRequest {\n public static CompletableFuture<CCServerList> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.SERVER_LIST_INFO_URI));\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 86.9442455040892
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerInfoRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.URI;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.List;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerInfoRequest {\n private static URI generateUri(final List<String> serverHashes) {\n final String joined = String.join(\",\", serverHashes);\n return ClassiCubeHandler.SERVER_INFO_URI.resolve(joined);",
"score": 70.43041632038214
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": "import de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationLoginRequest;\nimport de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationTokenRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerInfoRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerListRequest;\nimport de.florianmichael.classic4j.model.classicube.CCServerList;\nimport de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;\nimport javax.security.auth.login.LoginException;\nimport java.net.URI;\nimport java.util.List;\nimport java.util.function.Consumer;",
"score": 49.088003730571394
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": "import org.jsoup.nodes.Document;\nimport java.util.concurrent.CompletableFuture;\npublic class BCServerListRequest {\n public static CompletableFuture<BCServerList> send() {\n return CompletableFuture.supplyAsync(() -> {\n Document document;\n try {\n document = Jsoup.connect(BetaCraftHandler.SERVER_LIST.toString())\n .userAgent(\"Java/\" + Runtime.version())\n .header(\"Accept\", \"text/html, image/gif, image/jpeg, ; q=.2,/*; q=.2\")",
"score": 45.84621091619149
}
] | java | authenticationData = new CCAuthenticationData(account.username(), account.password(), previousResponse.token, loginCode); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.SimpleMaterialTemplateFetcher;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;
import javafx.util.converter.NumberStringConverter;
import java.io.File;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Materials Editor. It is responsible for the creation and editing of VisualMaterialTemplates in the current ruleset.
* Controls /fxml/editors/MaterialsEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public final class MaterialsEditorController implements StageController {
@FXML
private TextField exportPriceTextField;
@FXML
private TextField importPriceTextField;
@FXML
private SimpleTableEditor<VisualMaterialTemplate> materialTemplateEditor;
@FXML
private CheckBox isExportableCheckBox;
@FXML
private AnchorPane leftAnchor;
@FXML
private TextField nameTextField;
@FXML
private Button okButton;
@FXML
private TextField pathToGFXTextField;
@FXML
private ImageChooserButton fileChooserButton;
@FXML
private SplitPane rootPane;
ObservableList<VisualMaterialTemplate> materials = FXCollections.emptyObservableList();
Stage stage;
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
//retrieving the list of material templates in current rules.
materials = FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates());
//Configuring Template Editor
materialTemplateEditor.setFetcher(new SimpleMaterialTemplateFetcher());
//Configuring Table View
materialTemplateEditor.getTableView().setItems(materials);
materialTemplateEditor.getTableView().setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
//Creating Table Columns for the editor to display
TableColumn<VisualMaterialTemplate, String> materialNameColumn = new TableColumn<>();
materialNameColumn.setText("Material");
materialNameColumn.setCellValueFactory(param -> param.getValue().nameProperty());
LogoTableColumn<VisualMaterialTemplate> materialImageColumn = new LogoTableColumn<>();
materialImageColumn.setDefaultSizePolicy();
materialImageColumn.setCellValueFactory(param -> param.getValue().pathToGFXProperty());
materialTemplateEditor.getTableView().getColumns().addAll(materialImageColumn, materialNameColumn);
//listening for changes in selection made by the user in materials table view to update data displayed.
materialTemplateEditor.getTableView().getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> {
if(oldValue != null) {
if (!validateMaterial(oldValue))
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Material Editor Controller saving an invalid tag");
else
unbindMaterial(oldValue);
}
displayMaterial(newValue);
});
//other inits
disableTradable();
isExportableCheckBox.selectedProperty().addListener((observable, oldValue, newValue) -> {
if(newValue)
enableTradable();
else
disableTradable();
});
fileChooserButton.setOutput(pathToGFXTextField);
okButton.setOnAction(e-> stage.close());
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
/**
* Disables the exportPriceTextField as you should not set a price for non-tradeable materials.
*/
private void disableTradable() {
exportPriceTextField.setDisable(true);
}
/**
* Enables the exportPriceTextField as you should be abel to set a price for tradeable materials.
*/
private void enableTradable() {
exportPriceTextField.setDisable(false);
}
/**
* Unbinds the properties of a given materials from all TextFields and CheckBoxes.
* @param template template to be unbound.
*/
private void unbindMaterial(VisualMaterialTemplate template) {
nameTextField.textProperty() .unbindBidirectional(template.nameProperty());
isExportableCheckBox.selectedProperty() .unbindBidirectional(template.isExportableProperty());
pathToGFXTextField.textProperty() .unbindBidirectional(template.pathToGFXProperty());
exportPriceTextField.textProperty() .unbindBidirectional(template.defExportPriceProperty());
importPriceTextField.textProperty() .unbindBidirectional(template.defImportPriceProperty());
}
/**
* Binds the properties of a given material to all TextFields and CheckBoxes.
* @param materialTemplate template to be displayed
*/
private void displayMaterial(VisualMaterialTemplate materialTemplate) {
nameTextField.textProperty() .bindBidirectional(materialTemplate.nameProperty());
isExportableCheckBox.selectedProperty() .bindBidirectional(materialTemplate.isExportableProperty());
pathToGFXTextField. | textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty()); |
exportPriceTextField.textProperty() .bindBidirectional(materialTemplate.defExportPriceProperty(), new NumberStringConverter());
importPriceTextField.textProperty() .bindBidirectional(materialTemplate.defImportPriceProperty(), new NumberStringConverter());
}
/**
* Checks that it can read a file that is set as a pathToGFX.
* @param materialTemplate VisualMaterialTemplate to be validated.
* @return true if file can be read. False if it cannot be read.
*/
private boolean validateMaterial(VisualMaterialTemplate materialTemplate) {
File checkFile = new File(pathToGFXTextField.getText());
if(checkFile.canRead()) {
return true;
} else {
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "Could not Find file: "+pathToGFXTextField.getText()+" when trying to check integrity during material template save.");
Alert alert = new Alert(Alert.AlertType.ERROR);
alert.setHeaderText("Could not find file: "+pathToGFXTextField.getText());
alert.setContentText(pathToGFXTextField.getText()+" must be a path to a valid readable file");
alert.showAndWait();
return false;
}
}
/**
* Removes the old Material Templates from the current Ruleset, adds all materialTemplates in materials field, and then force saves the rules at a lastLoadedRules location.
*/
@Deprecated
private void saveChanges() {
Configurator.getInstance().getRules().getMaterialTemplates().clear();
Configurator.getInstance().getRules().getMaterialTemplates().addAll(materials);
Configurator.getInstance().saveRules();
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " * @param template template that was selected by the user to be displayed and edited.\n */\n private void displayBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().bindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().bindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().bindBidirectional(template.defConstructionCostProperty(), new NumberStringConverter());\n constructionTimeField.textProperty().bindBidirectional(template.defConstructionTimeProperty(), new NumberStringConverter());\n operatesImmediatelyCheckBox.selectedProperty().bindBidirectional(template.operatesImmediatelyProperty());\n inputMaterialEditor.setItems(template.getInputMaterials());\n outputMaterialEditor.setItems(template.getOutputMaterials());",
"score": 71.48860674921804
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " * Binds the properties of a given tag to all TextFields and CheckBoxes.\n * @param tag Tag to be unbound.\n */\n private void unbindTag(Tag tag) {\n tagTextField.textProperty() .unbindBidirectional(tag.tagProperty());\n isFactionalCheckBox.selectedProperty() .unbindBidirectional(tag.isFactionalProperty());\n }\n /**\n * Unbinds the properties of a given tag from all TextFields and CheckBoxes.\n * @param tag Tag to be displayed.",
"score": 60.97593384559333
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 56.78404591940835
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java",
"retrieved_chunk": " realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());\n treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());\n diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());\n powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());\n legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());\n prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());\n infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());\n stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());\n realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());\n rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());",
"score": 48.16276544663554
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " */\n private void displayTag(Tag tag) {\n tagTextField.textProperty() .bindBidirectional(tag.tagProperty());\n isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());\n }\n}",
"score": 47.372794001222694
}
] | java | textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty()); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.request.classicube.auth;
import de.florianmichael.classic4j.ClassiCubeHandler;
import de.florianmichael.classic4j.request.classicube.auth.base.CCAuthenticationResponse;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAuthenticationData;
import de.florianmichael.classic4j.util.Pair;
import de.florianmichael.classic4j.util.WebRequests;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.concurrent.CompletableFuture;
public class CCAuthenticationLoginRequest {
public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account, final CCAuthenticationResponse previousResponse, final String loginCode) {
return CompletableFuture.supplyAsync(() -> {
final CCAuthenticationData authenticationData = new CCAuthenticationData(account.username(), account.password(), previousResponse.token, loginCode);
final String requestBody = WebRequests.createRequestBody(
new Pair<>("username", authenticationData.username()),
new Pair<>("password", authenticationData.password()),
new Pair<>("token", authenticationData.previousToken()),
new Pair | <>("login_code", authenticationData.loginCode())
); |
final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder()
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.uri(ClassiCubeHandler.AUTHENTICATION_URI)
.header("content-type", "application/x-www-form-urlencoded"));
final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();
WebRequests.updateCookies(account.cookieStore, response);
final String responseBody = response.body();
return CCAuthenticationResponse.fromJson(responseBody);
});
}
}
| src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationLoginRequest.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " }\n public CCAuthenticationData withLoginCode(final String loginCode) {\n return new CCAuthenticationData(this.username, this.password, this.previousToken, loginCode);\n }\n public String username() {\n return username;\n }\n public String password() {\n return password;\n }",
"score": 63.87415158030215
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " private final String previousToken;\n private final String loginCode;\n public CCAuthenticationData(final String username, final String password, final String previousToken) {\n this(username, password, previousToken, null);\n }\n public CCAuthenticationData(final String username, final String password, final String previousToken, final String loginCode) {\n this.username = username;\n this.password = password;\n this.previousToken = previousToken;\n this.loginCode = loginCode;",
"score": 56.41443218927965
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAccount.java",
"retrieved_chunk": " public final CookieStore cookieStore = new CookieStore();\n public String token;\n private final String username;\n private final String password;\n public CCAccount(final String username, final String password) {\n this(null, username, password);\n }\n public CCAccount(final String token, final String username, final String password) {\n this.token = token;\n this.username = username;",
"score": 45.21774452011221
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAccount.java",
"retrieved_chunk": " this.password = password;\n }\n public JsonObject asJson() {\n final JsonObject object = new JsonObject();\n object.addProperty(\"token\", this.token);\n object.addProperty(\"username\", this.username);\n object.addProperty(\"password\", this.password);\n return object;\n }\n public static CCAccount fromJson(final JsonObject object) {",
"score": 43.62302961548207
},
{
"filename": "src/main/java/de/florianmichael/classic4j/model/classicube/highlevel/CCAuthenticationData.java",
"retrieved_chunk": " public String previousToken() {\n return previousToken;\n }\n public String loginCode() {\n return loginCode;\n }\n @Override\n public String toString() {\n return \"CCAuthenticationData{\" +\n \"username='\" + username + '\\'' +",
"score": 41.37463804840709
}
] | java | <>("login_code", authenticationData.loginCode())
); |
/*
* This file is part of Classic4J - https://github.com/FlorianMichael/Classic4J
* Copyright (C) 2023 FlorianMichael/EnZaXD and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.florianmichael.classic4j.request.classicube.auth;
import de.florianmichael.classic4j.ClassiCubeHandler;
import de.florianmichael.classic4j.request.classicube.auth.base.CCAuthenticationResponse;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;
import de.florianmichael.classic4j.model.classicube.highlevel.CCAuthenticationData;
import de.florianmichael.classic4j.util.Pair;
import de.florianmichael.classic4j.util.WebRequests;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.concurrent.CompletableFuture;
public class CCAuthenticationLoginRequest {
public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account, final CCAuthenticationResponse previousResponse, final String loginCode) {
return CompletableFuture.supplyAsync(() -> {
final CCAuthenticationData authenticationData = new CCAuthenticationData(account.username() | , account.password(), previousResponse.token, loginCode); |
final String requestBody = WebRequests.createRequestBody(
new Pair<>("username", authenticationData.username()),
new Pair<>("password", authenticationData.password()),
new Pair<>("token", authenticationData.previousToken()),
new Pair<>("login_code", authenticationData.loginCode())
);
final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder()
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
.uri(ClassiCubeHandler.AUTHENTICATION_URI)
.header("content-type", "application/x-www-form-urlencoded"));
final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();
WebRequests.updateCookies(account.cookieStore, response);
final String responseBody = response.body();
return CCAuthenticationResponse.fromJson(responseBody);
});
}
}
| src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationLoginRequest.java | FlorianMichael-Classic4J-6e0a2ff | [
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/auth/CCAuthenticationTokenRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCAuthenticationTokenRequest {\n public static CompletableFuture<CCAuthenticationResponse> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.AUTHENTICATION_URI).build();\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 91.50452554733644
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerListRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerListRequest {\n public static CompletableFuture<CCServerList> send(final CCAccount account) {\n return CompletableFuture.supplyAsync(() -> {\n final HttpRequest request = WebRequests.buildWithCookies(account.cookieStore, HttpRequest.newBuilder().GET().uri(ClassiCubeHandler.SERVER_LIST_INFO_URI));\n final HttpResponse<String> response = WebRequests.HTTP_CLIENT.sendAsync(request, HttpResponse.BodyHandlers.ofString()).join();\n WebRequests.updateCookies(account.cookieStore, response);",
"score": 86.9442455040892
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/classicube/server/CCServerInfoRequest.java",
"retrieved_chunk": "import de.florianmichael.classic4j.util.WebRequests;\nimport java.net.URI;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\nimport java.util.List;\nimport java.util.concurrent.CompletableFuture;\npublic class CCServerInfoRequest {\n private static URI generateUri(final List<String> serverHashes) {\n final String joined = String.join(\",\", serverHashes);\n return ClassiCubeHandler.SERVER_INFO_URI.resolve(joined);",
"score": 70.43041632038214
},
{
"filename": "src/main/java/de/florianmichael/classic4j/ClassiCubeHandler.java",
"retrieved_chunk": "import de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationLoginRequest;\nimport de.florianmichael.classic4j.request.classicube.auth.CCAuthenticationTokenRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerInfoRequest;\nimport de.florianmichael.classic4j.request.classicube.server.CCServerListRequest;\nimport de.florianmichael.classic4j.model.classicube.CCServerList;\nimport de.florianmichael.classic4j.model.classicube.highlevel.CCAccount;\nimport javax.security.auth.login.LoginException;\nimport java.net.URI;\nimport java.util.List;\nimport java.util.function.Consumer;",
"score": 49.088003730571394
},
{
"filename": "src/main/java/de/florianmichael/classic4j/request/betacraft/BCServerListRequest.java",
"retrieved_chunk": "import org.jsoup.nodes.Document;\nimport java.util.concurrent.CompletableFuture;\npublic class BCServerListRequest {\n public static CompletableFuture<BCServerList> send() {\n return CompletableFuture.supplyAsync(() -> {\n Document document;\n try {\n document = Jsoup.connect(BetaCraftHandler.SERVER_LIST.toString())\n .userAgent(\"Java/\" + Runtime.version())\n .header(\"Accept\", \"text/html, image/gif, image/jpeg, ; q=.2,/*; q=.2\")",
"score": 45.84621091619149
}
] | java | , account.password(), previousResponse.token, loginCode); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField.textProperty() .bindBidirectional(realm.realmPathToGFXProperty());
rulerGFXTextField | .textProperty() .bindBidirectional(realm.rulerPathToGFXProperty()); |
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " * @param template template that was selected by the user to be displayed and edited.\n */\n private void displayBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().bindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().bindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().bindBidirectional(template.defConstructionCostProperty(), new NumberStringConverter());\n constructionTimeField.textProperty().bindBidirectional(template.defConstructionTimeProperty(), new NumberStringConverter());\n operatesImmediatelyCheckBox.selectedProperty().bindBidirectional(template.operatesImmediatelyProperty());\n inputMaterialEditor.setItems(template.getInputMaterials());\n outputMaterialEditor.setItems(template.getOutputMaterials());",
"score": 185.738206744678
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " nameTextField.textProperty() .bindBidirectional(materialTemplate.nameProperty());\n isExportableCheckBox.selectedProperty() .bindBidirectional(materialTemplate.isExportableProperty());\n pathToGFXTextField.textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty());\n exportPriceTextField.textProperty() .bindBidirectional(materialTemplate.defExportPriceProperty(), new NumberStringConverter());\n importPriceTextField.textProperty() .bindBidirectional(materialTemplate.defImportPriceProperty(), new NumberStringConverter());\n }\n /**\n * Checks that it can read a file that is set as a pathToGFX.\n * @param materialTemplate VisualMaterialTemplate to be validated.\n * @return true if file can be read. False if it cannot be read.",
"score": 180.71437470510827
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 138.09940939750794
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " */\n private void displayTag(Tag tag) {\n tagTextField.textProperty() .bindBidirectional(tag.tagProperty());\n isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());\n }\n}",
"score": 124.05461796432769
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 60.62343243529338
}
] | java | .textProperty() .bindBidirectional(realm.rulerPathToGFXProperty()); |
// Copyright 2023 Prokhor Kalinin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.dragondelve.downfall.ui.editor;
import net.dragondelve.mabel.button.ImageChooserButton;
import net.dragondelve.mabel.button.LogoTableColumn;
import net.dragondelve.mabel.button.SimpleTableEditor;
import net.dragondelve.mabel.fetcher.*;
import net.dragondelve.downfall.realm.Material;
import net.dragondelve.downfall.realm.Realm;
import net.dragondelve.downfall.realm.Tag;
import net.dragondelve.downfall.realm.template.VisualMaterialTemplate;
import net.dragondelve.downfall.ui.StageController;
import net.dragondelve.downfall.util.Configurator;
import net.dragondelve.downfall.util.DownfallUtil;
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.converter.IntegerStringConverter;
import javafx.util.converter.NumberStringConverter;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Controller class for the Realm Editor. It is responsible for the creation of new Realms.
* Controls /fxml/editors/RealmEditor.fxml and is annotated with @FXML where it references that FXML file.
*/
public class RealmEditorController implements StageController {
@FXML
private Button cancelButton;
@FXML
private Button createButton;
@FXML
private TextField diploRepTextField;
@FXML
private TextField infamyTextField;
@FXML
private TextField legitimacyTextField;
@FXML
private TextField powerProjectionTextField;
@FXML
private TextField prestigeTextField;
@FXML
private ImageChooserButton realmGFXButton;
@FXML
private TextField realmGFXTextField;
@FXML
private TextField realmNameTextField;
@FXML
private BorderPane rootPane;
@FXML
private ImageChooserButton rulerGFXButton;
@FXML
private TextField rulerGFXTextField;
@FXML
private TextField treasuryTextField;
@FXML
private TextField stabilityTextField;
@FXML
private SimpleTableEditor<Tag> tagEditor;
@FXML
private SimpleTableEditor<Material> stockpileEditor;
private static final String STOCKPILE_NAME_COLUMN_NAME = "Stockpile";
private static final String STOCKPILE_AMOUNT_COLUMN_NAME = "Amount";
Stage stage = new Stage();
/**
* Initialize method that is called automatically after the FXML has finished loading. Initializes all UI elements before they are displayed
*/
@FXML
public void initialize() {
//init css
rootPane.getStylesheets().clear();
rootPane.getStylesheets().add(DownfallUtil.MAIN_CSS_RESOURCE);
Realm realm = new Realm();
//bind textFields
realmNameTextField.textProperty() .bindBidirectional(realm.nameProperty());
treasuryTextField.textProperty() .bindBidirectional(realm.treasuryProperty(), new NumberStringConverter());
diploRepTextField.textProperty() .bindBidirectional(realm.diplomaticReputationProperty(), new NumberStringConverter());
powerProjectionTextField.textProperty() .bindBidirectional(realm.powerProjectionProperty(), new NumberStringConverter());
legitimacyTextField.textProperty() .bindBidirectional(realm.legitimacyProperty(), new NumberStringConverter());
prestigeTextField.textProperty() .bindBidirectional(realm.prestigeProperty(), new NumberStringConverter());
infamyTextField.textProperty() .bindBidirectional(realm.infamyProperty(), new NumberStringConverter());
stabilityTextField.textProperty() .bindBidirectional(realm.stabilityProperty(), new NumberStringConverter());
realmGFXTextField | .textProperty() .bindBidirectional(realm.realmPathToGFXProperty()); |
rulerGFXTextField.textProperty() .bindBidirectional(realm.rulerPathToGFXProperty());
//init Tag Editor
TableColumn<Tag, String> tagColumn = new TableColumn<>("Tag");
tagColumn.setCellValueFactory(e->e.getValue().tagProperty());
VisualFetcher<Tag> visualTagFetcher = new VisualTagFetcher();
visualTagFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getActorTags()));
tagEditor.setFetcher(visualTagFetcher);
tagEditor.setItems(realm.getTags());
tagEditor.getTableView().getColumns().add(tagColumn);
//Init file chooser buttons
realmGFXButton.setOutput(realmGFXTextField);
rulerGFXButton.setOutput(rulerGFXTextField);
//init other buttons.
cancelButton.setOnAction(e-> stage.close());
createButton.setOnAction(e-> {
Configurator.getInstance().setUserRealm(realm);
stage.close();
});
//init stockpile editor
LogoTableColumn<Material> stockpileLogoColumn = new LogoTableColumn<>();
stockpileLogoColumn.setDefaultSizePolicy();
stockpileLogoColumn.setCellValueFactory(e-> {
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).pathToGFXProperty();
});
TableColumn<Material, String> stockpileNameColumn = new TableColumn<>(STOCKPILE_NAME_COLUMN_NAME);
stockpileNameColumn.setCellValueFactory(e ->{
VisualMaterialTemplate template = Configurator.getInstance().findMaterialTemplate(e.getValue());
if(template == null)
Logger.getLogger(DownfallUtil.DEFAULT_LOGGER).log(Level.WARNING, "VisualMaterialTemplate expected from Configuration returned null");
return Objects.requireNonNull(template).nameProperty();
});
TableColumn<Material, Integer> stockpileAmountColumn = new TableColumn<>(STOCKPILE_AMOUNT_COLUMN_NAME);
stockpileAmountColumn.setCellFactory(TextFieldTableCell.forTableColumn(new IntegerStringConverter()));
stockpileAmountColumn.setCellValueFactory(e-> e.getValue().amountProperty().asObject());
stockpileAmountColumn.setEditable(true);
ConversionFetcher<Material, VisualMaterialTemplate> visualMaterialFetcher = new ConversionMaterialFetcher();
visualMaterialFetcher.initialize(stage, FXCollections.observableList(Configurator.getInstance().getRules().getMaterialTemplates()));
stockpileEditor.setFetcher(visualMaterialFetcher);
stockpileEditor.setItems(realm.getStockpile());
stockpileEditor.getTableView().getColumns().addAll(stockpileLogoColumn, stockpileNameColumn, stockpileAmountColumn);
}
/**
* Lightweight mutator method.
* Always should be called before the editor is displayed to the user.
* @param stage Stage on which this controller is displayed.
*/
@Override
public void setStage(Stage stage) {
this.stage = stage;
}
}
| src/main/java/net/dragondelve/downfall/ui/editor/RealmEditorController.java | FitzHastings-DownfallEAM-f1a06ef | [
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " * @param template template that was selected by the user to be displayed and edited.\n */\n private void displayBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().bindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().bindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().bindBidirectional(template.defConstructionCostProperty(), new NumberStringConverter());\n constructionTimeField.textProperty().bindBidirectional(template.defConstructionTimeProperty(), new NumberStringConverter());\n operatesImmediatelyCheckBox.selectedProperty().bindBidirectional(template.operatesImmediatelyProperty());\n inputMaterialEditor.setItems(template.getInputMaterials());\n outputMaterialEditor.setItems(template.getOutputMaterials());",
"score": 188.47338022385975
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/MaterialsEditorController.java",
"retrieved_chunk": " nameTextField.textProperty() .bindBidirectional(materialTemplate.nameProperty());\n isExportableCheckBox.selectedProperty() .bindBidirectional(materialTemplate.isExportableProperty());\n pathToGFXTextField.textProperty() .bindBidirectional(materialTemplate.pathToGFXProperty());\n exportPriceTextField.textProperty() .bindBidirectional(materialTemplate.defExportPriceProperty(), new NumberStringConverter());\n importPriceTextField.textProperty() .bindBidirectional(materialTemplate.defImportPriceProperty(), new NumberStringConverter());\n }\n /**\n * Checks that it can read a file that is set as a pathToGFX.\n * @param materialTemplate VisualMaterialTemplate to be validated.\n * @return true if file can be read. False if it cannot be read.",
"score": 183.31014069734974
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/main/DownfallMainController.java",
"retrieved_chunk": " * Initializes all Tabs with their respective content.\n */\n private void initializeTabs() {\n initializeRealmTab();\n }\n /**\n * Executes general update sequence for all scene elements.\n */\n private void update() {\n treasuryLabel.textProperty().bindBidirectional(Configurator.getInstance().getUserRealm().treasuryProperty(), new NumberStringConverter());",
"score": 138.09940939750794
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/TagsEditorController.java",
"retrieved_chunk": " */\n private void displayTag(Tag tag) {\n tagTextField.textProperty() .bindBidirectional(tag.tagProperty());\n isFactionalCheckBox.selectedProperty() .bindBidirectional(tag.isFactionalProperty());\n }\n}",
"score": 124.05461796432769
},
{
"filename": "src/main/java/net/dragondelve/downfall/ui/editor/BuildingsEditorController.java",
"retrieved_chunk": " */\n private void unbindBuilding(VisualBuildingTemplate template) {\n nameTextField.textProperty().unbindBidirectional(template.nameProperty());\n pathToGFXTextField.textProperty().unbindBidirectional(template.pathToGFXProperty());\n constructionCostField.textProperty().unbindBidirectional(template.defConstructionCostProperty());\n constructionTimeField.textProperty().unbindBidirectional(template.defConstructionTimeProperty());\n operatesImmediatelyCheckBox.selectedProperty().unbindBidirectional(template.operatesImmediatelyProperty());\n }\n /**\n * binds all properties of the building to GUI TextFields and sets the data of all tables to correspond with the selected template.",
"score": 63.460172012696034
}
] | java | .textProperty() .bindBidirectional(realm.realmPathToGFXProperty()); |
package com.flyjingfish.titlebar;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
import com.flyjingfish.titlebarlib.TitleBar;
public class MainActivity extends BaseActivity {
private TitleBar titleBar2;
@Override
public String getTitleString() {
return "这里是标题";
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// titleBar2 = findViewById(R.id.title_bar);
// StatusBarHelper.translucent(this);
// StatusBarHelper.setStatusBarLightMode(this);
View view = new View(this);
view.setBackgroundColor(Color.RED);
// titleBar2.setCustomView(view );
// titleBar2.setBackgroundColor(Color.RED);
// titleBar.setShadow(20,Color.BLACK, TitleBar.ShadowType.GRADIENT);
Log.d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this));
}
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_1:
StatusBarHelper.translucent(this);
| StatusBarHelper.setStatusBarLightMode(this); |
titleBar.setStatusBarBackgroundColor(Color.BLUE);
titleBar.setTitleGravity(TitleBar.TitleGravity.START);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.BLACK);
titleBar.getRightImageView().setVisibility(View.GONE);
titleBar.setDisplayShadow(true);
titleBar.setAboveContent(false);
titleBar.getBackTextView().setText("back");
break;
case R.id.btn_2:
titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);
titleBar.getRightTextView().setVisibility(View.GONE);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.WHITE);
titleBar.getRightImageView().setOnClickListener(v -> Toast.makeText(v.getContext(),"more",Toast.LENGTH_SHORT).show());
// titleBar.hideShadow();
titleBar.setAboveContent(true);
ViewGroup content = findViewById(android.R.id.content);
int[] contentLat = new int[2];
content.getLocationOnScreen(contentLat);
Log.e("getLocationOnScreen",contentLat[0]+"=="+contentLat[1]);
Rect rect = new Rect();
content.getLocalVisibleRect(rect);
Log.e("getLocationOnScreen",content.getTop()+"");
break;
case R.id.btn_3:
titleBar.getRightTextView().setVisibility(View.VISIBLE);
titleBar.setTitleGravity(TitleBar.TitleGravity.END);
titleBar.getRightTextView().setText("11111");
titleBar.getRightTextView().setTextColor(Color.BLUE);
break;
}
}
} | app/src/main/java/com/flyjingfish/titlebar/MainActivity.java | FlyJingFish-TitleBar-24dc5b6 | [
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": " protected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n titleBar = new TitleBar(this);\n titleBar.setShadow(4, Color.parseColor(\"#406200EE\"), TitleBar.ShadowType.GRADIENT);\n titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);\n titleBar.setOnBackViewClickListener(v -> finish());\n if (isShowTitleBar()){\n titleBar.show();\n }else {\n titleBar.hide();",
"score": 43.86092763446318
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/ScreenUtils.java",
"retrieved_chunk": " }\n return screenHeight;\n }\n public static int getStatusBarHeight(Context context) {\n return StatusBarHelper.getStatusbarHeight(context);\n }\n}",
"score": 27.727434769316304
},
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/ScreenUtils.java",
"retrieved_chunk": " }\n return screenHeight;\n }\n public static int getStatusBarHeight(Context context) {\n return StatusBarHelper.getStatusbarHeight(context);\n }\n}",
"score": 27.727434769316304
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " public void setCustomView(View view) {\n setCustomView(view, null);\n }\n /**\n * 设置自定义View(中间的)\n *\n * @param view 自定义View\n */\n public void setCustomView(View view, FrameLayout.LayoutParams layoutParams) {\n customViewContainer.removeAllViews();",
"score": 25.151828342669795
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " leftContainer = rootView.findViewById(R.id.left_container);\n int statusBarHeight = StatusBarHelper.getStatusbarHeight(getContext());\n ViewGroup.LayoutParams layoutParams = titleBarStatusBar.getLayoutParams();\n layoutParams.height = statusBarHeight;\n titleBarStatusBar.setLayoutParams(layoutParams);\n setOnBackViewClickListener(v -> ((Activity) context).finish());\n if (pendingSetBackground != null) {\n setBackground(pendingSetBackground);\n }\n int minHeight = a.getDimensionPixelOffset(R.styleable.TitleBar_android_minHeight, getResources().getDimensionPixelOffset(R.dimen.title_bar_minHeight));",
"score": 20.712139202054104
}
] | java | StatusBarHelper.setStatusBarLightMode(this); |
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.ProductRecordDto;
import com.brinquedomania.api.models.ProductModel;
import com.brinquedomania.api.repositories.ProductRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.*;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do produto.
*/
@RestController
@CrossOrigin(origins = "*")
public class ProductController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do produto no banco de dados
*/
@Autowired
ProductRepository productRepository;
/**
* Metodo/Rota responsavel por realizar o cadastro do produto
* @param productRecordDto - DTO que contem os dados do produto para realizar o cadastro
* @return - Retorna o produto que foi cadastrado
*/
@PostMapping("/product/register")
public ResponseEntity<ProductModel> saveProduct(@RequestBody @Valid ProductRecordDto productRecordDto) {
var productModel = new ProductModel();
BeanUtils.copyProperties(productRecordDto, productModel);
return ResponseEntity.status(HttpStatus.CREATED).body(productRepository.save(productModel));
}
/**
* Metodo/Rota responsavel por listar todos os produtos cadastrados
* @return - Retorna uma lista com todos os produtos cadastrados
*/
@GetMapping("/product/listAll")
public ResponseEntity<List<ProductModel>> getAllProduct() {
return ResponseEntity.status(HttpStatus.OK).body(productRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um produto especifico
* @param id - ID do produto que deseja listar
* @return - Retorna o produto que foi encontrado
*/
@GetMapping("/product/listOne/{id}")
public ResponseEntity<Object> getOneProductById(@PathVariable(value = "id") UUID id) {
Optional<ProductModel> | product0 = productRepository.findById(id); |
if (product0.isEmpty()) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado.");
}
return ResponseEntity.status(HttpStatus.OK).body(product0.get());
}
/**
* Metodo/Rota responsavel por editar um produto especifico
* @param id - ID do produto que deseja editar
* @param productRecordDto - DTO que contem os dados do produto para realizar a edicao
* @return - Retorna o produto que foi editado
*/
@PutMapping("/product/edit/{id}")
public ResponseEntity<Object> updateUser(@PathVariable(value="id") UUID id,
@RequestBody @Valid ProductRecordDto productRecordDto) {
Optional<ProductModel> product0 = productRepository.findById(id);
if(product0.isEmpty()) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var productModel = product0.get();
BeanUtils.copyProperties(productRecordDto, productModel);
return ResponseEntity.status(HttpStatus.OK).body(productRepository.save(productModel));
}
/**
* Metodo/Rota responsavel por deletar um produto especifico
* @param id - ID do produto que deseja deletar
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/product/delete/{id}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="id") UUID id) {
Optional<ProductModel> product0 = productRepository.findById(id);
if(product0.isEmpty()) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
productRepository.delete(product0.get());
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
} | src/main/java/com/brinquedomania/api/controllers/ProductController.java | Francisco-Jean-API-BRINQUEDOMANIA-0013ce2 | [
{
"filename": "src/main/java/com/brinquedomania/api/repositories/ProductRepository.java",
"retrieved_chunk": "public interface ProductRepository extends JpaRepository<ProductModel, UUID> {\n /**\n * Metodo responsavel por buscar um produto pelo seu id\n * @param id id do produto\n * @return lista de produtos que possuem o id passado como parametro\n */\n Optional<ProductModel> findById(UUID id);\n}",
"score": 35.49185816410346
},
{
"filename": "src/main/java/com/brinquedomania/api/repositories/SaleRepository.java",
"retrieved_chunk": " */\n@Repository\npublic interface SaleRepository extends JpaRepository<SaleModel, UUID> {\n /**Metodo responsavel por buscar uma venda no banco de dados pelo seu id\n * @param id - id da venda\n * @return - Retorna a venda que possui o id passado como parametro\n */\n Optional<SaleModel> findById(UUID id);\n /**Metodo responsavel por buscar todas as vendas no banco de dados pelo id do vendedor\n * @param id - id do vendedor",
"score": 23.775008688102304
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/UserController.java",
"retrieved_chunk": " * @param identifier - Identificador do usuario\n * @return - Retorna o usuario que possui o identificador passado como parametro\n */\n @GetMapping(\"/user/listOne/{identifier}\")\n public ResponseEntity<Object> getOneUser(@PathVariable(value = \"identifier\") String identifier) {\n UserModel user0 = userRepository.findByIdentifier(identifier);\n if (user0 == null) {\n return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"usuario nao encontrado\");\n }\n return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));",
"score": 22.95139220708404
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/UserController.java",
"retrieved_chunk": " }\n /**\n * Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador\n * @param identifier - Identificador do usuario\n * @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao\n * @return - Retorna o usuario que foi atualizado\n */\n @PutMapping(\"/user/edit/{identifier}\")\n public ResponseEntity<Object> updateUser(@PathVariable(value=\"identifier\") String identifier,\n @RequestBody @Valid UserRecordDto userRecordDto) {",
"score": 21.95479559329172
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/UserController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.OK).body(\"Usuario deletado com sucesso.\");\n }\n /**\n * Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo\n * @param type - Tipo do usuario\n * @return - Retorna todos os usuarios que possuem o tipo passado como parametro\n */\n @GetMapping(\"/user/listByType/{type}\")\n public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = \"type\") String type) {\n List<UserModel> list = userRepository.findByType(type);",
"score": 21.700652115862976
}
] | java | product0 = productRepository.findById(id); |
package com.flyjingfish.titlebar;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
import com.flyjingfish.titlebarlib.TitleBar;
public class MainActivity extends BaseActivity {
private TitleBar titleBar2;
@Override
public String getTitleString() {
return "这里是标题";
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// titleBar2 = findViewById(R.id.title_bar);
// StatusBarHelper.translucent(this);
// StatusBarHelper.setStatusBarLightMode(this);
View view = new View(this);
view.setBackgroundColor(Color.RED);
// titleBar2.setCustomView(view );
// titleBar2.setBackgroundColor(Color.RED);
// titleBar.setShadow(20,Color.BLACK, TitleBar.ShadowType.GRADIENT);
Log.d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this));
}
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_1:
| StatusBarHelper.translucent(this); |
StatusBarHelper.setStatusBarLightMode(this);
titleBar.setStatusBarBackgroundColor(Color.BLUE);
titleBar.setTitleGravity(TitleBar.TitleGravity.START);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.BLACK);
titleBar.getRightImageView().setVisibility(View.GONE);
titleBar.setDisplayShadow(true);
titleBar.setAboveContent(false);
titleBar.getBackTextView().setText("back");
break;
case R.id.btn_2:
titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);
titleBar.getRightTextView().setVisibility(View.GONE);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.WHITE);
titleBar.getRightImageView().setOnClickListener(v -> Toast.makeText(v.getContext(),"more",Toast.LENGTH_SHORT).show());
// titleBar.hideShadow();
titleBar.setAboveContent(true);
ViewGroup content = findViewById(android.R.id.content);
int[] contentLat = new int[2];
content.getLocationOnScreen(contentLat);
Log.e("getLocationOnScreen",contentLat[0]+"=="+contentLat[1]);
Rect rect = new Rect();
content.getLocalVisibleRect(rect);
Log.e("getLocationOnScreen",content.getTop()+"");
break;
case R.id.btn_3:
titleBar.getRightTextView().setVisibility(View.VISIBLE);
titleBar.setTitleGravity(TitleBar.TitleGravity.END);
titleBar.getRightTextView().setText("11111");
titleBar.getRightTextView().setTextColor(Color.BLUE);
break;
}
}
} | app/src/main/java/com/flyjingfish/titlebar/MainActivity.java | FlyJingFish-TitleBar-24dc5b6 | [
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": " protected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n titleBar = new TitleBar(this);\n titleBar.setShadow(4, Color.parseColor(\"#406200EE\"), TitleBar.ShadowType.GRADIENT);\n titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);\n titleBar.setOnBackViewClickListener(v -> finish());\n if (isShowTitleBar()){\n titleBar.show();\n }else {\n titleBar.hide();",
"score": 45.00194334359787
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " public void setCustomView(View view) {\n setCustomView(view, null);\n }\n /**\n * 设置自定义View(中间的)\n *\n * @param view 自定义View\n */\n public void setCustomView(View view, FrameLayout.LayoutParams layoutParams) {\n customViewContainer.removeAllViews();",
"score": 28.923987854390745
},
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": "package com.flyjingfish.titlebar;\nimport android.graphics.Color;\nimport android.os.Bundle;\nimport android.view.ViewGroup;\nimport android.widget.FrameLayout;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\nimport com.flyjingfish.titlebarlib.TitleBar;\npublic class BaseActivity extends AppCompatActivity {\n protected TitleBar titleBar;",
"score": 24.912063485927543
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " ((ImageView) view).setImageResource(R.drawable.ic_title_bar_back);\n }\n } else if (view.getId() == R.id.iv_right_view) {\n Drawable drawable = a.getDrawable(R.styleable.TitleBar_Layout_android_src);\n if (drawable != null) {\n ((ImageView) view).setImageDrawable(drawable);\n } else {\n ((ImageView) view).setImageResource(R.drawable.ic_title_bar_more);\n }\n }",
"score": 23.65183046211407
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/ScreenUtils.java",
"retrieved_chunk": " }\n return screenHeight;\n }\n public static int getStatusBarHeight(Context context) {\n return StatusBarHelper.getStatusbarHeight(context);\n }\n}",
"score": 22.474611871208687
}
] | java | StatusBarHelper.translucent(this); |
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel user0 = userRepository.findByEmail(email);
if (user0 == null || !Objects.equals(user0.getPassword(), senha)) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel | user0 = userRepository.findByIdentifier(identifier); |
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
| src/main/java/com/brinquedomania/api/controllers/UserController.java | Francisco-Jean-API-BRINQUEDOMANIA-0013ce2 | [
{
"filename": "src/main/java/com/brinquedomania/api/repositories/UserRepository.java",
"retrieved_chunk": "@Repository\npublic interface UserRepository extends JpaRepository<UserModel, UUID> {\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu identificador\n * @param identifier Identificador do usuario\n * @return - Retorna o usuario que possui o identificador passado como parametro\n */\n UserModel findByIdentifier(String identifier);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu id\n * @param id id do usuario\n * @return Retorna o usuario que possui o id passado como parametro",
"score": 79.36891674201262
},
{
"filename": "src/main/java/com/brinquedomania/api/models/UserModel.java",
"retrieved_chunk": " this.birthDate = birthDate;\n }\n /**retorna o identificador do usuario (CPF)\n * @return String identifier\n */\n public String getIdentifier() {\n return identifier;\n }\n /**seta um novo identificador do usuario\n * @param identifier String",
"score": 50.83351336172129
},
{
"filename": "src/main/java/com/brinquedomania/api/repositories/UserRepository.java",
"retrieved_chunk": " */\n Optional<UserModel> findById(UUID id);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu username\n * @param username username do usuario\n * @return Retorna o usuario que possui o username passado como parametro\n */\n UserModel findByEmail(String username);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu tipo\n * @param Type tipo do usuario (Seller, Client ou User)\n * @return Retorna o usuario que possui o tipo passado como parametro",
"score": 49.24666186677945
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " }\n /**\n * Metodo/Rota responsavel por listar um produto especifico\n * @param id - ID do produto que deseja listar\n * @return - Retorna o produto que foi encontrado\n */\n @GetMapping(\"/product/listOne/{id}\")\n public ResponseEntity<Object> getOneProductById(@PathVariable(value = \"id\") UUID id) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if (product0.isEmpty()) {",
"score": 30.80579454459908
},
{
"filename": "src/main/java/com/brinquedomania/api/repositories/SaleRepository.java",
"retrieved_chunk": " */\n@Repository\npublic interface SaleRepository extends JpaRepository<SaleModel, UUID> {\n /**Metodo responsavel por buscar uma venda no banco de dados pelo seu id\n * @param id - id da venda\n * @return - Retorna a venda que possui o id passado como parametro\n */\n Optional<SaleModel> findById(UUID id);\n /**Metodo responsavel por buscar todas as vendas no banco de dados pelo id do vendedor\n * @param id - id do vendedor",
"score": 30.54319627754313
}
] | java | user0 = userRepository.findByIdentifier(identifier); |
package com.flyjingfish.titlebar;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
import com.flyjingfish.titlebarlib.TitleBar;
public class MainActivity extends BaseActivity {
private TitleBar titleBar2;
@Override
public String getTitleString() {
return "这里是标题";
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// titleBar2 = findViewById(R.id.title_bar);
// StatusBarHelper.translucent(this);
// StatusBarHelper.setStatusBarLightMode(this);
View view = new View(this);
view.setBackgroundColor(Color.RED);
// titleBar2.setCustomView(view );
// titleBar2.setBackgroundColor(Color.RED);
// titleBar.setShadow(20,Color.BLACK, TitleBar.ShadowType.GRADIENT);
Log. | d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this)); |
}
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_1:
StatusBarHelper.translucent(this);
StatusBarHelper.setStatusBarLightMode(this);
titleBar.setStatusBarBackgroundColor(Color.BLUE);
titleBar.setTitleGravity(TitleBar.TitleGravity.START);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.BLACK);
titleBar.getRightImageView().setVisibility(View.GONE);
titleBar.setDisplayShadow(true);
titleBar.setAboveContent(false);
titleBar.getBackTextView().setText("back");
break;
case R.id.btn_2:
titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);
titleBar.getRightTextView().setVisibility(View.GONE);
titleBar.setTitleBarBackgroundColorWithStatusBar(Color.WHITE);
titleBar.getRightImageView().setOnClickListener(v -> Toast.makeText(v.getContext(),"more",Toast.LENGTH_SHORT).show());
// titleBar.hideShadow();
titleBar.setAboveContent(true);
ViewGroup content = findViewById(android.R.id.content);
int[] contentLat = new int[2];
content.getLocationOnScreen(contentLat);
Log.e("getLocationOnScreen",contentLat[0]+"=="+contentLat[1]);
Rect rect = new Rect();
content.getLocalVisibleRect(rect);
Log.e("getLocationOnScreen",content.getTop()+"");
break;
case R.id.btn_3:
titleBar.getRightTextView().setVisibility(View.VISIBLE);
titleBar.setTitleGravity(TitleBar.TitleGravity.END);
titleBar.getRightTextView().setText("11111");
titleBar.getRightTextView().setTextColor(Color.BLUE);
break;
}
}
} | app/src/main/java/com/flyjingfish/titlebar/MainActivity.java | FlyJingFish-TitleBar-24dc5b6 | [
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/BaseActivity.java",
"retrieved_chunk": " protected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n titleBar = new TitleBar(this);\n titleBar.setShadow(4, Color.parseColor(\"#406200EE\"), TitleBar.ShadowType.GRADIENT);\n titleBar.setTitleGravity(TitleBar.TitleGravity.CENTER);\n titleBar.setOnBackViewClickListener(v -> finish());\n if (isShowTitleBar()){\n titleBar.show();\n }else {\n titleBar.hide();",
"score": 49.53700279937284
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/ScreenUtils.java",
"retrieved_chunk": " }\n return screenHeight;\n }\n public static int getStatusBarHeight(Context context) {\n return StatusBarHelper.getStatusbarHeight(context);\n }\n}",
"score": 26.26411449053809
},
{
"filename": "app/src/main/java/com/flyjingfish/titlebar/ScreenUtils.java",
"retrieved_chunk": " }\n return screenHeight;\n }\n public static int getStatusBarHeight(Context context) {\n return StatusBarHelper.getStatusbarHeight(context);\n }\n}",
"score": 26.26411449053809
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " public void setCustomView(View view) {\n setCustomView(view, null);\n }\n /**\n * 设置自定义View(中间的)\n *\n * @param view 自定义View\n */\n public void setCustomView(View view, FrameLayout.LayoutParams layoutParams) {\n customViewContainer.removeAllViews();",
"score": 25.189781493783684
},
{
"filename": "library/src/main/java/com/flyjingfish/titlebarlib/TitleBar.java",
"retrieved_chunk": " leftContainer = rootView.findViewById(R.id.left_container);\n int statusBarHeight = StatusBarHelper.getStatusbarHeight(getContext());\n ViewGroup.LayoutParams layoutParams = titleBarStatusBar.getLayoutParams();\n layoutParams.height = statusBarHeight;\n titleBarStatusBar.setLayoutParams(layoutParams);\n setOnBackViewClickListener(v -> ((Activity) context).finish());\n if (pendingSetBackground != null) {\n setBackground(pendingSetBackground);\n }\n int minHeight = a.getDimensionPixelOffset(R.styleable.TitleBar_android_minHeight, getResources().getDimensionPixelOffset(R.dimen.title_bar_minHeight));",
"score": 23.48227113988554
}
] | java | d("TitleBar","onCreate-getStatusbarHeight"+StatusBarHelper.getStatusbarHeight(this)); |
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel user0 = userRepository.findByEmail(email);
if (user0 | == null || !Objects.equals(user0.getPassword(), senha)) { |
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
| src/main/java/com/brinquedomania/api/controllers/UserController.java | Francisco-Jean-API-BRINQUEDOMANIA-0013ce2 | [
{
"filename": "src/main/java/com/brinquedomania/api/dtos/UserLoginRecordDto.java",
"retrieved_chunk": "package com.brinquedomania.api.dtos;\nimport jakarta.validation.constraints.Email;\nimport jakarta.validation.constraints.NotBlank;\n/**Valida os dados de entrada do login do usuario, nao permitindo que campos obrigatorios estejam vazios\n * @param email - email\n * @param password - not blank\n */\npublic record UserLoginRecordDto(@Email String email,\n @NotBlank String password) {\n}",
"score": 46.63659507938741
},
{
"filename": "src/main/java/com/brinquedomania/api/models/UserModel.java",
"retrieved_chunk": " */\n public void setEmail(String email) {\n this.email = email;\n }\n /**retorna a senha do usuario\n * @return String senha\n */\n public String getPassword() {\n return password;\n }",
"score": 46.36165540952859
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " @Autowired\n ProductRepository productRepository;\n /**\n * Metodo/Rota responsavel por realizar o cadastro do produto\n * @param productRecordDto - DTO que contem os dados do produto para realizar o cadastro\n * @return - Retorna o produto que foi cadastrado\n */\n @PostMapping(\"/product/register\")\n public ResponseEntity<ProductModel> saveProduct(@RequestBody @Valid ProductRecordDto productRecordDto) {\n var productModel = new ProductModel();",
"score": 33.07804080268211
},
{
"filename": "src/main/java/com/brinquedomania/api/models/UserModel.java",
"retrieved_chunk": " this.type = type;\n }\n /**retorna o email do usuario\n * @return String email\n */\n public String getEmail() {\n return email;\n }\n /**seta um novo email do usuario\n * @param email String",
"score": 30.144780187010603
},
{
"filename": "src/main/java/com/brinquedomania/api/models/UserModel.java",
"retrieved_chunk": " /**seta uma nova senha do usuario\n * @param password String\n */\n public void setPassword(String password) {\n this.password = password;\n }\n /**retorna o nome do usuario\n * @return String nome\n */\n public String getName() {",
"score": 26.911756741819563
}
] | java | == null || !Objects.equals(user0.getPassword(), senha)) { |
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel | user0 = userRepository.findByEmail(email); |
if (user0 == null || !Objects.equals(user0.getPassword(), senha)) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findByIdentifier(identifier));
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
| src/main/java/com/brinquedomania/api/controllers/UserController.java | Francisco-Jean-API-BRINQUEDOMANIA-0013ce2 | [
{
"filename": "src/main/java/com/brinquedomania/api/dtos/UserLoginRecordDto.java",
"retrieved_chunk": "package com.brinquedomania.api.dtos;\nimport jakarta.validation.constraints.Email;\nimport jakarta.validation.constraints.NotBlank;\n/**Valida os dados de entrada do login do usuario, nao permitindo que campos obrigatorios estejam vazios\n * @param email - email\n * @param password - not blank\n */\npublic record UserLoginRecordDto(@Email String email,\n @NotBlank String password) {\n}",
"score": 52.88421027862788
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " @Autowired\n ProductRepository productRepository;\n /**\n * Metodo/Rota responsavel por realizar o cadastro do produto\n * @param productRecordDto - DTO que contem os dados do produto para realizar o cadastro\n * @return - Retorna o produto que foi cadastrado\n */\n @PostMapping(\"/product/register\")\n public ResponseEntity<ProductModel> saveProduct(@RequestBody @Valid ProductRecordDto productRecordDto) {\n var productModel = new ProductModel();",
"score": 42.66164061995684
},
{
"filename": "src/main/java/com/brinquedomania/api/models/UserModel.java",
"retrieved_chunk": " */\n public void setEmail(String email) {\n this.email = email;\n }\n /**retorna a senha do usuario\n * @return String senha\n */\n public String getPassword() {\n return password;\n }",
"score": 37.97018402154573
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"usuario nao encontrado.\");\n }\n return ResponseEntity.status(HttpStatus.OK).body(product0.get());\n }\n /**\n * Metodo/Rota responsavel por editar um produto especifico\n * @param id - ID do produto que deseja editar\n * @param productRecordDto - DTO que contem os dados do produto para realizar a edicao\n * @return - Retorna o produto que foi editado\n */",
"score": 34.95066351212018
},
{
"filename": "src/main/java/com/brinquedomania/api/models/UserModel.java",
"retrieved_chunk": " this.type = type;\n }\n /**retorna o email do usuario\n * @return String email\n */\n public String getEmail() {\n return email;\n }\n /**seta um novo email do usuario\n * @param email String",
"score": 34.724418671563704
}
] | java | user0 = userRepository.findByEmail(email); |
package com.brinquedomania.api.controllers;
import com.brinquedomania.api.dtos.UserRecordDto;
import com.brinquedomania.api.dtos.UserLoginRecordDto;
import com.brinquedomania.api.models.UserModel;
import com.brinquedomania.api.repositories.UserRepository;
import jakarta.validation.Valid;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
/**
* Classe responsavel por implementar as rotas do CONTROLLER do usuario.
*/
@RestController
@CrossOrigin(origins = "*")
public class UserController {
/**
* Atributo responsavel por realizar as operacoes de CRUD do usuario no banco de dados
*/
@Autowired
UserRepository userRepository;
/**
* Metodo/Rota responsavel por realizar o login do usuario
* @param userLoginRecordDto - DTO que contem os dados do usuario para realizar o login
* @return - Retorna o usuario que realizou o login
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody @Valid UserLoginRecordDto userLoginRecordDto){
String email = userLoginRecordDto.email();
String senha = userLoginRecordDto.password();
UserModel user0 = userRepository.findByEmail(email);
if (user0 == null || !Objects.equals(user0.getPassword(), senha)) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus.OK).body(user0);
}
/**
* Metodo/Rota responsavel por realizar o cadastro do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar o cadastro
* @return - Retorna o usuario que foi cadastrado
*/
@PostMapping("/user/register")
public ResponseEntity<UserModel> saveUser(@RequestBody @Valid UserRecordDto userRecordDto) {
var userModel = new UserModel();
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.CREATED).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados
* @return - Retorna todos os usuarios cadastrados no banco de dados
*/
@GetMapping("/user/listAll")
public ResponseEntity<List<UserModel>> getAllUsers() {
return ResponseEntity.status(HttpStatus.OK).body(userRepository.findAll());
}
/**
* Metodo/Rota responsavel por listar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna o usuario que possui o identificador passado como parametro
*/
@GetMapping("/user/listOne/{identifier}")
public ResponseEntity<Object> getOneUser(@PathVariable(value = "identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if (user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("usuario nao encontrado");
}
return ResponseEntity.status(HttpStatus | .OK).body(userRepository.findByIdentifier(identifier)); |
}
/**
* Metodo/Rota responsavel por atualizar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @param userRecordDto - DTO que contem os dados do usuario para realizar a atualizacao
* @return - Retorna o usuario que foi atualizado
*/
@PutMapping("/user/edit/{identifier}")
public ResponseEntity<Object> updateUser(@PathVariable(value="identifier") String identifier,
@RequestBody @Valid UserRecordDto userRecordDto) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
var userModel = userRepository.findByIdentifier(identifier);
BeanUtils.copyProperties(userRecordDto, userModel);
return ResponseEntity.status(HttpStatus.OK).body(userRepository.save(userModel));
}
/**
* Metodo/Rota responsavel por deletar um usuario cadastrado no banco de dados pelo seu identificador
* @param identifier - Identificador do usuario
* @return - Retorna uma mensagem de sucesso ou erro
*/
@DeleteMapping("/user/delete/{identifier}")
public ResponseEntity<Object> deleteUser(@PathVariable(value="identifier") String identifier) {
UserModel user0 = userRepository.findByIdentifier(identifier);
if(user0 == null) {
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("Usuario nao encontrado.");
}
userRepository.delete(userRepository.findByIdentifier(identifier));
return ResponseEntity.status(HttpStatus.OK).body("Usuario deletado com sucesso.");
}
/**
* Metodo/Rota responsavel por listar todos os usuarios cadastrados no banco de dados pelo seu tipo
* @param type - Tipo do usuario
* @return - Retorna todos os usuarios que possuem o tipo passado como parametro
*/
@GetMapping("/user/listByType/{type}")
public ResponseEntity<List<UserModel>> getUserByType(@PathVariable(value = "type") String type) {
List<UserModel> list = userRepository.findByType(type);
return ResponseEntity.status(HttpStatus.OK).body(list);
}
}
| src/main/java/com/brinquedomania/api/controllers/UserController.java | Francisco-Jean-API-BRINQUEDOMANIA-0013ce2 | [
{
"filename": "src/main/java/com/brinquedomania/api/repositories/UserRepository.java",
"retrieved_chunk": "@Repository\npublic interface UserRepository extends JpaRepository<UserModel, UUID> {\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu identificador\n * @param identifier Identificador do usuario\n * @return - Retorna o usuario que possui o identificador passado como parametro\n */\n UserModel findByIdentifier(String identifier);\n /**Metodo responsavel por buscar um usuario no banco de dados pelo seu id\n * @param id id do usuario\n * @return Retorna o usuario que possui o id passado como parametro",
"score": 56.21973964701806
},
{
"filename": "src/main/java/com/brinquedomania/api/models/UserModel.java",
"retrieved_chunk": " this.birthDate = birthDate;\n }\n /**retorna o identificador do usuario (CPF)\n * @return String identifier\n */\n public String getIdentifier() {\n return identifier;\n }\n /**seta um novo identificador do usuario\n * @param identifier String",
"score": 42.73912938998805
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " @PutMapping(\"/product/edit/{id}\")\n public ResponseEntity<Object> updateUser(@PathVariable(value=\"id\") UUID id,\n @RequestBody @Valid ProductRecordDto productRecordDto) {\n Optional<ProductModel> product0 = productRepository.findById(id);\n if(product0.isEmpty()) {\n return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"Usuario nao encontrado.\");\n }\n var productModel = product0.get();\n BeanUtils.copyProperties(productRecordDto, productModel);\n return ResponseEntity.status(HttpStatus.OK).body(productRepository.save(productModel));",
"score": 38.24801595267368
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"Usuario nao encontrado.\");\n }\n productRepository.delete(product0.get());\n return ResponseEntity.status(HttpStatus.OK).body(\"Usuario deletado com sucesso.\");\n }\n}",
"score": 38.17743810281919
},
{
"filename": "src/main/java/com/brinquedomania/api/controllers/ProductController.java",
"retrieved_chunk": " return ResponseEntity.status(HttpStatus.NOT_FOUND).body(\"usuario nao encontrado.\");\n }\n return ResponseEntity.status(HttpStatus.OK).body(product0.get());\n }\n /**\n * Metodo/Rota responsavel por editar um produto especifico\n * @param id - ID do produto que deseja editar\n * @param productRecordDto - DTO que contem os dados do produto para realizar a edicao\n * @return - Retorna o produto que foi editado\n */",
"score": 36.452956548843396
}
] | java | .OK).body(userRepository.findByIdentifier(identifier)); |
package com.tqqn.particles.managers;
import com.tqqn.particles.Particles;
import com.tqqn.particles.particles.LobbyParticles;
import com.tqqn.particles.tasks.PlayParticleRunnable;
import org.bukkit.entity.Player;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.UUID;
public class ParticleManager {
private final Particles plugin;
private final HashMap<UUID, LobbyParticles> playerLobbyParticles = new HashMap<>();
private final ArrayList<String> customParticles = new ArrayList<>();
private final HashMap<UUID, PlayParticleRunnable> playParticleRunnableHashMap = new HashMap<>();
public ParticleManager(Particles plugin) {
this.plugin = plugin;
}
/**
* Adding Particle names to Array
*/
public void addParticleNamesToArray() {
for (LobbyParticles lobbyParticles : LobbyParticles.values()) {
customParticles.add(lobbyParticles.name());
}
}
/**
* Checks if the Player has a particle.
* @param player Player
* @return true or false
*/
public boolean doesPlayerParticleExist(Player player) {
return playerLobbyParticles.containsKey(player.getUniqueId());
}
/**
* Add a particle to the player.
* @param player Player
* @param lobbyParticles Particle
*/
public void addParticleToPlayer(Player player, LobbyParticles lobbyParticles) {
playerLobbyParticles.remove(player.getUniqueId());
if (playParticleRunnableHashMap.containsKey(player.getUniqueId())) {
playParticleRunnableHashMap.get(player.getUniqueId()).cancel();
playParticleRunnableHashMap.remove(player.getUniqueId());
}
PlayParticleRunnable playParticleRunnable = new PlayParticleRunnable | (plugin.getParticleManager(), lobbyParticles, player); |
playParticleRunnable.runTaskTimerAsynchronously(plugin, 0, 10L);
playParticleRunnableHashMap.put(player.getUniqueId(), playParticleRunnable);
playerLobbyParticles.put(player.getUniqueId(), lobbyParticles);
}
/**
* Remove the equipped particle from the player.
* @param player Player
*/
public void removeParticleFromPlayer(Player player) {
playerLobbyParticles.remove(player.getUniqueId());
if (!playParticleRunnableHashMap.containsKey(player.getUniqueId())) return;
playParticleRunnableHashMap.get(player.getUniqueId()).cancel();
playParticleRunnableHashMap.remove(player.getUniqueId());
}
/**
* Returns the size of LoadedParticles
* @return int size
*/
public int getParticlesMapSize() {
return customParticles.size();
}
}
| Particles/src/main/java/com/tqqn/particles/managers/ParticleManager.java | flytegg-ls-projects-d0e70ee | [
{
"filename": "Particles/src/main/java/com/tqqn/particles/tasks/PlayParticleRunnable.java",
"retrieved_chunk": " public PlayParticleRunnable(ParticleManager particleManager, LobbyParticles lobbyParticles, Player player) {\n this.particleManager = particleManager;\n this.lobbyParticles = lobbyParticles;\n this.player = player;\n }\n /**\n * Runnable that will check/give the particle if the player still has the particle equipped. If not remove/cancel it.\n */\n @Override\n public void run() {",
"score": 47.09194112836055
},
{
"filename": "BlockShuffle/src/Main.java",
"retrieved_chunk": " setRunning(false);\n // display the losers, and stop the game\n } else {\n for (Player player : Bukkit.getOnlinePlayers()) {\n if (playerBlocks.containsKey(player.getUniqueId())) { // if the player has a pending block\n if (player.getLocation().getBlock().getRelative(0, -1, 0).getType() == playerBlocks.get(player.getUniqueId())) {\n // if the player is standing on the block\n broadcast(ChatColor.GREEN + player.getName() + \" has found their block!\");\n playerBlocks.remove(player.getUniqueId());\n // remove the pending block",
"score": 34.81216539728723
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/listeners/PlayerInventoryClickListener.java",
"retrieved_chunk": " plugin.getParticleManager().addParticleToPlayer(player, lobbyParticles);\n player.sendMessage(Color.translate(\"&6You enabled the &c\" + lobbyParticles.getItemName() + \" &6particle.\"));\n } else {\n player.sendMessage(Color.translate(\"&cYou don't have permission to use this command.\"));\n }\n closePlayerInventory(player);\n }\n /**\n * Async Scheduler to close the inventory after one tick.\n * @param player Player",
"score": 32.076310609650356
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/menus/ParticleMenu.java",
"retrieved_chunk": " this.plugin = plugin;\n }\n /**\n * Method to add items to the private inventory variable.\n */\n private void addItemsToInventory() {\n for (LobbyParticles lobbyParticles : LobbyParticles.values()) {\n inventory.setItem(lobbyParticles.getSlot(), createGuiItem(lobbyParticles.getMenuItem(), lobbyParticles.getItemName()));\n loadedParticlesMaterial.put(createGuiItem(lobbyParticles.getMenuItem(),lobbyParticles.getItemName()), lobbyParticles);\n }",
"score": 29.61755944145644
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " private boolean hasCode(Player player) {\n return DiscordVerifier.getDiscordCodes().get(player.getUniqueId()) != null;\n }\n private void sendCodeMessage(Player player) {\n int time = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getRight();\n String code = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getLeft();\n String rawMsg = DiscordVerifierAPI.cc(DiscordVerifier.getInstance().getConfig().getString(\"messages.code-generated\"))\n .replace(\"{code}\", code)\n .replace(\"{time}\", String.valueOf(time));\n ComponentBuilder builder = new ComponentBuilder(rawMsg);",
"score": 27.888018523564877
}
] | java | (plugin.getParticleManager(), lobbyParticles, player); |
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if ( | DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) { |
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
| DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java | flytegg-ls-projects-d0e70ee | [
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " return false;\n }\n final CompletableFuture<String> codeTask = DiscordVerifierAPI.generateCode(DiscordVerifier.getInstance().getConfig().getInt(\"code-length\"));\n codeTask.thenRun(() -> {\n String code = DiscordVerifierAPI.get(codeTask);\n DiscordVerifier.getDiscordCodes().put(player.getUniqueId(), Pair.of(code, DiscordVerifier.getInstance().getConfig().getInt(\"code-timeout\")));\n sendCodeMessage(player);\n });\n return true;\n }",
"score": 51.48978776233724
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " return;\n }\n String code = codeOption.getAsString();\n AtomicBoolean failed = new AtomicBoolean(true);\n // Check the code\n DiscordVerifier.getDiscordCodes().forEach((uuid, data) -> {\n boolean caseSensitive = DiscordVerifier.getInstance().getConfig().getBoolean(\"should-code-be-case-sensitive\");\n if (!caseSensitive) {\n if (data.getLeft().equalsIgnoreCase(code)) {\n setSuccessful(e, code, failed, uuid);",
"score": 28.939301309855093
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " private boolean hasCode(Player player) {\n return DiscordVerifier.getDiscordCodes().get(player.getUniqueId()) != null;\n }\n private void sendCodeMessage(Player player) {\n int time = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getRight();\n String code = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getLeft();\n String rawMsg = DiscordVerifierAPI.cc(DiscordVerifier.getInstance().getConfig().getString(\"messages.code-generated\"))\n .replace(\"{code}\", code)\n .replace(\"{time}\", String.valueOf(time));\n ComponentBuilder builder = new ComponentBuilder(rawMsg);",
"score": 28.596493213611755
},
{
"filename": "CustomItems/src/main/java/com/pzyc0/customitems/GetItemCommand.java",
"retrieved_chunk": " if(args.length != 1) {\n player.sendMessage(ChatColor.RED+\"You need to specify the name of the item! The name can't have any spaces!\");\n return false;\n }\n if(manager.getItem(args[0]) == null){\n player.sendMessage(ChatColor.RED+\"The specified item couldn't be found!\");\n return false;\n }else {\n player.getInventory().addItem(manager.getItem(args[0]));\n player.sendMessage(ChatColor.GREEN+\"Gave you the item!\");",
"score": 27.623995998011893
},
{
"filename": "ChatGames/src/main/java/ls/project/chatgames/Main.java",
"retrieved_chunk": " public void onEnable() {\n saveDefaultConfig();\n games = new ChatGames(this);\n getCommand(\"games\").setExecutor(games);\n Bukkit.getPluginManager().registerEvents(new ChatListener(this), this);\n //Retrieving the number of questions, will use it in future to get the path of new questions and answers\n ConfigurationSection questionSection = getConfig().getConfigurationSection(\"Questions\");\n for (String questionNumber : questionSection.getKeys(false)) {\n ConfigurationSection question = questionSection.getConfigurationSection(questionNumber);\n keys.add(question);",
"score": 26.036178140181246
}
] | java | DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) { |
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if (DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
| DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database"); |
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
| DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java | flytegg-ls-projects-d0e70ee | [
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordVerifier.java",
"retrieved_chunk": " Class.forName(\"org.sqlite.JDBC\");\n dbConnection = DriverManager.getConnection(\"jdbc:sqlite:\" + instance.getDataFolder().getAbsolutePath() + \"/database.db\");\n }\n catch (Exception e) {\n instance.getLogger().severe(\"Failed to connect to database\");\n e.printStackTrace();\n }\n }\n return dbConnection;\n }",
"score": 43.87463432930526
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordVerifier.java",
"retrieved_chunk": " PRIMARY KEY(ID)\n )\n \"\"\");\n }\n catch (Exception e) {\n e.printStackTrace();\n }\n }\n public static DiscordVerifier getInstance() {\n return instance;",
"score": 26.353426345574213
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n }\n private void setSuccessful(SlashCommandInteractionEvent e, String code, AtomicBoolean failed, UUID uuid) {\n e.getHook().editOriginal(DiscordVerifier.getInstance().getConfig().getString(\"messages.verification-successful-discord\")).queue();\n DiscordVerifier.getDiscordCodes().remove(uuid);\n final Player player = Bukkit.getPlayer(uuid);\n failed.set(false);\n attemptSendMCMessage(uuid);\n Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {Bukkit.getPluginManager().callEvent(new AsyncPlayerVerifyEvent(uuid, e.getId(), code));});\n Role given = Objects.requireNonNull(e.getGuild()).getRoleById(DiscordVerifier.getInstance().getConfig().getString(\"discord.role-given\"));",
"score": 26.322492607630448
},
{
"filename": "CustomItems/src/main/java/com/pzyc0/customitems/ConfigManager.java",
"retrieved_chunk": " try {\n mainInstance.getYmlDataFile().save(mainInstance.getDatafile());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n public String[] getItemsAsArray(){\n return customItems.keySet().toArray(new String[0]);\n }\n}",
"score": 21.80889059164506
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n return;\n }\n if (data.getLeft().equals(code)) {\n setSuccessful(e, code, failed, uuid);\n }\n });\n if (failed.get()) {\n e.getHook().editOriginal(DiscordVerifier.getInstance().getConfig().getString(\"messages.code-invalid\")).queue();\n return;",
"score": 21.338729509583565
}
] | java | DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database"); |
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
| if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) { |
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if (DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
| DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java | flytegg-ls-projects-d0e70ee | [
{
"filename": "ProximityChat/src/main/java/cc/stormlabs/proximitychat/commands/GlobalChatCommand.java",
"retrieved_chunk": " Player player = (Player) sender;\n if(args.length < 1) {\n sender.sendMessage(CustomColor.translate(\"&7Invalid usage.. Try &e/gc <message>&7.\"));\n return false;\n }\n StringBuilder builder = new StringBuilder();\n for (String word : args) {\n builder.append(word).append(\" \");\n }\n Bukkit.broadcastMessage(CustomColor.translate(\"&8[&5GC&8] &a\" + player.getName() + \" &8→ &7\" + builder.toString().trim()));",
"score": 39.46974426563139
},
{
"filename": "InvSee/src/main/java/com/panav/Invsee/InvSee.java",
"retrieved_chunk": " Inventory inv = Bukkit.createInventory(null, 54, ChatColor.RED + target.getName() + \"'s Inventory\");\n ItemStack[] armour = target.getInventory().getArmorContents();\n ItemStack[] invContent = target.getInventory().getStorageContents();\n List<ItemStack> contents = new ArrayList<>(Arrays.asList(invContent));\n for (int i = 0; i < 9; i++){\n contents.add(new ItemStack(Material.BLACK_STAINED_GLASS_PANE));\n }\n Collections.addAll(contents, armour);\n ItemStack[] cont = contents.toArray(new ItemStack[0]);\n inv.setContents(cont);",
"score": 36.487757155271375
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " return false;\n }\n final CompletableFuture<String> codeTask = DiscordVerifierAPI.generateCode(DiscordVerifier.getInstance().getConfig().getInt(\"code-length\"));\n codeTask.thenRun(() -> {\n String code = DiscordVerifierAPI.get(codeTask);\n DiscordVerifier.getDiscordCodes().put(player.getUniqueId(), Pair.of(code, DiscordVerifier.getInstance().getConfig().getInt(\"code-timeout\")));\n sendCodeMessage(player);\n });\n return true;\n }",
"score": 36.285595804316564
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " private boolean hasCode(Player player) {\n return DiscordVerifier.getDiscordCodes().get(player.getUniqueId()) != null;\n }\n private void sendCodeMessage(Player player) {\n int time = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getRight();\n String code = DiscordVerifier.getDiscordCodes().get(player.getUniqueId()).getLeft();\n String rawMsg = DiscordVerifierAPI.cc(DiscordVerifier.getInstance().getConfig().getString(\"messages.code-generated\"))\n .replace(\"{code}\", code)\n .replace(\"{time}\", String.valueOf(time));\n ComponentBuilder builder = new ComponentBuilder(rawMsg);",
"score": 21.898097368634996
},
{
"filename": "WelcomeManager/src/main/java/ls/project/welcome/JoinEvent.java",
"retrieved_chunk": " //special message for first join\n public void firstJoin(Player player){\n if (!main.getConfig().getBoolean(\"FirstJoin.Toggle\")) return; //checking for the toggle\n if (player.hasPlayedBefore()) return;\n String message = main.getConfig().getString(\"FirstJoin.Message\"); //getting the message\n if (message == null) return; //message null check\n String HexColour = message.substring(0, 7); //getting hex colour code from message, hex colours always take 7 characters including the #\n String message1 = message.substring(7);\n player.sendMessage(ChatColor.of(HexColour) + message1);\n }",
"score": 17.262165401196683
}
] | java | if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) { |
package xyz.alonefield.discordverifier.api;
import org.bukkit.Bukkit;
import org.jetbrains.annotations.NotNull;
import org.bukkit.ChatColor;
import xyz.alonefield.discordverifier.DiscordVerifier;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
/**
* The API for DiscordVerifier
*/
public final class DiscordVerifierAPI {
private DiscordVerifierAPI() {} // Prevents instantiation
private static final String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
private static final CompletableFuture<Void> VOID_FUTURE = CompletableFuture.completedFuture(null);
/**
* Colorizes a string using the {@link ChatColor#translateAlternateColorCodes(char, String)} method
* @param message The message to colorize
* @return The colorized message
*/
public static @NotNull String cc(@NotNull String message) {
return ChatColor.translateAlternateColorCodes('&', message);
}
private static @NotNull CompletableFuture<String> generateString(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
private static @NotNull CompletableFuture<String> generateNumber(int length) {
CompletableFuture<String> future = new CompletableFuture<>();
CompletableFuture.runAsync(() -> {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++) {
sb.append(characters.charAt((int) (Math.random() * characters.length())));
}
if (DiscordVerifier.getDiscordCodes().containsValue(sb.toString())) {
generateNumber(length).thenAccept(future::complete);
return;
}
future.complete(sb.toString());
});
return future;
}
/**
* Generates a future that will complete with a random string of the specified length
* @param length The length of the code
* @return The generated code as a future
*/
public static @NotNull CompletableFuture<String> generateCode(int length) {
if (DiscordVerifier.getInstance().getConfig().getBoolean("code-numbers-only")) {
return generateNumber(length);
}
return generateString(length);
}
/**
* Saves a UUID and a discord ID to the database. This method is asynchronous
* @param uuid The UUID of the player
* @param discordId The discord ID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> savePlayer(final @NotNull UUID uuid, @NotNull String discordId) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
| Connection connection = DiscordVerifier.getDatabaseConnection(); |
PreparedStatement statement = connection.prepareStatement("INSERT INTO discord_verifier (uuid, discord_id) VALUES (?, ?) ON DUPLICATE KEY UPDATE discord_id = ?");
statement.setString(1, uuid.toString());
statement.setString(2, discordId);
statement.setString(3, discordId);
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to save player " + uuid + " to database");
}
});
return future;
}
/**
* Checks if a player is verified. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is true if the player is verified, false otherwise
*/
public static CompletableFuture<Boolean> isPlayerVerified(final @NotNull UUID uuid) {
CompletableFuture<Boolean> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
future.complete(statement.executeQuery().next());
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to check if player " + uuid + " is verified");
}
});
return future;
}
/**
* Removes a player from the database. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done
*/
public static CompletableFuture<Void> removePlayer(final @NotNull UUID uuid) {
CompletableFuture<Void> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("DELETE FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
statement.execute();
future.complete(null);
}
catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to remove player " + uuid + " from database");
}
});
return future;
}
/**
* Gets the discord ID of a player. This method is asynchronous
* @param uuid The UUID of the player
* @return A {@link CompletableFuture} that completes when the operation is done. The result is the discord ID of the player, or null if the player is not verified
*/
public static CompletableFuture<String> getDiscordId(final @NotNull UUID uuid) {
CompletableFuture<String> future = new CompletableFuture<>();
Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {
try {
Connection connection = DiscordVerifier.getDatabaseConnection();
PreparedStatement statement = connection.prepareStatement("SELECT * FROM discord_verifier WHERE uuid = ?");
statement.setString(1, uuid.toString());
if (statement.executeQuery().next()) {
future.complete(statement.getResultSet().getString("discord_id"));
} else {
future.complete(null);
}
} catch (SQLException e) {
e.printStackTrace();
future.completeExceptionally(e);
DiscordVerifier.getInstance().getLogger().severe("Failed to get discord ID of player " + uuid);
}
});
return future;
}
public static <T> T get(@NotNull CompletableFuture<T> future) {
try {
return future.get();
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
| DiscordVerification/src/main/java/xyz/alonefield/discordverifier/api/DiscordVerifierAPI.java | flytegg-ls-projects-d0e70ee | [
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n }\n private void setSuccessful(SlashCommandInteractionEvent e, String code, AtomicBoolean failed, UUID uuid) {\n e.getHook().editOriginal(DiscordVerifier.getInstance().getConfig().getString(\"messages.verification-successful-discord\")).queue();\n DiscordVerifier.getDiscordCodes().remove(uuid);\n final Player player = Bukkit.getPlayer(uuid);\n failed.set(false);\n attemptSendMCMessage(uuid);\n Bukkit.getScheduler().runTaskAsynchronously(DiscordVerifier.getInstance(), () -> {Bukkit.getPluginManager().callEvent(new AsyncPlayerVerifyEvent(uuid, e.getId(), code));});\n Role given = Objects.requireNonNull(e.getGuild()).getRoleById(DiscordVerifier.getInstance().getConfig().getString(\"discord.role-given\"));",
"score": 46.510989410550955
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/MinecraftVerifyCommand.java",
"retrieved_chunk": " return false;\n }\n final CompletableFuture<String> codeTask = DiscordVerifierAPI.generateCode(DiscordVerifier.getInstance().getConfig().getInt(\"code-length\"));\n codeTask.thenRun(() -> {\n String code = DiscordVerifierAPI.get(codeTask);\n DiscordVerifier.getDiscordCodes().put(player.getUniqueId(), Pair.of(code, DiscordVerifier.getInstance().getConfig().getInt(\"code-timeout\")));\n sendCodeMessage(player);\n });\n return true;\n }",
"score": 38.55677306924576
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordEvents.java",
"retrieved_chunk": " }\n List<String> commands = DiscordVerifier.getInstance().getConfig().getStringList(\"Minecraft.Command\");\n Bukkit.getScheduler().runTask(DiscordVerifier.getInstance(), () -> {\n for (String cmd : commands) {\n Bukkit.dispatchCommand(Bukkit.getConsoleSender(), cmd.replace(\"{player}\", name));\n }\n });\n //Bukkit.dispatchCommand(Bukkit.getConsoleSender(), command.replace(\"{player}\", name));\n }\n private void attemptSendMCMessage(@NotNull UUID uuid) {",
"score": 35.916755733000805
},
{
"filename": "FreezeWand/src/profile/ProfileHandler.java",
"retrieved_chunk": " public ProfileHandler() {\n }\n // Register a new profile into the handler\n public void register(@NotNull final UUID uniqueId, @NotNull final String name) {\n profileMap.put(uniqueId, new Profile(uniqueId, name));\n }\n // Find a potential profile based off of player unique id\n @NotNull\n public Optional<Profile> findByUniqueId(@NotNull final UUID uniqueId) {\n return Optional.of(profileMap.get(uniqueId));",
"score": 35.8946981929111
},
{
"filename": "DiscordVerification/src/main/java/xyz/alonefield/discordverifier/DiscordVerifier.java",
"retrieved_chunk": " }\n public static Map<UUID, Pair<String, Integer>> getDiscordCodes() {\n return discordCodes;\n }\n public static JDA getDiscordClient() {\n return discordClient;\n }\n public static Connection getDatabaseConnection() {\n if (dbConnection == null) {\n try {",
"score": 30.93127130701873
}
] | java | Connection connection = DiscordVerifier.getDatabaseConnection(); |
package com.tqqn.particles.tasks;
import com.tqqn.particles.managers.ParticleManager;
import com.tqqn.particles.particles.LobbyParticles;
import org.bukkit.Location;
import org.bukkit.entity.Player;
import org.bukkit.scheduler.BukkitRunnable;
public class PlayParticleRunnable extends BukkitRunnable {
private final LobbyParticles lobbyParticles;
private final Player player;
private final ParticleManager particleManager;
public PlayParticleRunnable(ParticleManager particleManager, LobbyParticles lobbyParticles, Player player) {
this.particleManager = particleManager;
this.lobbyParticles = lobbyParticles;
this.player = player;
}
/**
* Runnable that will check/give the particle if the player still has the particle equipped. If not remove/cancel it.
*/
@Override
public void run() {
if (!(particleManager.doesPlayerParticleExist(player))) {
cancel();
}
Location playerLocation = new Location(player.getWorld(), player.getLocation().getX(), player.getLocation().getY()+1.5, player.getLocation().getZ());
player.spawnParticle( | lobbyParticles.getParticle(), playerLocation, lobbyParticles.getCount()); |
}
}
| Particles/src/main/java/com/tqqn/particles/tasks/PlayParticleRunnable.java | flytegg-ls-projects-d0e70ee | [
{
"filename": "Particles/src/main/java/com/tqqn/particles/listeners/PlayerInventoryClickListener.java",
"retrieved_chunk": " }\n return;\n }\n //Check if the clicked item is in the loaded MaterialMap for the particles.\n if (!plugin.getParticleMenu().doesMaterialExistInMap(event.getCurrentItem())) return;\n //Remove the particle from a player if the player has one equipped.\n plugin.getParticleManager().removeParticleFromPlayer(player);\n LobbyParticles lobbyParticles = plugin.getParticleMenu().getLobbyParticlesFromMap(event.getCurrentItem());\n //If player has permission for that specific particle, give the particle.\n if (player.hasPermission(lobbyParticles.getPermission())) {",
"score": 43.94684719206771
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/managers/ParticleManager.java",
"retrieved_chunk": " playParticleRunnableHashMap.get(player.getUniqueId()).cancel();\n playParticleRunnableHashMap.remove(player.getUniqueId());\n }\n PlayParticleRunnable playParticleRunnable = new PlayParticleRunnable(plugin.getParticleManager(), lobbyParticles, player);\n playParticleRunnable.runTaskTimerAsynchronously(plugin, 0, 10L);\n playParticleRunnableHashMap.put(player.getUniqueId(), playParticleRunnable);\n playerLobbyParticles.put(player.getUniqueId(), lobbyParticles);\n }\n /**\n * Remove the equipped particle from the player.",
"score": 41.74595395097245
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/managers/ParticleManager.java",
"retrieved_chunk": " for (LobbyParticles lobbyParticles : LobbyParticles.values()) {\n customParticles.add(lobbyParticles.name());\n }\n }\n /**\n * Checks if the Player has a particle.\n * @param player Player\n * @return true or false\n */\n public boolean doesPlayerParticleExist(Player player) {",
"score": 36.043056414638876
},
{
"filename": "FreezeWand/src/FreezeWand.java",
"retrieved_chunk": " }\n @EventHandler\n public void onPlayerMove(@NotNull final PlayerMoveEvent e) {\n // Null check for the to location\n if (e.getTo() == null) {\n return;\n }\n // If the x, y and z coordinates are the same, return\n if (e.getFrom().getX() == e.getTo().getX() && e.getFrom().getY() == e.getTo().getY() && e.getFrom().getZ() == e.getTo().getZ()) {\n return;",
"score": 32.273875059169896
},
{
"filename": "Particles/src/main/java/com/tqqn/particles/managers/ParticleManager.java",
"retrieved_chunk": " return playerLobbyParticles.containsKey(player.getUniqueId());\n }\n /**\n * Add a particle to the player.\n * @param player Player\n * @param lobbyParticles Particle\n */\n public void addParticleToPlayer(Player player, LobbyParticles lobbyParticles) {\n playerLobbyParticles.remove(player.getUniqueId());\n if (playParticleRunnableHashMap.containsKey(player.getUniqueId())) {",
"score": 32.14540322587714
}
] | java | lobbyParticles.getParticle(), playerLocation, lobbyParticles.getCount()); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.