mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-22 07:11:55 +00:00
81 lines
4.9 KiB
HTML
81 lines
4.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Handbook Troggle Design</title>
|
|
<link rel="stylesheet" type="text/css" href="../../css/main2.css" />
|
|
</head>
|
|
<body><style>body { background: #fff url(/images/style/bg-system.png) repeat-x 0 0 }</style>
|
|
<h2 id="tophead">CUCC Expedition Handbook</h2>
|
|
<h1>Troggle in 2025-2030</h1>
|
|
|
|
<h2>5-Year Plan</h2>
|
|
<p>[Philip Sargent, 1 June 2020]
|
|
<ul>
|
|
<li>I reckon django has at least another 4-5 years left as a very active project (~2025).
|
|
<li>I reckon python has another 10-20 years at least.
|
|
<li>I reckon SQL databases have another 30 years at least.
|
|
</ul>
|
|
<p>I don't think writing our own object/SQL code is sensible:
|
|
there is such a lot going on we would create a large volume of software even if we stick close to the metal.
|
|
[I could well be wrong. That is Option 1.]
|
|
|
|
<h3>Option 2</h2>
|
|
<p>
|
|
We keep the same architecture as now, and incrementally replace modules that use django/SQL with direct object storage of collections using pickle(), shelve() and json().
|
|
Concurrency is not a problem as all data is read-only.
|
|
We keep the url-rewriting and html-template things in django.[and migrate the unit-tests (a recent innovation) from django to be run stand-alone.]
|
|
<p>
|
|
This means that the "django-ness" part of troggle becomes quite small.
|
|
The more modules we replace, the easier it becomes for new people to work on it - but also the easier it becomes to migrate it to newer django versions. Or the easier it becomes to move entirely from django to Jinja2 + a URL-router + a HTTP-request/response system.
|
|
The data flow through the system becomes obvious to any python programmer with no django knowledge needed.
|
|
<p>
|
|
[This could be harder than it looks if cross-referencing and pointers between collections become unmaintainable - a risk we need to watch.]
|
|
<p>
|
|
Being memory-resident, we get a 20x speed increase. Which we don't need.
|
|
|
|
<p>
|
|
So the proposed Option 2 looks a bit like this (django is the "flawed supplier" and pickle() is the "new supplier")<br><a href="
|
|
https://martinfowler.com/bliki/BranchByAbstraction.html">
|
|
<img src="https://martinfowler.com/bliki/images/branch-by-abstraction/step-2.png">Migrate to Replacement Abstraction Layer</a>
|
|
|
|
<h3>Option 2A</h2>
|
|
<p>
|
|
We also use a noSQL db with a direct and easy mapping to python collections.
|
|
[This needs to be explored, but I suspect we don't gain much compared with the effort of forcing maintainers to learn a new query language. Shelve() is already adequate.]
|
|
|
|
<h3>Option Zero</h2>
|
|
<div style="color:blue">
|
|
<p>We need to de-cruft troggle *first*: remove 'good ideas' which were never used, trim redundancies and generally reduce it in size significantly.
|
|
<p>
|
|
We should have a good look at modifying everything so that we do not read in every survey station. This means making a list of functions that we will drop and some we replace by parsing cavern output and some we calculate during importing/reading svx files.
|
|
|
|
<p>
|
|
Documentation is the key to keeping troggle in a state where someone can pick it up and do a useful week's work, e.g. extracting the parsed logbooks to use shelve() storage throughout instead of SQL. The next time someone like Radost comes along during the next 5 years we want to be able to use them effectively.
|
|
</div>
|
|
<h3>Things that could be a bit sticky</h3>
|
|
<p>
|
|
New functionality: e.g. making the whole thing GIS-centric is a possibility.
|
|
A GIS db could make a lot of sense. Not in scope for this discussion.
|
|
<p>There is not yet a front-end (javascript) framework on the client, i.e. a phone app or webpage, which is stable enough for us to commit effort to. Bits of troggle use very old jQuery ("edit this page", and the svx file editor) , and Flask looks interesting, but maybe in 2025 we could see a good way to move all the user interface to the client and just have an API on the server.
|
|
|
|
<h3>API</h3>
|
|
<p>We will also need an API now-ish, whatever we do, so that keen kids can write their own special-purpose front-ends using new cool toys. Which will keep them out of our hair.
|
|
<h3>Postscript</h3>
|
|
|
|
<p>Andy Waddington, who wrote the first expo website in 1996, mentioned that he could never get the hang of Django at all, and working with SQL databases would require some serious book-revision:
|
|
<p>
|
|
So a useful goal, I think, is to make 'troggle2' accessible to a generic python programmer with no specialist skills in any databases or frameworks. Put against that is the argument that that might double the volume of code to be maintained, which would be worse. Nevertheless, an aim to keep in mind.
|
|
|
|
But even 'just Python' is not that easy. Python is a much bigger language now than it used to be, with some esoteric corners. (Some of which could be very useful, such as the self-testing unit test
|
|
capability: <a href="https://docs.python.org/3.8/library/doctest.html">docs.python.org/3.8/library/doctest</a> )
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
Return to: <a href="trogdesign.html">Troggle design</a><br />
|
|
<hr />
|
|
</body>
|
|
</html>
|