Ejemplo n.º 1
0
        public static TdrError.ErrorType str2TdrDate(out UInt32 date, string strDate)
        {
            TdrError.ErrorType ret = TdrError.ErrorType.TDR_NO_ERROR;
            DateTime           dt;
            TdrDate            tdrDate = new TdrDate();

            if (DateTime.TryParse(strDate, out dt))
            {
                tdrDate.nYear = (short)dt.Year;
                tdrDate.bMon  = (byte)dt.Month;
                tdrDate.bDay  = (byte)dt.Day;

                tdrDate.toDate(out date);
            }
            else
            {
#if (DEBUG)
                StackTrace st = new StackTrace(true);
                for (int i = 0; i < st.FrameCount; i++)
                {
                    if (null != st.GetFrame(i).GetFileName())
                    {
                        Console.WriteLine(st.GetFrame(i).ToString());
                    }
                }
#endif
                date = 0;
                ret  = TdrError.ErrorType.TDR_ERR_INVALID_TDRDATE_VALUE;
            }

            return(ret);
        }
Ejemplo n.º 2
0
        public static TdrError.ErrorType tdrDate2Str(ref TdrVisualBuf buf, UInt32 date)
        {
            TdrError.ErrorType ret     = TdrError.ErrorType.TDR_NO_ERROR;
            TdrDate            tdrDate = new TdrDate();

            ret = tdrDate.parse(date);
            if (TdrError.ErrorType.TDR_NO_ERROR == ret)
            {
                ret = buf.sprintf("{0:d4}-{1:d2}-{2:d2}", tdrDate.nYear, tdrDate.bMon, tdrDate.bDay);
            }
            else
            {
#if (DEBUG)
                StackTrace st = new StackTrace(true);
                for (int i = 0; i < st.FrameCount; i++)
                {
                    if (null != st.GetFrame(i).GetFileName())
                    {
                        Console.WriteLine(st.GetFrame(i).ToString());
                    }
                }
#endif
                ret = TdrError.ErrorType.TDR_ERR_INVALID_TDRDATE_VALUE;
            }

            return(ret);
        }
Ejemplo n.º 3
0
        public static TdrError.ErrorType tdrDate2Str(ref TdrVisualBuf buf, uint date)
        {
            TdrDate date2 = new TdrDate();

            if (date2.parse(date) == TdrError.ErrorType.TDR_NO_ERROR)
            {
                object[] args = new object[] { date2.nYear, date2.bMon, date2.bDay };
                return(buf.sprintf("{0:d4}-{1:d2}-{2:d2}", args));
            }
            return(TdrError.ErrorType.TDR_ERR_INVALID_TDRDATE_VALUE);
        }
Ejemplo n.º 4
0
        public static TdrError.ErrorType str2TdrDate(out uint date, string strDate)
        {
            DateTime time;

            TdrError.ErrorType type  = TdrError.ErrorType.TDR_NO_ERROR;
            TdrDate            date2 = new TdrDate();

            if (DateTime.TryParse(strDate, out time))
            {
                date2.nYear = (short)time.Year;
                date2.bMon  = (byte)time.Month;
                date2.bDay  = (byte)time.Day;
                date2.toDate(out date);
                return(type);
            }
            date = 0;
            return(TdrError.ErrorType.TDR_ERR_INVALID_TDRDATE_VALUE);
        }
Ejemplo n.º 5
0
        public static TdrError.ErrorType tdrDate2Str(ref TdrVisualBuf buf, uint date)
        {
            TdrDate tdrDate = new TdrDate();

            TdrError.ErrorType result;
            if (tdrDate.parse(date) == TdrError.ErrorType.TDR_NO_ERROR)
            {
                result = buf.sprintf("{0:d4}-{1:d2}-{2:d2}", new object[]
                {
                    tdrDate.nYear,
                    tdrDate.bMon,
                    tdrDate.bDay
                });
            }
            else
            {
                result = TdrError.ErrorType.TDR_ERR_INVALID_TDRDATE_VALUE;
            }
            return(result);
        }
Ejemplo n.º 6
0
        public static TdrError.ErrorType str2TdrDate(out uint date, string strDate)
        {
            TdrError.ErrorType result  = TdrError.ErrorType.TDR_NO_ERROR;
            TdrDate            tdrDate = new TdrDate();
            DateTime           dateTime;

            if (DateTime.TryParse(strDate, ref dateTime))
            {
                tdrDate.nYear = (short)dateTime.get_Year();
                tdrDate.bMon  = (byte)dateTime.get_Month();
                tdrDate.bDay  = (byte)dateTime.get_Day();
                tdrDate.toDate(out date);
            }
            else
            {
                date   = 0u;
                result = TdrError.ErrorType.TDR_ERR_INVALID_TDRDATE_VALUE;
            }
            return(result);
        }
Ejemplo n.º 7
0
 public TdrDateTime(ulong datetime)
 {
     tdrDate = new TdrDate((uint)(datetime & 0xFFFFFFFF));
     tdrTime = new TdrTime((uint)((datetime >> 32) & 0xFFFFFFFF));
 }
Ejemplo n.º 8
0
 public TdrDateTime()
 {
     tdrDate = new TdrDate();
     tdrTime = new TdrTime();
 }
Ejemplo n.º 9
0
 public TdrDateTime(ulong datetime)
 {
     this.tdrDate = new TdrDate((uint)(datetime & (ulong)-1));
     this.tdrTime = new TdrTime((uint)(datetime >> 32 & (ulong)-1));
 }
Ejemplo n.º 10
0
 public TdrDateTime()
 {
     this.tdrDate = new TdrDate();
     this.tdrTime = new TdrTime();
 }
Ejemplo n.º 11
0
 public TdrDateTime(ulong datetime)
 {
     this.tdrDate = new TdrDate((uint)(datetime & 0xffffffffL));
     this.tdrTime = new TdrTime((uint)((datetime >> 0x20) & 0xffffffffL));
 }