dawn-cmake/src/source.h

84 lines
2.6 KiB
C
Raw Normal View History

2020-03-02 20:47:43 +00:00
// Copyright 2020 The Tint Authors.
//
// 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.
#ifndef SRC_SOURCE_H_
#define SRC_SOURCE_H_
#include <stddef.h>
#include <string>
#include <vector>
2020-03-02 20:47:43 +00:00
namespace tint {
/// Source describes a range of characters within a source file.
class Source {
public:
/// File describes a source file, including path and content.
class File {
public:
/// Constructs the File with the given file path and content.
File(const std::string& file_path, const std::string& file_content);
~File();
const std::string path; /// file path (optional)
const std::string content; /// file content
const std::vector<std::string> lines; /// |content| split by lines
};
/// Location holds a 1-based line and column index.
/// 0's for |line| or |column| represent invalid values.
class Location {
public:
size_t line = 0;
size_t column = 0;
};
/// Range holds a Location interval described by [begin, end).
class Range {
public:
/// Constructs a zero initialized Range.
inline Range() = default;
/// Constructs a zero-length Range starting at |loc|.
inline explicit Range(const Location& loc) : begin(loc), end(loc) {}
/// Constructs the Range beginning at |b| and ending at |e|.
inline Range(const Location& b, const Location& e) : begin(b), end(e) {}
Location begin; /// The location of the first character in the range.
Location end; /// The location of one-past the last character in the range.
};
/// Constructs the Source with an zero initialized Range and null File.
inline Source() = default;
/// Constructs the Source with the Range |rng| and a null File.
inline explicit Source(const Range& rng) : range(rng) {}
/// Constructs the Source with the Range |loc| and a null File.
inline explicit Source(const Location& loc) : range(Range(loc)) {}
/// Constructs the Source with the Range |rng| and File |f|.
inline Source(const Range& rng, File const* f) : range(rng), file(f) {}
Range range;
File const* file = nullptr;
2020-03-02 20:47:43 +00:00
};
} // namespace tint
#endif // SRC_SOURCE_H_