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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) INRIA - Allan CORNET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
*
*/
/*--------------------------------------------------------------------------*/
#include <time.h>
#include <locale.h>
#include <stdio.h>
#include <string.h>
#ifdef _MSC_VER
#include <sys/types.h>
#include <sys/timeb.h>
#else
#include <sys/time.h>
#endif
#include "gw_time.h"
#include "stack-c.h"
#include "MALLOC.h"
#include "getdate.h"
#include "transposeMatrix.h"
#include "Scierror.h"
#include "localization.h"
/*--------------------------------------------------------------------------*/
int sci_getdate(char *fname,unsigned long fname_len)
{
static int l1,n1,m1;
int i=0;
int *DATEMATRIX=NULL;
Rhs=Max(Rhs,0);
CheckRhs(0,1) ;
CheckLhs(0,1) ;
DATEMATRIX=(int *)MALLOC( (10)*sizeof(int) );
for (i=0;i<10;i++) DATEMATRIX[i]=0;
if (Rhs == 0)
{
time_t dt;
int ierr=0;
C2F(scigetdate)(&dt,&ierr);
if (ierr)
{
Scierror(999,_("%s: An error occurred: %s\n"),fname,strerror(ierr));
return 0;
}
else
{
C2F(convertdate)(&dt,DATEMATRIX);
m1=1;
n1=10;
CreateVarFromPtr(Rhs+1,MATRIX_OF_INTEGER_DATATYPE, &m1, &n1 ,&DATEMATRIX);
}
}
else /* Rhs == 1 */
{
if (GetType(1) == sci_strings)
{
char *Param1=NULL;
GetRhsVar(1,STRING_DATATYPE,&m1,&n1,&l1);
Param1=cstk(l1);
if (strcmp("s",Param1)==0)
{
time_t dt;
int ierr=0;
C2F(scigetdate)(&dt,&ierr);
DATEMATRIX[0]=(int)dt;
m1=1;
n1=1;
CreateVarFromPtr(Rhs+1,MATRIX_OF_INTEGER_DATATYPE, &m1, &n1 ,&DATEMATRIX);
}
else
{
Scierror(999,_("%s: Wrong type for input argument #%d: Integer or '%s' expected.\n"),fname,1,"s");
return 0;
}
}
else
{
if ( GetType(1) == sci_matrix )
{
int li=0;
int k=0;
int l=0;
double *param=NULL;
int *DATEARRAY=NULL;
int *DATEARRAYtmp=NULL;
GetRhsVar(1,MATRIX_OF_DOUBLE_DATATYPE,&m1,&n1,&l1);
param=stk(l1);
l=10*m1*n1;
DATEARRAY=(int *)MALLOC( (l)*sizeof(int) );
for (k=0;k<l;k++) DATEARRAY[k]=0;
for(li=0;li<m1*n1;li++)
{
int j=0;
time_t paramtemp=(int)param[li];
double millisecondes=param[li]-paramtemp;
C2F(convertdate)(¶mtemp,DATEMATRIX);
for (j=0;j<10;j++)
{
DATEARRAY[(li*10)+j]=DATEMATRIX[j];
}
if (millisecondes>0)
{
if (millisecondes>0.999) millisecondes=0.999;
DATEARRAY[(li*10)+9]=(int)(millisecondes*1000);
}
}
m1=l/10;
n1=10;
DATEARRAYtmp=DATEARRAY;
DATEARRAY = transposeMatrixInt(n1,m1,DATEARRAY);
CreateVarFromPtr(Rhs+1,MATRIX_OF_INTEGER_DATATYPE, &m1, &n1 ,&DATEARRAY);
LhsVar(1)=Rhs+1;
C2F(putlhsvar)();
if (DATEMATRIX) {FREE(DATEMATRIX);DATEMATRIX=NULL;}
if (DATEARRAY) {FREE(DATEARRAY);DATEARRAY=NULL;}
if (DATEARRAYtmp) {FREE(DATEARRAYtmp);DATEARRAYtmp=NULL;}
return 0;
}
else
{
Scierror(999,_("%s: Wrong type for input argument #%d: Integer or '%s' expected.\n"),fname,1,"s");
return 0;
}
}
}
LhsVar(1)=Rhs+1;
C2F(putlhsvar)();
if (DATEMATRIX) {FREE(DATEMATRIX);DATEMATRIX=NULL;}
return 0;
}
/*--------------------------------------------------------------------------*/
|