summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/src/qdoc/boundaries/filesystem/filepath.h
blob: e8a9b2d35323f262ee3582ea6ea07c2cd221de8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "qdoc/boundaries/refined_typedef.h"

#include <optional>

#include <QtCore/qstring.h>
#include <QtCore/qfileinfo.h>

QDOC_REFINED_TYPEDEF(QString, FilePath) {
    QFileInfo info{value};

    return (info.isFile() && info.isReadable()) ? std::optional(FilePath{info.canonicalFilePath()}) : std::nullopt;
}