Ticket #10995: 10995-v2.patch

File 10995-v2.patch, 4.3 KB (added by danielk, 12 years ago)

Changes default for setwakeup to localtime

  • mythtv/programs/mythshutdown/commandlineparser.cpp

    diff --git a/mythtv/programs/mythshutdown/commandlineparser.cpp b/mythtv/programs/mythshutdown/commandlineparser.cpp
    index d1cb383..e30d38e 100644
    a b void MythShutdownCommandLineParser::LoadArguments(void) 
    2222    CommandLineArg::AllowOneOf( QList<CommandLineArg*>()
    2323         << add(QStringList( QStringList() << "-w" << "--setwakeup" ),
    2424                "setwakeup", "",
    25                 "Set the wakeup time (yyyy-MM-ddThh:mm:ss)", "")
     25                "Set the wakeup time (yyyy-MM-ddThh:mm:ss) "
     26                "default is in local time", "")
    2627         << add(QStringList( QStringList() << "-t" << "--setscheduledwakeup" ),
    2728                "setschedwakeup", false,
    2829                "Set wakeup time to the next scheduled recording", "")
    void MythShutdownCommandLineParser::LoadArguments(void) 
    6667                "        64 - In daily wakeup/shutdown period\n"
    6768                "       128 - Less than 15 minutes to next wakeup period\n"
    6869                "       255 - Setup is running") );
     70
     71    // The localtime command line parameter exists solely to make scripts
     72    // using this executable self documenting.
     73
     74    CommandLineArg::AllowOneOf( QList<CommandLineArg*>()
     75         << add("--utc",
     76                "utc", false,
     77                "Specify that the wakeup time is in utc", "")
     78         << add("--localtime",
     79                "localtime", false,
     80                "Specify that the wakeup time is in local time", "") );
    6981}
    7082
  • mythtv/programs/mythshutdown/main.cpp

    diff --git a/mythtv/programs/mythshutdown/main.cpp b/mythtv/programs/mythshutdown/main.cpp
    index cf369d9..3988580 100644
    a b static int checkOKShutdown(bool bWantRecStatus) 
    375375    return res;
    376376}
    377377
    378 static int setWakeupTime(QString sWakeupTime)
     378static void setWakeupTime(const QDateTime &wakeupTime)
    379379{
    380380    LOG(VB_GENERAL, LOG_INFO, "Mythshutdown: --setwakeup");
    381381
    382382    LOG(VB_GENERAL, LOG_NOTICE,
    383         QString("Mythshutdown: wakeup time given is: %1").arg(sWakeupTime));
    384 
    385     // check time given is valid
    386     QDateTime dtWakeupTime;
    387     dtWakeupTime = MythDate::fromString(sWakeupTime);
    388 
    389     if (!dtWakeupTime.isValid())
    390     {
    391         LOG(VB_GENERAL, LOG_ERR,
    392             QString("Mythshutdown: --setwakeup invalid date "
    393                                       "format (%1)\n\t\t\t"
    394                                       "must be yyyy-MM-ddThh:mm:ss")
    395                                       .arg(sWakeupTime));
    396         return 1;
    397     }
     383        QString("Mythshutdown: wakeup time given is: %1 (local time)")
     384        .arg(MythDate::toString(wakeupTime)));
    398385
    399386    setGlobalSetting("MythShutdownNextScheduled",
    400                      MythDate::toString(dtWakeupTime, MythDate::kDatabase));
    401 
    402     return 0;
     387                     MythDate::toString(wakeupTime, MythDate::kDatabase));
    403388}
    404389
    405390static int setScheduledWakeupTime()
    static int setScheduledWakeupTime() 
    432417        if (add)
    433418            restarttime = restarttime.addSecs((-1) * add);
    434419
    435         setWakeupTime(restarttime.toString(Qt::ISODate));
     420        setWakeupTime(restarttime);
    436421
    437422        return 0;
    438423    }
    int main(int argc, char **argv) 
    821806    else if (cmdline.toBool("status"))
    822807        res = getStatus((bool)(cmdline.toInt("status") == 1));
    823808    else if (cmdline.toBool("setwakeup"))
    824         res = setWakeupTime(cmdline.toString("setwakeup"));
     809    {
     810        // only one of --utc or --localtime can be passed per
     811        // CommandLineArg::AllowOneOf() in commandlineparser.cpp
     812        bool utc = cmdline.toBool("utc");
     813        QString tmp = cmdline.toString("setwakeup");
     814
     815        QDateTime wakeuptime = (utc) ?
     816            MythDate::fromString(tmp) :
     817            QDateTime::fromString(tmp, Qt::ISODate).toUTC();
     818
     819        if (!wakeuptime.isValid())
     820        {
     821            cerr << qPrintable(
     822                QObject::tr("mythshutdown: --setwakeup invalid date "
     823                            "format (%1)\n\t\t\t"
     824                            "must be yyyy-MM-ddThh:mm:ss")
     825                .arg(tmp)) << endl;
     826            res = 1;
     827        }
     828        else
     829        {
     830            setWakeupTime(wakeuptime);
     831        }
     832    }
    825833    else if (cmdline.toBool("safeshutdown"))
    826834    {
    827835        res = checkOKShutdown(true);