2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2020-03-24 15:47:53 +01:00
|
|
|
*
|
2020-07-20 12:37:27 +02:00
|
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-24 15:47:53 +01:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2020-03-24 15:47:53 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LOCALE_CONFIG_H
|
|
|
|
#define LOCALE_CONFIG_H
|
|
|
|
|
2020-07-21 13:16:52 +02:00
|
|
|
#include "LocaleConfiguration.h"
|
|
|
|
|
2020-07-20 22:21:29 +02:00
|
|
|
#include "Job.h"
|
2020-07-22 11:53:06 +02:00
|
|
|
#include "geoip/Handler.h"
|
2020-07-22 01:26:15 +02:00
|
|
|
#include "geoip/Interface.h"
|
2020-07-20 16:13:08 +02:00
|
|
|
#include "locale/TimeZone.h"
|
|
|
|
|
2020-07-22 14:47:43 +02:00
|
|
|
#include <QFutureWatcher>
|
2020-03-24 22:48:14 +01:00
|
|
|
#include <QObject>
|
|
|
|
|
2020-07-20 16:13:08 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2020-03-24 15:47:53 +01:00
|
|
|
class Config : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-07-20 13:22:38 +02:00
|
|
|
Q_PROPERTY( const QStringList& supportedLocales READ supportedLocales CONSTANT FINAL )
|
2020-08-06 01:27:03 +02:00
|
|
|
Q_PROPERTY( CalamaresUtils::Locale::RegionsModel* regionModel READ regionModel CONSTANT FINAL )
|
|
|
|
Q_PROPERTY( CalamaresUtils::Locale::ZonesModel* zonesModel READ zonesModel CONSTANT FINAL )
|
|
|
|
Q_PROPERTY( QAbstractItemModel* regionalZonesModel READ regionalZonesModel CONSTANT FINAL )
|
2020-07-21 16:27:21 +02:00
|
|
|
|
2020-08-06 01:27:03 +02:00
|
|
|
Q_PROPERTY(
|
2020-08-06 15:58:11 +02:00
|
|
|
CalamaresUtils::Locale::TimeZoneData* currentLocation READ currentLocation_c NOTIFY currentLocationChanged )
|
2020-03-24 15:47:53 +01:00
|
|
|
|
2020-07-23 23:25:52 +02:00
|
|
|
// Status are complete, human-readable, messages
|
2020-07-21 16:27:21 +02:00
|
|
|
Q_PROPERTY( QString currentLocationStatus READ currentLocationStatus NOTIFY currentLanguageStatusChanged )
|
|
|
|
Q_PROPERTY( QString currentLanguageStatus READ currentLanguageStatus NOTIFY currentLanguageStatusChanged )
|
|
|
|
Q_PROPERTY( QString currentLCStatus READ currentLCStatus NOTIFY currentLCStatusChanged )
|
2020-08-06 12:40:24 +02:00
|
|
|
// Name are shorter human-readable names
|
|
|
|
// .. main difference is that status is a full sentence, like "Timezone is America/New York"
|
|
|
|
// while name is just "America/New York" (and the code, below, is "America/New_York")
|
|
|
|
Q_PROPERTY( QString currentTimezoneName READ currentTimezoneName NOTIFY currentTimezoneNameChanged )
|
2020-07-23 23:25:52 +02:00
|
|
|
// Code are internal identifiers, like "en_US.UTF-8"
|
2020-08-06 12:40:24 +02:00
|
|
|
Q_PROPERTY( QString currentTimezoneCode READ currentTimezoneCode NOTIFY currentTimezoneCodeChanged )
|
2020-08-06 01:27:03 +02:00
|
|
|
Q_PROPERTY( QString currentLanguageCode READ currentLanguageCode WRITE setLanguageExplicitly NOTIFY
|
|
|
|
currentLanguageCodeChanged )
|
2020-07-23 23:25:52 +02:00
|
|
|
Q_PROPERTY( QString currentLCCode READ currentLCCode WRITE setLCLocaleExplicitly NOTIFY currentLCCodeChanged )
|
2020-07-21 16:27:21 +02:00
|
|
|
|
2020-07-24 11:53:32 +02:00
|
|
|
// This is a long human-readable string with all three statuses
|
|
|
|
Q_PROPERTY( QString prettyStatus READ prettyStatus NOTIFY prettyStatusChanged FINAL )
|
|
|
|
|
2020-03-24 15:47:53 +01:00
|
|
|
public:
|
|
|
|
Config( QObject* parent = nullptr );
|
|
|
|
~Config();
|
|
|
|
|
2020-07-20 12:37:27 +02:00
|
|
|
void setConfigurationMap( const QVariantMap& );
|
2020-08-06 18:32:51 +02:00
|
|
|
void finalizeGlobalStorage() const;
|
2020-07-20 22:21:29 +02:00
|
|
|
Calamares::JobList createJobs();
|
2020-07-20 12:55:07 +02:00
|
|
|
|
2020-07-21 16:27:21 +02:00
|
|
|
/// locale configuration (LC_* and LANG) based solely on the current location.
|
|
|
|
LocaleConfiguration automaticLocaleConfiguration() const;
|
|
|
|
/// locale configuration that takes explicit settings into account
|
|
|
|
LocaleConfiguration localeConfiguration() const;
|
|
|
|
|
|
|
|
/// The human-readable description of what timezone is used
|
|
|
|
QString currentLocationStatus() const;
|
|
|
|
/// The human-readable description of what language is used
|
|
|
|
QString currentLanguageStatus() const;
|
|
|
|
/// The human-readable description of what locale (LC_*) is used
|
|
|
|
QString currentLCStatus() const;
|
2020-07-21 15:51:49 +02:00
|
|
|
|
2020-07-24 11:53:32 +02:00
|
|
|
/// The human-readable summary of what the module will do
|
|
|
|
QString prettyStatus() const;
|
|
|
|
|
2020-08-06 01:27:03 +02:00
|
|
|
// A long list of locale codes (e.g. en_US.UTF-8)
|
2020-07-20 13:22:38 +02:00
|
|
|
const QStringList& supportedLocales() const { return m_localeGenLines; }
|
2020-08-06 01:27:03 +02:00
|
|
|
// All the regions (Africa, America, ...)
|
|
|
|
CalamaresUtils::Locale::RegionsModel* regionModel() const { return m_regionModel.get(); }
|
|
|
|
// All of the timezones in the world, according to zone.tab
|
|
|
|
CalamaresUtils::Locale::ZonesModel* zonesModel() const { return m_zonesModel.get(); }
|
|
|
|
// This model can be filtered by region
|
|
|
|
CalamaresUtils::Locale::RegionalZonesModel* regionalZonesModel() const { return m_regionalZonesModel.get(); }
|
|
|
|
|
|
|
|
const CalamaresUtils::Locale::TimeZoneData* currentLocation() const { return m_currentLocation; }
|
2020-07-21 16:27:21 +02:00
|
|
|
|
2020-08-06 15:58:11 +02:00
|
|
|
|
2020-07-22 14:47:43 +02:00
|
|
|
/// Special case, set location from starting timezone if not already set
|
|
|
|
void setCurrentLocation();
|
|
|
|
|
2020-08-06 15:58:11 +02:00
|
|
|
private:
|
|
|
|
CalamaresUtils::Locale::TimeZoneData* currentLocation_c() const
|
|
|
|
{
|
|
|
|
return const_cast< CalamaresUtils::Locale::TimeZoneData* >( m_currentLocation );
|
|
|
|
}
|
|
|
|
|
2020-07-21 16:27:21 +02:00
|
|
|
public Q_SLOTS:
|
|
|
|
/// Set a language by user-choice, overriding future location changes
|
|
|
|
void setLanguageExplicitly( const QString& language );
|
|
|
|
/// Set LC (formats) by user-choice, overriding future location changes
|
|
|
|
void setLCLocaleExplicitly( const QString& locale );
|
2020-07-20 13:22:38 +02:00
|
|
|
|
2020-07-24 11:07:58 +02:00
|
|
|
/** @brief Sets a location by full name
|
|
|
|
*
|
|
|
|
* @p regionzone should be an identifier from zone.tab, e.g. "Africa/Abidjan",
|
|
|
|
* which is split into regon and zone. Invalid names will **not**
|
|
|
|
* change the actual location.
|
|
|
|
*/
|
|
|
|
void setCurrentLocation( const QString& regionzone );
|
|
|
|
/** @brief Sets a location by split name
|
2020-07-20 23:06:12 +02:00
|
|
|
*
|
|
|
|
* @p region should be "America" or the like, while @p zone
|
|
|
|
* names a zone within that region.
|
|
|
|
*/
|
|
|
|
void setCurrentLocation( const QString& region, const QString& zone );
|
2020-08-06 01:27:03 +02:00
|
|
|
|
|
|
|
/** @brief Sets a location by pointer to zone data.
|
2020-07-20 23:06:12 +02:00
|
|
|
*
|
|
|
|
*/
|
2020-08-06 01:27:03 +02:00
|
|
|
void setCurrentLocation( const CalamaresUtils::Locale::TimeZoneData* tz );
|
2020-07-20 23:06:12 +02:00
|
|
|
|
2020-07-23 23:25:52 +02:00
|
|
|
QString currentLanguageCode() const { return localeConfiguration().language(); }
|
|
|
|
QString currentLCCode() const { return localeConfiguration().lc_numeric; }
|
2020-08-06 12:40:24 +02:00
|
|
|
QString currentTimezoneName() const; // human-readable
|
|
|
|
QString currentTimezoneCode() const;
|
2020-07-23 23:25:52 +02:00
|
|
|
|
2020-07-20 23:06:12 +02:00
|
|
|
signals:
|
2020-08-06 01:27:03 +02:00
|
|
|
void currentLocationChanged( const CalamaresUtils::Locale::TimeZoneData* location ) const;
|
2020-07-21 16:27:21 +02:00
|
|
|
void currentLocationStatusChanged( const QString& ) const;
|
|
|
|
void currentLanguageStatusChanged( const QString& ) const;
|
|
|
|
void currentLCStatusChanged( const QString& ) const;
|
2020-07-24 11:53:32 +02:00
|
|
|
void prettyStatusChanged( const QString& ) const;
|
2020-07-23 23:25:52 +02:00
|
|
|
void currentLanguageCodeChanged( const QString& ) const;
|
|
|
|
void currentLCCodeChanged( const QString& ) const;
|
2020-08-06 12:40:24 +02:00
|
|
|
void currentTimezoneCodeChanged( const QString& ) const;
|
|
|
|
void currentTimezoneNameChanged( const QString& ) const;
|
2020-07-20 23:06:12 +02:00
|
|
|
|
2020-07-20 12:55:07 +02:00
|
|
|
private:
|
|
|
|
/// A list of supported locale identifiers (e.g. "en_US.UTF-8")
|
|
|
|
QStringList m_localeGenLines;
|
2020-07-20 16:13:08 +02:00
|
|
|
|
|
|
|
/// The regions (America, Asia, Europe ..)
|
2020-08-06 01:27:03 +02:00
|
|
|
std::unique_ptr< CalamaresUtils::Locale::RegionsModel > m_regionModel;
|
|
|
|
std::unique_ptr< CalamaresUtils::Locale::ZonesModel > m_zonesModel;
|
|
|
|
std::unique_ptr< CalamaresUtils::Locale::RegionalZonesModel > m_regionalZonesModel;
|
2020-07-20 23:06:12 +02:00
|
|
|
|
2020-08-06 01:27:03 +02:00
|
|
|
const CalamaresUtils::Locale::TimeZoneData* m_currentLocation = nullptr;
|
2020-07-20 23:06:12 +02:00
|
|
|
|
2020-07-21 13:16:52 +02:00
|
|
|
/** @brief Specific locale configurations
|
|
|
|
*
|
|
|
|
* "Automatic" locale configuration based on the location (e.g.
|
|
|
|
* Europe/Amsterdam means Dutch language and Dutch locale) leave
|
|
|
|
* this empty; if the user explicitly sets something, then
|
|
|
|
* this configuration is non-empty and takes precedence over the
|
|
|
|
* automatic location settings (so a user in Amsterdam can still
|
|
|
|
* pick Ukranian settings, for instance).
|
|
|
|
*/
|
|
|
|
LocaleConfiguration m_selectedLocaleConfiguration;
|
2020-07-22 00:06:56 +02:00
|
|
|
|
|
|
|
/** @brief Should we adjust the "live" timezone when the location changes?
|
|
|
|
*
|
|
|
|
* In the Widgets UI, clicking around on the world map adjusts the
|
|
|
|
* timezone, and the live system can be made to follow that.
|
|
|
|
*/
|
|
|
|
bool m_adjustLiveTimezone;
|
2020-07-22 01:26:15 +02:00
|
|
|
|
|
|
|
/** @brief The initial timezone (region, zone) specified in the config.
|
2020-07-22 11:53:06 +02:00
|
|
|
*
|
|
|
|
* This may be overridden by setting *useSystemTimezone* or by
|
|
|
|
* GeoIP settings.
|
2020-07-22 01:26:15 +02:00
|
|
|
*/
|
|
|
|
CalamaresUtils::GeoIP::RegionZonePair m_startingTimezone;
|
2020-07-22 11:53:06 +02:00
|
|
|
|
|
|
|
/** @brief Handler for GeoIP lookup (if configured)
|
|
|
|
*
|
|
|
|
* The GeoIP lookup needs to be started at some suitable time,
|
|
|
|
* by explicitly calling *TODO*
|
|
|
|
*/
|
|
|
|
std::unique_ptr< CalamaresUtils::GeoIP::Handler > m_geoip;
|
2020-07-22 14:47:43 +02:00
|
|
|
|
|
|
|
// Implementation details for doing GeoIP lookup
|
|
|
|
void startGeoIP();
|
|
|
|
void completeGeoIP();
|
|
|
|
std::unique_ptr< QFutureWatcher< CalamaresUtils::GeoIP::RegionZonePair > > m_geoipWatcher;
|
2020-03-24 15:47:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|