-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: common parser infrastructure for different input types
- Loading branch information
1 parent
b24f9ce
commit f710135
Showing
31 changed files
with
821 additions
and
707 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright (C) 2019, TomTom (http://tomtom.com). | ||
# | ||
# 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. | ||
"""Factory methods for API reference information parsers.""" | ||
|
||
from abc import ABC, abstractmethod | ||
from pathlib import Path | ||
from typing import Union | ||
|
||
from ..api_reference import ApiReference | ||
|
||
|
||
class ReferenceParserBase(ABC): | ||
"""Abstract base class for reference parser. | ||
Attributes: | ||
api_reference: API reference holder where parsed reference documentation is added. | ||
""" | ||
|
||
api_reference: ApiReference | ||
|
||
def __init__(self, api_reference: ApiReference): | ||
self.api_reference = api_reference | ||
|
||
@abstractmethod | ||
def parse(self, reference_path: Union[Path, str]) -> bool: | ||
"""Parse reference documentation from the given path. | ||
Args: | ||
reference_path File or directory containing the reference documentation. | ||
Returns: | ||
True if the reference has been parsed. False if the reference path does not contain | ||
valid content for this parser. | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.