patched incorrect handling of struct tm in XmlRpc::XmlRpcValue

This commit is contained in:
fgerlits 2004-12-13 21:45:41 +00:00
parent b9495ba094
commit 12e3b40235
11 changed files with 132 additions and 42 deletions

View file

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $ Author : $Author: fgerlits $
Version : $Revision: 1.4 $ Version : $Revision: 1.5 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/include/LiveSupport/Core/TimeConversion.h,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/include/LiveSupport/Core/TimeConversion.h,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -70,8 +70,8 @@ using namespace LiveSupport;
/** /**
* A helper object holding static time conversion functions. * A helper object holding static time conversion functions.
* *
* @author $Author: maroy $ * @author $Author: fgerlits $
* @version $Revision: 1.4 $ * @version $Revision: 1.5 $
*/ */
class TimeConversion class TimeConversion
{ {
@ -111,6 +111,17 @@ class TimeConversion
tmToPtime(const struct tm *time) tmToPtime(const struct tm *time)
throw (std::out_of_range); throw (std::out_of_range);
/**
* Convert a boost::posix_time::ptime to a struct tm,
* with second precision.
*
* @param time the boost::posix_time::ptime to convert.
* @return a struct tm, holding the same time.
*/
static void
ptimeToTm(Ptr<ptime>::Ref convertFrom, struct tm & convertTo)
throw ();
/** /**
* Return the current time, with microsecond precision. * Return the current time, with microsecond precision.
* *

View file

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $ Author : $Author: fgerlits $
Version : $Revision: 1.5 $ Version : $Revision: 1.6 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/TimeConversion.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/TimeConversion.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -95,6 +95,25 @@ TimeConversion :: tmToPtime(const struct tm *time)
} }
/*------------------------------------------------------------------------------
* Convert a boost::ptime to a struct tm
*----------------------------------------------------------------------------*/
void
TimeConversion :: ptimeToTm(Ptr<ptime>::Ref convertFrom, struct tm & convertTo)
throw ()
{
date date = convertFrom->date();
time_duration time = convertFrom->time_of_day();
convertTo.tm_year = date.year() - 1900;
convertTo.tm_mon = date.month() - 1;
convertTo.tm_mday = date.day();
convertTo.tm_hour = time.hours();
convertTo.tm_min = time.minutes();
convertTo.tm_sec = time.seconds();
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Return the current time. * Return the current time.
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/

View file

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $ Author : $Author: fgerlits $
Version : $Revision: 1.3 $ Version : $Revision: 1.4 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/TimeConversionTest.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/TimeConversionTest.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -143,6 +143,26 @@ TimeConversionTest :: tmToPtimeTest(void)
} }
/*------------------------------------------------------------------------------
* Test the ptimeToTm function
*----------------------------------------------------------------------------*/
void
TimeConversionTest :: ptimeToTmTest(void)
throw (CPPUNIT_NS::Exception)
{
struct tm tm;
Ptr<ptime>::Ref ptime(new ptime(time_from_string("1770-12-17 10:20:30")));
TimeConversion::ptimeToTm(ptime, tm);
CPPUNIT_ASSERT(tm.tm_year + 1900 == 1770);
CPPUNIT_ASSERT(tm.tm_mon + 1 == 12);
CPPUNIT_ASSERT(tm.tm_mday == 17);
CPPUNIT_ASSERT(tm.tm_hour == 10);
CPPUNIT_ASSERT(tm.tm_min == 20);
CPPUNIT_ASSERT(tm.tm_sec == 30);
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Test the now function * Test the now function
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/

View file

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $ Author : $Author: fgerlits $
Version : $Revision: 1.3 $ Version : $Revision: 1.4 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/TimeConversionTest.h,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/TimeConversionTest.h,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -57,8 +57,8 @@ namespace Core {
/** /**
* Unit test for the TimeConversion class. * Unit test for the TimeConversion class.
* *
* @author $Author: maroy $ * @author $Author: fgerlits $
* @version $Revision: 1.3 $ * @version $Revision: 1.4 $
* @see TimeConversion * @see TimeConversion
*/ */
class TimeConversionTest : public CPPUNIT_NS::TestFixture class TimeConversionTest : public CPPUNIT_NS::TestFixture
@ -66,6 +66,7 @@ class TimeConversionTest : public CPPUNIT_NS::TestFixture
CPPUNIT_TEST_SUITE(TimeConversionTest); CPPUNIT_TEST_SUITE(TimeConversionTest);
CPPUNIT_TEST(timevalToPtimeTest); CPPUNIT_TEST(timevalToPtimeTest);
CPPUNIT_TEST(tmToPtimeTest); CPPUNIT_TEST(tmToPtimeTest);
CPPUNIT_TEST(ptimeToTmTest);
CPPUNIT_TEST(nowTest); CPPUNIT_TEST(nowTest);
CPPUNIT_TEST(sleepTest); CPPUNIT_TEST(sleepTest);
CPPUNIT_TEST_SUITE_END(); CPPUNIT_TEST_SUITE_END();
@ -88,6 +89,14 @@ class TimeConversionTest : public CPPUNIT_NS::TestFixture
void void
tmToPtimeTest(void) throw (CPPUNIT_NS::Exception); tmToPtimeTest(void) throw (CPPUNIT_NS::Exception);
/**
* Test conversion from ptime to struct tm
*
* @exception CPPUNIT_NS::Exception on test failures.
*/
void
ptimeToTmTest(void) throw (CPPUNIT_NS::Exception);
/** /**
* Test the now function. * Test the now function.
* *

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $ Author : $Author: fgerlits $
Version : $Revision: 1.1 $ Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethod.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethod.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -45,6 +45,7 @@
#include "LiveSupport/Core/StorageClientInterface.h" #include "LiveSupport/Core/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/Storage/StorageClientFactory.h"
#include "LiveSupport/Core/TimeConversion.h"
#include "XmlRpcTools.h" #include "XmlRpcTools.h"
#include "GetSchedulerTimeMethod.h" #include "GetSchedulerTimeMethod.h"
@ -119,18 +120,8 @@ GetSchedulerTimeMethod :: execute(XmlRpc::XmlRpcValue & rootParameter,
// TODO: check whether the session ID is valid // TODO: check whether the session ID is valid
ptime schedulerPTime = second_clock::local_time(); Ptr<ptime>::Ref schedulerPTime = TimeConversion::now();
date schedulerDate = schedulerPTime.date();
time_duration schedulerTimeOfDay = schedulerPTime.time_of_day();
struct tm schedulerTime; struct tm schedulerTime;
schedulerTime.tm_year = schedulerDate.year(); TimeConversion::ptimeToTm(schedulerPTime, schedulerTime);
schedulerTime.tm_mon = schedulerDate.month(); returnValue["schedulerTime"] = & schedulerTime;
schedulerTime.tm_mday = schedulerDate.day();
schedulerTime.tm_hour = schedulerTimeOfDay.hours();
schedulerTime.tm_min = schedulerTimeOfDay.minutes();
schedulerTime.tm_sec = schedulerTimeOfDay.seconds();
returnValue.clear();
returnValue["schedulerTime"] = & schedulerTime;
} }

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $ Author : $Author: fgerlits $
Version : $Revision: 1.1 $ Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -40,6 +40,7 @@
#endif #endif
#include <iostream>
#include <string> #include <string>
#include <XmlRpcClient.h> #include <XmlRpcClient.h>
#include <XmlRpcValue.h> #include <XmlRpcValue.h>

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $ Author : $Author: fgerlits $
Version : $Revision: 1.11 $ Version : $Revision: 1.12 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcTools.h,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcTools.h,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -74,7 +74,7 @@ using namespace LiveSupport::Core;
* in the Scheduler. * in the Scheduler.
* *
* @author $Author: fgerlits $ * @author $Author: fgerlits $
* @version $Revision: 1.11 $ * @version $Revision: 1.12 $
*/ */
class XmlRpcTools class XmlRpcTools
{ {
@ -263,12 +263,16 @@ class XmlRpcTools
throw (); throw ();
/** /**
* Convert an error code, message pair to an XmlRpcValue * Convert an error code, message pair to an XML-RPC fault response.
* This is done by throwing an XmlRpc::XmlRpcException. The client
* receives a fault response, and the return value is set to a
* { faultCode, faultString } structure holding the error code and
* message.
* *
* @param errorCode the numerical code of the error. * @param errorCode the numerical code of the error.
* @param errorMessage a short English description of the error. * @param errorMessage a short English description of the error.
* @param xmlRpcValue the output parameter holding the result of * @param xmlRpcValue remains here from an earlier version
* the conversion. * TODO: remove this later.
*/ */
static void static void
markError(int errorCode, const std::string errorMessage, markError(int errorCode, const std::string errorMessage,
@ -398,7 +402,6 @@ class XmlRpcTools
extractSessionId(XmlRpc::XmlRpcValue & xmlRpcValue) extractSessionId(XmlRpc::XmlRpcValue & xmlRpcValue)
throw (std::invalid_argument); throw (std::invalid_argument);
}; };
/* ================================================= external data structures */ /* ================================================= external data structures */

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $ Author : $Author: fgerlits $
Version : $Revision: 1.3 $ Version : $Revision: 1.4 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcToolsTest.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcToolsTest.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -182,10 +182,13 @@ XmlRpcToolsTest :: errorTest(void)
{ {
XmlRpcValue xmlRpcValue; XmlRpcValue xmlRpcValue;
XmlRpcTools :: markError(42, "this is an error", xmlRpcValue); try {
CPPUNIT_ASSERT((int) xmlRpcValue["errorCode"] == 42); XmlRpcTools :: markError(42, "this is an error", xmlRpcValue);
CPPUNIT_ASSERT((const std::string) xmlRpcValue["errorMessage"] == CPPUNIT_FAIL("did not throw exception in markError()");
"this is an error"); }
catch (XmlRpc::XmlRpcException &e) {
CPPUNIT_ASSERT(e.getCode() == 42);
CPPUNIT_ASSERT(e.getMessage() == "this is an error");
}
} }

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $ Author : $Author: fgerlits $
Version : $Revision: 1.2 $ Version : $Revision: 1.3 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcToolsTest.h,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcToolsTest.h,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -61,13 +61,14 @@ using namespace LiveSupport::Core;
* Unit test for the XmlRpcTools class. * Unit test for the XmlRpcTools class.
* *
* @author $Author: fgerlits $ * @author $Author: fgerlits $
* @version $Revision: 1.2 $ * @version $Revision: 1.3 $
* @see XmlRpcTools * @see XmlRpcTools
*/ */
class XmlRpcToolsTest : public CPPUNIT_NS::TestFixture class XmlRpcToolsTest : public CPPUNIT_NS::TestFixture
{ {
CPPUNIT_TEST_SUITE(XmlRpcToolsTest); CPPUNIT_TEST_SUITE(XmlRpcToolsTest);
CPPUNIT_TEST(firstTest); CPPUNIT_TEST(firstTest);
CPPUNIT_TEST(errorTest);
CPPUNIT_TEST_SUITE_END(); CPPUNIT_TEST_SUITE_END();
private: private:

View file

@ -22,7 +22,7 @@
# #
# #
# Author : $Author: fgerlits $ # Author : $Author: fgerlits $
# Version : $Revision: 1.4 $ # Version : $Revision: 1.5 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/tools/xmlrpc++/xmlrpc++-20040713/bin/Attic/install.sh,v $ # Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/tools/xmlrpc++/xmlrpc++-20040713/bin/Attic/install.sh,v $
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
@ -47,6 +47,7 @@ tar xfz $tar
cd xmlrpc++ cd xmlrpc++
patch -p1 < $etcdir/xmlrpc++-automake.patch patch -p1 < $etcdir/xmlrpc++-automake.patch
patch -p1 < $etcdir/uninitialised_XmlRpcSource_ssl_ssl.patch patch -p1 < $etcdir/uninitialised_XmlRpcSource_ssl_ssl.patch
patch -p1 < $etcdir/incorrect_XmlRpcValue_struct_tm_conversion.patch
sh autogen.sh --prefix=$installdir sh autogen.sh --prefix=$installdir
make install make install

View file

@ -0,0 +1,31 @@
diff -Nur xmlrpc++/src/XmlRpcValue.cpp x/src/XmlRpcValue.cpp
--- xmlrpc++/src/XmlRpcValue.cpp 2003-06-06 20:13:28.000000000 +0200
+++ x/src/XmlRpcValue.cpp 2004-12-13 21:02:39.505001617 +0100
@@ -390,6 +390,7 @@
return false;
t.tm_year -= 1900;
+ t.tm_mon -= 1;
t.tm_isdst = -1;
_type = TypeDateTime;
_value.asTime = new struct tm(t);
@@ -402,7 +403,7 @@
struct tm* t = _value.asTime;
char buf[20];
snprintf(buf, sizeof(buf)-1, "%04d%02d%02dT%02d:%02d:%02d",
- 1900+t->tm_year,t->tm_mon,t->tm_mday,t->tm_hour,t->tm_min,t->tm_sec);
+ 1900+t->tm_year,1+t->tm_mon,t->tm_mday,t->tm_hour,t->tm_min,t->tm_sec);
buf[sizeof(buf)-1] = 0;
std::string xml = VALUE_TAG;
@@ -553,8 +554,8 @@
{
struct tm* t = _value.asTime;
char buf[20];
- snprintf(buf, sizeof(buf)-1, "%4d%02d%02dT%02d:%02d:%02d",
- t->tm_year,t->tm_mon,t->tm_mday,t->tm_hour,t->tm_min,t->tm_sec);
+ snprintf(buf, sizeof(buf)-1, "%04d%02d%02dT%02d:%02d:%02d",
+ 1900+t->tm_year,1+t->tm_mon,t->tm_mday,t->tm_hour,t->tm_min,t->tm_sec);
buf[sizeof(buf)-1] = 0;
os << buf;
break;