2022-05-27 02:48:54 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2014-07-16 05:33:52 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2022-05-02 23:18:37 +05:30
|
|
|
#include <QRegularExpression>
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "DefaultVariable.h"
|
2014-07-16 05:33:52 +05:30
|
|
|
|
|
|
|
struct GradleSpecifier
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
GradleSpecifier()
|
|
|
|
{
|
|
|
|
m_valid = false;
|
|
|
|
}
|
|
|
|
GradleSpecifier(QString value)
|
|
|
|
{
|
|
|
|
operator=(value);
|
|
|
|
}
|
|
|
|
GradleSpecifier & operator =(const QString & value)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
org.gradle.test.classifiers : service : 1.0 : jdk15 @ jar
|
2021-04-01 07:20:28 +05:30
|
|
|
0 "org.gradle.test.classifiers:service:1.0:jdk15@jar"
|
|
|
|
1 "org.gradle.test.classifiers"
|
|
|
|
2 "service"
|
|
|
|
3 "1.0"
|
|
|
|
4 "jdk15"
|
|
|
|
5 "jar"
|
2018-07-15 18:21:05 +05:30
|
|
|
*/
|
2022-05-02 23:18:37 +05:30
|
|
|
QRegularExpression matcher(QRegularExpression::anchoredPattern("([^:@]+):([^:@]+):([^:@]+)" "(?::([^:@]+))?" "(?:@([^:@]+))?"));
|
|
|
|
QRegularExpressionMatch match = matcher.match(value);
|
|
|
|
m_valid = match.hasMatch();
|
2021-04-01 07:20:28 +05:30
|
|
|
if(!m_valid) {
|
|
|
|
m_invalidValue = value;
|
|
|
|
return *this;
|
|
|
|
}
|
2022-05-02 23:18:37 +05:30
|
|
|
auto elements = match.captured();
|
|
|
|
m_groupId = match.captured(1);
|
|
|
|
m_artifactId = match.captured(2);
|
|
|
|
m_version = match.captured(3);
|
|
|
|
m_classifier = match.captured(4);
|
|
|
|
if(match.lastCapturedIndex() >= 5)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2022-05-02 23:18:37 +05:30
|
|
|
m_extension = match.captured(5);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
2021-04-01 07:20:28 +05:30
|
|
|
QString serialize() const
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2021-04-01 07:20:28 +05:30
|
|
|
if(!m_valid) {
|
|
|
|
return m_invalidValue;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
QString retval = m_groupId + ":" + m_artifactId + ":" + m_version;
|
|
|
|
if(!m_classifier.isEmpty())
|
|
|
|
{
|
|
|
|
retval += ":" + m_classifier;
|
|
|
|
}
|
|
|
|
if(m_extension.isExplicit())
|
|
|
|
{
|
|
|
|
retval += "@" + m_extension;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
QString getFileName() const
|
|
|
|
{
|
2021-04-01 07:20:28 +05:30
|
|
|
if(!m_valid) {
|
|
|
|
return QString();
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
QString filename = m_artifactId + '-' + m_version;
|
|
|
|
if(!m_classifier.isEmpty())
|
|
|
|
{
|
|
|
|
filename += "-" + m_classifier;
|
|
|
|
}
|
|
|
|
filename += "." + m_extension;
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
QString toPath(const QString & filenameOverride = QString()) const
|
|
|
|
{
|
2021-04-01 07:20:28 +05:30
|
|
|
if(!m_valid) {
|
|
|
|
return QString();
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
QString filename;
|
|
|
|
if(filenameOverride.isEmpty())
|
|
|
|
{
|
|
|
|
filename = getFileName();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
filename = filenameOverride;
|
|
|
|
}
|
|
|
|
QString path = m_groupId;
|
|
|
|
path.replace('.', '/');
|
|
|
|
path += '/' + m_artifactId + '/' + m_version + '/' + filename;
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
inline bool valid() const
|
|
|
|
{
|
|
|
|
return m_valid;
|
|
|
|
}
|
|
|
|
inline QString version() const
|
|
|
|
{
|
|
|
|
return m_version;
|
|
|
|
}
|
|
|
|
inline QString groupId() const
|
|
|
|
{
|
|
|
|
return m_groupId;
|
|
|
|
}
|
|
|
|
inline QString artifactId() const
|
|
|
|
{
|
|
|
|
return m_artifactId;
|
|
|
|
}
|
|
|
|
inline void setClassifier(const QString & classifier)
|
|
|
|
{
|
|
|
|
m_classifier = classifier;
|
|
|
|
}
|
|
|
|
inline QString classifier() const
|
|
|
|
{
|
|
|
|
return m_classifier;
|
|
|
|
}
|
|
|
|
inline QString extension() const
|
|
|
|
{
|
|
|
|
return m_extension;
|
|
|
|
}
|
|
|
|
inline QString artifactPrefix() const
|
|
|
|
{
|
|
|
|
return m_groupId + ":" + m_artifactId;
|
|
|
|
}
|
|
|
|
bool matchName(const GradleSpecifier & other) const
|
|
|
|
{
|
2022-05-19 02:21:14 +05:30
|
|
|
return other.artifactId() == artifactId() && other.groupId() == groupId() && other.classifier() == classifier();
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
bool operator==(const GradleSpecifier & other) const
|
|
|
|
{
|
|
|
|
if(m_groupId != other.m_groupId)
|
|
|
|
return false;
|
|
|
|
if(m_artifactId != other.m_artifactId)
|
|
|
|
return false;
|
|
|
|
if(m_version != other.m_version)
|
|
|
|
return false;
|
|
|
|
if(m_classifier != other.m_classifier)
|
|
|
|
return false;
|
|
|
|
if(m_extension != other.m_extension)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2014-07-16 05:33:52 +05:30
|
|
|
private:
|
2021-04-01 07:20:28 +05:30
|
|
|
QString m_invalidValue;
|
2018-07-15 18:21:05 +05:30
|
|
|
QString m_groupId;
|
|
|
|
QString m_artifactId;
|
|
|
|
QString m_version;
|
|
|
|
QString m_classifier;
|
|
|
|
DefaultVariable<QString> m_extension = DefaultVariable<QString>("jar");
|
|
|
|
bool m_valid = false;
|
2014-07-16 05:33:52 +05:30
|
|
|
};
|