-
Notifications
You must be signed in to change notification settings - Fork 744
docs(bindings/C): The documentation for OpenDAL C binding #2373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
81b8682
all classes included, we should now rewrite the documentation in rust…
xyjixyjixyji 0222fae
template mainpage
xyjixyjixyji 550ba50
contributing
xyjixyjixyji 33c8e48
rewrite doc for opendal_operator_ptr_new
xyjixyjixyji 4ebda9c
disable doxygen including apache header in weird place
xyjixyjixyji d528e5a
add apache copyright footer
xyjixyjixyji 8f8466e
main page working
xyjixyjixyji 40d60d8
add licence to footer.html
xyjixyjixyji a49535b
rewrite doc for opendal_operator_blocking_write
xyjixyjixyji a0867ea
rewrite doc for lib.rs
xyjixyjixyji bb2052d
error.rs
xyjixyjixyji f466479
result.rs
xyjixyjixyji 336d706
more doc
xyjixyjixyji 8fc1565
change opendal_operator_new to accept null options
xyjixyjixyji 482a22f
to be polished
xyjixyjixyji 31af584
polished data field documentations
xyjixyjixyji 1252064
mainpage
xyjixyjixyji 68a714b
fix typo in doxyfile
xyjixyjixyji b64e5d4
fix bold in mainpage
xyjixyjixyji 582e39b
remove pages
xyjixyjixyji d2a2e07
gha
xyjixyjixyji 201f900
remove all empty values and comments
xyjixyjixyji 3a837fd
minor
xyjixyjixyji f1d8946
remove macro
xyjixyjixyji 0af5af7
change licencerc to alloc SLASHSTAR style licence header for c/h file
xyjixyjixyji File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,291 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you 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. | ||
|
|
||
| PROJECT_NAME = "OpenDAL C Binding" | ||
| PROJECT_BRIEF = "The C binding for Apache OpenDAL" | ||
| OUTPUT_DIRECTORY = ./docs/doxygen | ||
| EXCLUDE_SYMBOLS = "HashMap_String__String" \ | ||
| "BlockingOperator" \ | ||
| "Metadata" | ||
| USE_MDFILE_AS_MAINPAGE = "README.md" | ||
|
|
||
| DOXYFILE_ENCODING = UTF-8 | ||
| CREATE_SUBDIRS = NO | ||
| CREATE_SUBDIRS_LEVEL = 8 | ||
| ALLOW_UNICODE_NAMES = NO | ||
| OUTPUT_LANGUAGE = English | ||
| BRIEF_MEMBER_DESC = YES | ||
| REPEAT_BRIEF = YES | ||
| ABBREVIATE_BRIEF = "The $name class" \ | ||
| "The $name widget" \ | ||
| "The $name file" \ | ||
| is \ | ||
| provides \ | ||
| specifies \ | ||
| contains \ | ||
| represents \ | ||
| a \ | ||
| an \ | ||
| the | ||
| ALWAYS_DETAILED_SEC = NO | ||
| INLINE_INHERITED_MEMB = NO | ||
| FULL_PATH_NAMES = YES | ||
| SHORT_NAMES = NO | ||
| JAVADOC_AUTOBRIEF = NO | ||
| JAVADOC_BANNER = NO | ||
| QT_AUTOBRIEF = NO | ||
| MULTILINE_CPP_IS_BRIEF = NO | ||
| PYTHON_DOCSTRING = YES | ||
| INHERIT_DOCS = YES | ||
| SEPARATE_MEMBER_PAGES = NO | ||
| TAB_SIZE = 4 | ||
| OPTIMIZE_OUTPUT_FOR_C = NO | ||
| OPTIMIZE_OUTPUT_JAVA = NO | ||
| OPTIMIZE_FOR_FORTRAN = NO | ||
| OPTIMIZE_OUTPUT_VHDL = NO | ||
| OPTIMIZE_OUTPUT_SLICE = NO | ||
| MARKDOWN_SUPPORT = YES | ||
| TOC_INCLUDE_HEADINGS = 5 | ||
| AUTOLINK_SUPPORT = YES | ||
| BUILTIN_STL_SUPPORT = NO | ||
| CPP_CLI_SUPPORT = NO | ||
| SIP_SUPPORT = NO | ||
| IDL_PROPERTY_SUPPORT = YES | ||
| DISTRIBUTE_GROUP_DOC = NO | ||
| GROUP_NESTED_COMPOUNDS = NO | ||
| SUBGROUPING = YES | ||
| INLINE_GROUPED_CLASSES = NO | ||
| INLINE_SIMPLE_STRUCTS = NO | ||
| TYPEDEF_HIDES_STRUCT = NO | ||
| LOOKUP_CACHE_SIZE = 0 | ||
| NUM_PROC_THREADS = 1 | ||
| EXTRACT_ALL = ALL | ||
| EXTRACT_PRIVATE = NO | ||
| EXTRACT_PRIV_VIRTUAL = NO | ||
| EXTRACT_PACKAGE = NO | ||
| EXTRACT_STATIC = NO | ||
| EXTRACT_LOCAL_CLASSES = YES | ||
| EXTRACT_LOCAL_METHODS = NO | ||
| EXTRACT_ANON_NSPACES = NO | ||
| RESOLVE_UNNAMED_PARAMS = YES | ||
| HIDE_UNDOC_MEMBERS = NO | ||
| HIDE_UNDOC_CLASSES = NO | ||
| HIDE_FRIEND_COMPOUNDS = NO | ||
| HIDE_IN_BODY_DOCS = NO | ||
| INTERNAL_DOCS = NO | ||
| CASE_SENSE_NAMES = SYSTEM | ||
| HIDE_SCOPE_NAMES = NO | ||
| HIDE_COMPOUND_REFERENCE= NO | ||
| SHOW_HEADERFILE = YES | ||
| SHOW_INCLUDE_FILES = YES | ||
| SHOW_GROUPED_MEMB_INC = NO | ||
| FORCE_LOCAL_INCLUDES = NO | ||
| INLINE_INFO = YES | ||
| SORT_MEMBER_DOCS = YES | ||
| SORT_BRIEF_DOCS = NO | ||
| SORT_MEMBERS_CTORS_1ST = NO | ||
| SORT_GROUP_NAMES = NO | ||
| SORT_BY_SCOPE_NAME = NO | ||
| STRICT_PROTO_MATCHING = NO | ||
| GENERATE_TODOLIST = YES | ||
| GENERATE_TESTLIST = YES | ||
| GENERATE_BUGLIST = YES | ||
| GENERATE_DEPRECATEDLIST= YES | ||
| MAX_INITIALIZER_LINES = 30 | ||
| SHOW_USED_FILES = YES | ||
| SHOW_FILES = YES | ||
| SHOW_NAMESPACES = YES | ||
| QUIET = NO | ||
| WARNINGS = YES | ||
| WARN_IF_UNDOCUMENTED = YES | ||
| WARN_IF_DOC_ERROR = YES | ||
| WARN_IF_INCOMPLETE_DOC = YES | ||
| WARN_NO_PARAMDOC = NO | ||
| WARN_AS_ERROR = NO | ||
| WARN_FORMAT = "$file:$line: $text" | ||
| WARN_LINE_FORMAT = "at line $line of file $file" | ||
| INPUT = ./include ./README.md | ||
| INPUT_ENCODING = UTF-8 | ||
| FILE_PATTERNS = *.c \ | ||
| *.cc \ | ||
| *.cxx \ | ||
| *.cpp \ | ||
| *.c++ \ | ||
| *.java \ | ||
| *.ii \ | ||
| *.ixx \ | ||
| *.ipp \ | ||
| *.i++ \ | ||
| *.inl \ | ||
| *.idl \ | ||
| *.ddl \ | ||
| *.odl \ | ||
| *.h \ | ||
| *.hh \ | ||
| *.hxx \ | ||
| *.hpp \ | ||
| *.h++ \ | ||
| *.l \ | ||
| *.cs \ | ||
| *.d \ | ||
| *.php \ | ||
| *.php4 \ | ||
| *.php5 \ | ||
| *.phtml \ | ||
| *.inc \ | ||
| *.m \ | ||
| *.markdown \ | ||
| *.md \ | ||
| *.mm \ | ||
| *.dox \ | ||
| *.py \ | ||
| *.pyw \ | ||
| *.f90 \ | ||
| *.f95 \ | ||
| *.f03 \ | ||
| *.f08 \ | ||
| *.f18 \ | ||
| *.f \ | ||
| *.for \ | ||
| *.vhd \ | ||
| *.vhdl \ | ||
| *.ucf \ | ||
| *.qsf \ | ||
| *.ice | ||
| RECURSIVE = NO | ||
| EXCLUDE_SYMLINKS = NO | ||
| EXAMPLE_PATTERNS = * | ||
| EXAMPLE_RECURSIVE = NO | ||
| FILTER_SOURCE_FILES = NO | ||
| FORTRAN_COMMENT_AFTER = 72 | ||
| SOURCE_BROWSER = NO | ||
| INLINE_SOURCES = NO | ||
| STRIP_CODE_COMMENTS = YES | ||
| REFERENCED_BY_RELATION = NO | ||
| REFERENCES_RELATION = NO | ||
| REFERENCES_LINK_SOURCE = YES | ||
| SOURCE_TOOLTIPS = YES | ||
| USE_HTAGS = NO | ||
| VERBATIM_HEADERS = YES | ||
| ALPHABETICAL_INDEX = YES | ||
| GENERATE_HTML = YES | ||
| HTML_OUTPUT = html | ||
| HTML_FILE_EXTENSION = .html | ||
| HTML_COLORSTYLE = AUTO_LIGHT | ||
| HTML_COLORSTYLE_HUE = 220 | ||
| HTML_COLORSTYLE_SAT = 100 | ||
| HTML_COLORSTYLE_GAMMA = 80 | ||
| HTML_TIMESTAMP = NO | ||
| HTML_DYNAMIC_MENUS = YES | ||
| HTML_DYNAMIC_SECTIONS = NO | ||
| HTML_INDEX_NUM_ENTRIES = 100 | ||
| GENERATE_DOCSET = NO | ||
| DOCSET_FEEDNAME = "Doxygen generated docs" | ||
| DOCSET_BUNDLE_ID = org.doxygen.Project | ||
| DOCSET_PUBLISHER_ID = org.doxygen.Publisher | ||
| DOCSET_PUBLISHER_NAME = Publisher | ||
| GENERATE_HTMLHELP = NO | ||
| GENERATE_CHI = NO | ||
| BINARY_TOC = NO | ||
| TOC_EXPAND = NO | ||
| GENERATE_QHP = NO | ||
| QHP_NAMESPACE = org.doxygen.Project | ||
| QHP_VIRTUAL_FOLDER = doc | ||
| GENERATE_ECLIPSEHELP = NO | ||
| ECLIPSE_DOC_ID = org.doxygen.Project | ||
| DISABLE_INDEX = NO | ||
| GENERATE_TREEVIEW = NO | ||
| FULL_SIDEBAR = NO | ||
| ENUM_VALUES_PER_LINE = 4 | ||
| TREEVIEW_WIDTH = 250 | ||
| EXT_LINKS_IN_WINDOW = NO | ||
| OBFUSCATE_EMAILS = YES | ||
| HTML_FORMULA_FORMAT = png | ||
| FORMULA_FONTSIZE = 10 | ||
| USE_MATHJAX = NO | ||
| MATHJAX_VERSION = MathJax_2 | ||
| MATHJAX_FORMAT = HTML-CSS | ||
| SEARCHENGINE = YES | ||
| SERVER_BASED_SEARCH = NO | ||
| EXTERNAL_SEARCH = NO | ||
| SEARCHDATA_FILE = searchdata.xml | ||
| GENERATE_LATEX = NO | ||
| LATEX_OUTPUT = latex | ||
| MAKEINDEX_CMD_NAME = makeindex | ||
| LATEX_MAKEINDEX_CMD = makeindex | ||
| COMPACT_LATEX = NO | ||
| PAPER_TYPE = a4 | ||
| PDF_HYPERLINKS = YES | ||
| USE_PDFLATEX = YES | ||
| LATEX_BATCHMODE = NO | ||
| LATEX_HIDE_INDICES = NO | ||
| LATEX_BIB_STYLE = plain | ||
| LATEX_TIMESTAMP = NO | ||
| GENERATE_RTF = NO | ||
| RTF_OUTPUT = rtf | ||
| COMPACT_RTF = NO | ||
| RTF_HYPERLINKS = NO | ||
| GENERATE_MAN = NO | ||
| MAN_OUTPUT = man | ||
| MAN_EXTENSION = .3 | ||
| MAN_LINKS = NO | ||
| GENERATE_XML = NO | ||
| XML_OUTPUT = xml | ||
| XML_PROGRAMLISTING = YES | ||
| XML_NS_MEMB_FILE_SCOPE = NO | ||
| GENERATE_DOCBOOK = NO | ||
| DOCBOOK_OUTPUT = docbook | ||
| GENERATE_AUTOGEN_DEF = NO | ||
| GENERATE_PERLMOD = NO | ||
| PERLMOD_LATEX = NO | ||
| PERLMOD_PRETTY = YES | ||
| ENABLE_PREPROCESSING = YES | ||
| MACRO_EXPANSION = NO | ||
| EXPAND_ONLY_PREDEF = NO | ||
| SEARCH_INCLUDES = YES | ||
| SKIP_FUNCTION_MACROS = YES | ||
| ALLEXTERNALS = NO | ||
| EXTERNAL_GROUPS = YES | ||
| EXTERNAL_PAGES = YES | ||
| HIDE_UNDOC_RELATIONS = YES | ||
| HAVE_DOT = NO | ||
| DOT_NUM_THREADS = 0 | ||
| DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10" | ||
| DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10" | ||
| DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" | ||
| CLASS_GRAPH = YES | ||
| COLLABORATION_GRAPH = YES | ||
| GROUP_GRAPHS = YES | ||
| UML_LOOK = NO | ||
| UML_LIMIT_NUM_FIELDS = 10 | ||
| DOT_UML_DETAILS = NO | ||
| DOT_WRAP_THRESHOLD = 17 | ||
| TEMPLATE_RELATIONS = NO | ||
| INCLUDE_GRAPH = YES | ||
| INCLUDED_BY_GRAPH = YES | ||
| CALL_GRAPH = NO | ||
| CALLER_GRAPH = NO | ||
| GRAPHICAL_HIERARCHY = YES | ||
| DIRECTORY_GRAPH = YES | ||
| DIR_GRAPH_MAX_DEPTH = 1 | ||
| DOT_IMAGE_FORMAT = png | ||
| INTERACTIVE_SVG = NO | ||
| DOT_GRAPH_MAX_NODES = 50 | ||
| MAX_DOT_GRAPH_DEPTH = 0 | ||
| DOT_MULTI_TARGETS = NO | ||
| GENERATE_LEGEND = YES | ||
| DOT_CLEANUP = YES |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.