hora.cpp

来自「multiplataform real time Linux monitor」· C++ 代码 · 共 101 行

CPP
101
字号
/* LiMon-Server|  Copyright (C) 2006 Marcelo Busico||  Author:  Marcelo Busico    marcelobusico@gmail.com||  This program is free software which I release under the GNU General Public|  License. You may redistribute and/or modify this program under the terms|  of that license as published by the Free Software Foundation; either|  version 2 of the License, or (at your option) any later version.||  This program is distributed in the hope that it will be useful,|  but WITHOUT ANY WARRANTY; without even the implied warranty of|  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the|  GNU General Public License for more details.  Version 2 is in the|  LICENSE.txt file in the top level directory of this distribution.| |  To get a copy of the GNU General Puplic License, write to the Free Software|  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*//* Implementacion de la libreria que lee la hora del sistema */#include "hora.h"#include "rutas.h"#include <stdio.h>#include <string.h>#include <stdlib.h>//ConstructorHoraSistema::HoraSistema(){     FILE *f; //Puntero a archivo    char ejecutable[100]; //Para ejecutar el Script    char buf[1024]; //Resultado del Script    //Ruta del script    strcpy(ejecutable,RUTA_SCRIPTS);    //Nombre del script    strcat(ejecutable,"hora.sh");    //Ejecuta el script    system(ejecutable);    // Lee la hora del sistema    //Sale si no puede abrir el archivo    if ((f = fopen("/tmp/limon-hora", "r")) == NULL)    {		strcpy(cadenaHora,"");	return;    }    if(fgets(buf, sizeof(buf), f)!=NULL)	strcpy(cadenaHora,buf);	    else	strcpy(cadenaHora,"");    //Cierra el archivo    fclose(f);}//Devuelve cuantas Horas transcurrieron en el dia actualint HoraSistema::getHoras(){    int aux=0; //Almacena el retorno de la funcion    if(strlen(cadenaHora)>0)    {	//Encuentra en la cadena del archivo el valor buscado a devolver	sscanf(cadenaHora,"%d",&aux);    }    //Retorna valor    return aux;}//Devuelve cuantos Minutos transcurrieron de la hora actualint HoraSistema::getMinutos(){    int aux=0; //Almacena el retorno de la funcion    if(strlen(cadenaHora)>0)    {	//Encuentra en la cadena del archivo el valor buscado a devolver	sscanf(cadenaHora,"%*s %d",&aux);    }    //Retorna valor    return aux;}//Devuelve cuantos Segundos transcurrieron del minuto actualint HoraSistema::getSegundos(){    int aux=0; //Almacena el retorno de la funcion    if(strlen(cadenaHora)>0)    {	//Encuentra en la cadena del archivo el valor buscado a devolver	sscanf(cadenaHora,"%*s %*s %d",&aux);    }    //Retorna valor    return aux;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?