-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFecha.cpp
105 lines (86 loc) · 3 KB
/
Fecha.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#pragma warning(disable : 4996) //_CRT_SECURE_NO_WARNINGS
#include "Fecha.h"
#include "Helper.h"
#include <ctime>
#include <iostream>
#include <chrono>
int Fecha::getDia() {
return _dia;
}
int Fecha::getMes() {
return _mes;
}
int Fecha::getAnio() {
return _anio;
}
void Fecha::setDia(int dia) {
_dia = dia;
}
void Fecha::setMes(int mes) {
_mes = mes;
}
void Fecha::setAnio(int anio) {
_anio = anio;
}
Fecha::Fecha() {
}
Fecha::Fecha(int dia, int mes, int anio) {
setDia(dia);
setMes(mes);
setAnio(anio);
_diaSemana = -1;
}
std::string Fecha::toString() {
std::string valorADevolver;
valorADevolver = std::to_string(_dia) + "/" + std::to_string(_mes) + "/" + std::to_string(_anio);
return valorADevolver;
}
std::string Fecha::getNombreDia() {
std::string nombres[7] = { "Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado" };
if (_diaSemana >= 0 && _diaSemana <= 6) {
return nombres[_diaSemana];
}
return "";
}
std::string Fecha::hoy() {
Helper helper;
Archivo<Configuracion> archivoConfiguracion("configuracion.dat");
Response<Configuracion> configuracion;
configuracion = archivoConfiguracion.obtenerConfiguracion();
int configuracionFecha = configuracion.getData().getFormatoFecha();
std::chrono::system_clock::time_point now = std::chrono::system_clock::now();
// Convierte el punto de tiempo actual a un objeto de tiempo local
std::time_t currentTime = std::chrono::system_clock::to_time_t(now);
// Convierte el tiempo local a una estructura tm para extraer la fecha
std::tm* localTime = std::localtime(¤tTime);
// Obtén los componentes de la fecha
_anio = localTime->tm_year + 1900; // Añade 1900 al año
_mes = localTime->tm_mon + 1; // Los meses comienzan desde 0
_dia = localTime->tm_mday; // Día del mes
// Imprime la fecha actual
string fecha = helper.conversorFormatoFecha(configuracionFecha, *this);
return fecha;
}
Fecha Fecha::now() {
Archivo<Configuracion> archivoConfiguracion("configuracion.dat");
Response<Configuracion> configuracion;
configuracion = archivoConfiguracion.obtenerConfiguracion();
int configuracionFecha = configuracion.getData().getFormatoFecha();
std::chrono::system_clock::time_point now = std::chrono::system_clock::now();
// Convierte el punto de tiempo actual a un objeto de tiempo local
std::time_t currentTime = std::chrono::system_clock::to_time_t(now);
// Convierte el tiempo local a una estructura tm para extraer la fecha
std::tm* localTime = std::localtime(¤tTime);
// Obtén los componentes de la fecha
_anio = localTime->tm_year + 1900; // Añade 1900 al año
_mes = localTime->tm_mon + 1; // Los meses comienzan desde 0
_dia = localTime->tm_mday; // Día del mes
Fecha fecha(_dia, _mes, _anio);
return fecha;
}
void Fecha::setFormatoFecha(int formato) {
_formatoFecha = formato;
}
int Fecha::getFormatoFecha() {
return _formatoFecha;
}