The repository collection is the lead character in this story. Each repository provides documentation
for, and access to, source code for a utility, tool, component, library, project, or set of demos.
They will also soon contain static libraries compiled for one or more of Windows 10, Ubuntu 18.04, and macOS Mohave.
The intent is to make using repository code almost as easy as using language libraries. Some experimentation is
needed to decide how best to accomplish this and that is starting now.
The current plan is to use Visual Studio
Community Edition, 2019 or later for Windows builds. For Ubuntu we will probably use Visual Studio Code1.
On macOs, we will try both Visual Studio for Mac and Visual Studio Code.
Repository Policies:
Each documentation page is intended to have:
Concept statement - a few sentences that describe the mission of the code.
Usage - how the code will be used by people or other software.
Design - text and UML diagrams giving an abstract view of the code's structure
and responsibilities.
Status - any known deficiencies and plans for improvement.
Each repository has code that builds to a static library and many provide an interface and
object factory for other code to initialize and use the code. It also is expected to have a small
demonstration program and a larger suite of test cases.
At this point in time a lot of that remains to be put in place. All the repositories have
demonstration code, but only one, FileSystem, has a reasonably complete test suite.
Several conventions are used for constructing repositories:
Naming Convention:
Repositories dominated by C++ code use a prefix of Cpp. Those for C# code use a Cs prefix. JavaScript repos
use the Js prefix. When we start
adding Java repos they will use a Jv prefix. Repositories for tools do not use a prefix.
Standard Code Only Convention:
With the exception of a few experimental repositories2 - using Ex prefix for names - all code will conform
to the current standard, e.g., C++17, C# 8.0, Java 13. For example, we won't use C++ modules until the C++20
standard is approved and has broad compiler support3.
Documentation Convention:
Every repository will have web page documentation that describes the concept, design, use, and status of its code.
The intent is that documentation pages will normally be relatively brief, e.g., ideally what can be seen in a single
browser view without (much) scrolling.
The utilities, components, and Libraries repository collections hold relatively small single-purpose software parts that
are as free of dependencies as practical. Each has demonstration code that shows how the code is used and what it can do.
The goal is to enable use by incorporating a static library or dropping the repository code folder into an application solution.
Tools and Projects collections have functionality that is complete or demonstrates a major subsystem, like communication.
The tools repositories each contain an executable for at least one of the supported platforms.
With the advent of .Net Core, all of the programming languages used can build for any of the platforms supported, e.g., Windows, Linux, and macOS.
However, it is unlikely that all of the repositories will hold libraries or executables for all three.
Visual Studio Code is very different from Visual Studio. It is based on the Electron JavaScript library and provides
compilation support only through extensions.
No experimental repositories are included in the current site, but I expect that some experimentation with
C++ modules will be added soon.
This means Microsoft cl and csc, gcc's g++, clang, oracle's Javac.