I am adapting Prof. David Cheriton's OO software methodology to Python. It's an approach for building industrial-strength code with a disciplined architecture, consistent naming conventions, and a rigorous division of interface from implementation. I'll be adding more of his techniques in further recipes. These recipes are based on Cheriton's CS249a course at Stanford.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 | import os
import os.path
import re
" RecipeUnpacker recreates a group of Python modules into current directory. "
" See http://code.activestate.com/recipes/577297-consolidate-group-of-modules-into-one-recipe/?in=lang-python "
__author__=["Jack Trainor (jacktrainor@gmail.com)",]
__version__="2010-07-20"
client_PY = """from shipping import *
import instance
__author__=[%DQ%Jack Trainor (jacktrainor@gmail.com)%DQ%,]
__version__=%DQ%2010-07-20%DQ%
class Tester(object):
def __init__(self):
self.__mgr = None
self.__count = 0
self.__successes = 0
def setup(self):
self.__mgr = instance.ShippingInstanceMgr()
pass
def takedown(self):
self.__mgr = None
def mgr(self):
return self.__mgr
def test(self, result):
self.__count += 1
if result:
self.__successes += 1
else:
self.__successes += 0 # for breakpoint
def test_bool(self, result, flag):
self.test(result == flag)
def test_instance_new(self, name_, type_):
instance_ = self.mgr().instance_new(name_, type_)
self.test(instance_ != None)
if instance_:
self.test(instance_.name() == name_)
self.test(instance_.type() == type_)
return instance_
def test_attribute(self, instance_, key, val, flag=True):
instance_.attribute_is(key, val)
self.test_bool(instance_.attribute(key) == val, flag)
def test_readonly_attribute(self, instance_, key, expected):
val = instance_.attribute(key)
self.test(val == expected)
def test_manager(self):
self.setup()
self.test(self.mgr() != None)
self.takedown()
def test_location(self):
self.setup()
a = %DQ%a%DQ%
instance_ = self.test_instance_new(a, LOCATION_TYPE)
self.test_readonly_attribute(instance_, LOC_SHIPMENT_COUNT_ATTR, %DQ%0%DQ%)
self.takedown()
def test_origin(self):
self.setup()
a = %DQ%a%DQ%
instance_ = self.test_instance_new(a, ORIGIN_TYPE)
self.test_attribute(instance_, ORG_DESTINATION_ATTR, %DQ%xxx%DQ%)
self.test_attribute(instance_, ORG_SHIPMENT_COMPLETE_ATTR, %DQ%xxx%DQ%)
self.test_readonly_attribute(instance_, ORG_NEXT_SHIPMENT_NAME_ATTR, %DQ%Ship:a:1%DQ%)
self.takedown()
def test_segment(self):
self.setup()
a = %DQ%a%DQ%
instance_ = self.test_instance_new(a, SEGMENT_TYPE)
self.test_attribute(instance_, SEG_SOURCE_ATTR, %DQ%xxx%DQ%)
self.test_attribute(instance_, SEG_DESTINATION_ATTR, %DQ%xxx%DQ%)
self.test_attribute(instance_, SEG_DISTANCE_ATTR, %DQ%10.00%DQ%)
self.takedown()
def test_shipment(self):
self.setup()
a = %DQ%a%DQ%
instance_ = self.test_instance_new(a, SHIPMENT_TYPE)
self.test_attribute(instance_, SHP_DESTINATION_ATTR, %DQ%xxx%DQ%)
self.test_attribute(instance_, SHP_ORIGIN_ATTR, %DQ%xxx%DQ%)
self.test_attribute(instance_, SHP_LOCATION_ATTR, %DQ%xxx%DQ%)
self.test_attribute(instance_, SHP_SEGMENT_ATTR, %DQ%xxx%DQ%)
self.test_attribute(instance_, SHP_SPEED_ATTR, %DQ%60.00%DQ%)
self.takedown()
def test_deletion(self, type_):
a = %DQ%a%DQ%
inst_a = self.mgr().instance_new(a, type_)
self.mgr().instance_del(a)
inst_a = self.mgr().instance(a)
self.test(inst_a == None)
def test_deletions(self):
self.setup()
self.test_deletion(LOCATION_TYPE)
self.test_deletion(ORIGIN_TYPE)
self.test_deletion(SEGMENT_TYPE)
self.test_deletion(SHIPMENT_TYPE)
self.takedown()
def execute(self):
print %DQ%Tester.execute()...%DQ%
self.test_manager()
self.test_location()
self.test_origin()
self.test_segment()
self.test_shipment()
self.test_deletions()
self.report()
def report(self):
print %DQ%Tester:%DQ%, self.__successes, %DQ%out of%DQ%, self.__count,%DQ%tests.%DQ%
if (self.__successes != self.__count):
print %DQ%Tester: FAILED.%DQ%
def main():
Tester().execute()
raw_input(%DQ%Press RETURN...%DQ%)
if __name__ == %DQ%__main__%DQ%:
print __file__
main()
"""
engine_PY = """import sys
from shipping import *
class Engine(object):
def __init__(self):
self.__next_shipment_connector = %DQ%%DQ%
self.__instance_eng = {}
def activity_mgr(self):
return self.__activity_mgr
def instance_eng_new(self, name_, type_):
import instance_eng
import location
import origin
import segment
import shipment
instance_eng_ = self.instance_eng(name_)
if not instance_eng_:
if type_ == LOCATION_TYPE:
instance_eng_ = location.Location(name_, type_, self)
elif type_ == SEGMENT_TYPE:
instance_eng_ = segment.Segment(name_, type_, self)
elif type_ == SHIPMENT_TYPE:
instance_eng_ = shipment.Shipment(name_, type_, self)
elif type_ == ORIGIN_TYPE:
instance_eng_ = origin.Origin(name_, type_, self)
else:
sys.stderr.write(%DQ%Engine.instance_eng_new: no such type %s.%SLASH%n%DQ% % type_)
if instance_eng_:
self.__instance_eng[name_] = instance_eng_
else:
sys.stderr.write(%DQ%Engine.instance_eng_new: failed to create %s of type %s.%SLASH%n%DQ% % (name_, type_))
else:
sys.stderr.write(%DQ%Engine.instance_eng_new: %s already exists.%SLASH%n%DQ% % name_)
return instance_eng_
def instance_eng(self, name_):
instance_eng_ = self.__instance_eng.get(name_, None)
return instance_eng_
def instance_eng_del(self, name_):
instance_eng_ = self.instance_eng(name_)
if instance_eng_:
del self.__instance_eng[name_]
"""
instance_PY = """def abstract(): # run-time emulation of C++ abstract method -- forces error if subclass doesn%SQ%t override
import inspect
caller = inspect.getouterframes(inspect.currentframe())[1][3]
raise NotImplementedError(caller + %SQ% must be implemented in subclass%SQ%)
class Instance(object):
def __init__(self, name_, type_):
self.__name = name_
self.__type = type_
def name(self):
return self.__name
def type(self):
return self.__type
def attribute(self, key): abstract()
def attribute_is(self, key, val): abstract()
class Manager(object):
def __init__(self):
pass
def instance(self, name_): abstract()
def instance_new(self, name_, type_): abstract()
def instance_del(self, name_): abstract()
def ShippingInstanceMgr():
import instance_impl
return instance_impl.ManagerImpl()
"""
instance_eng_PY = """from shipping import *
import instance
class InstanceEng(object):
def __init__(self, name_, type_, engine_):
self.__name = name_
self.__type = type_
self.__engine = engine_
def name(self):
return self.__name
def type(self):
return self.__type
def engine(self):
return self.__engine
"""
instance_impl_PY = """import sys
from shipping import *
import instance
import engine
class ManagerImpl(instance.Instance.Manager):
def __init__(self):
self.__instance = {}
self.__engine = engine.Engine()
def engine(self):
return self.__engine
def instance(self, name_):
return self.__instance.get(name_, None)
def instance_new(self, name_, type_):
import location_rep
import origin_rep
import segment_rep
import shipment_rep
instance_ = self.instance(name_)
if not instance_:
self.engine().instance_eng_new(name_, type_)
if type_ == LOCATION_TYPE:
instance_ = location_rep.LocationRep(name_, type_, self)
elif type_ == ORIGIN_TYPE:
instance_ = origin_rep.OriginRep(name_, type_, self)
elif type_ == SEGMENT_TYPE:
instance_ = segment_rep.SegmentRep(name_, type_, self)
elif type_ == SHIPMENT_TYPE:
instance_ = shipment_rep.ShipmentRep(name_, type_, self)
else:
sys.stderr.write(%DQ%ManagerImpl.instance_new: no such type %s.%SLASH%n%DQ% % type_)
if instance_:
self.__instance[name_] = instance_
else:
sys.stderr.write(%DQ%ManagerImpl.instance_new: failed to create %s of type %s.%SLASH%n%DQ% % (name_, type_))
else:
sys.stderr.write(%DQ%ManagerImpl.instance_new: %s already exists.%SLASH%n%DQ% % name_)
return instance_
def instance_del(self, name_):
instance_ = self.instance(name_)
if instance_:
del self.__instance[name_]
self.engine().instance_eng_del(name_)
class InstanceImpl(instance.Instance):
def __init__(self, name_, type_, mgr_):
instance.Instance.__init__(self, name_, type_)
self.__mgr = mgr_
self.__name = name_
self.__type = type_
def name(self):
return self.__name
def type(self):
return self.__type
def mgr(self):
return self.__mgr
def engine(self):
return self.mgr().engine()
def attribute(self, key): instance.abstract()
def attribute_is(self, key, val): instance.abstract()
def attribute_err(self, key):
sys.stderr.write(%SQ%Can%SLASH%%SQ%t read %DQ%%s%DQ% attribute of %DQ%%s%DQ%%SLASH%n%SQ% % (key, self.name))
def attribute_is_err(self, key, val):
sys.stderr.write(%SQ%Can%SLASH%%SQ%t write %DQ%%s%DQ% to %s%DQ% attribute of %DQ%%s%DQ%%SLASH%n%SQ% % (val, key, self.name))
if __name__ == %DQ%__main__%DQ%:
print __file__
"""
location_PY = """from shipping import *
import engine
import instance_eng
class Location(instance_eng.InstanceEng):
def __init__(self, name_, type_, engine_):
instance_eng.InstanceEng.__init__(self, name_, type_, engine_)
self.__shipment_count = 0
def shipment_count(self):
return self.__shipment_count
def shipment_count_inc(self):
self.shipment_count_is(self.__shipment_count + 1)
def shipment_count_is(self, val):
if self.__shipment_count != val:
self.__shipment_count = val
"""
location_rep_PY = """from shipping import *
import instance_impl
import location
class LocationRep(instance_impl.InstanceImpl):
def __init__(self, name_, type_, mgr_):
instance_impl.InstanceImpl.__init__(self, name_, type_, mgr_)
def attribute(self, key):
location_ = self.mgr().engine().instance_eng(self.name())
if key is LOC_SHIPMENT_COUNT_ATTR:
return str(location_.shipment_count())
else:
self.attribute_err(key)
return %DQ%%DQ%
def attribute_is(self, key, val):
self.attribute_is_err(key, val)
"""
origin_PY = """from shipping import *
import engine
import location
class Origin(location.Location):
def __init__(self, name_, type_, engine_):
location.Location.__init__(self, name_, type_, engine_)
# self.__shipment_arrived = %DQ%%DQ%
self.__shipment_complete = %DQ%%DQ%
self.__destination = %DQ%%DQ%
self.__shipment_id = 0
def next_shipment_name(self):
self.__shipment_id += 1
return %DQ%%s:%s:%d%DQ% % (%DQ%Ship%DQ%, self.name(), self.__shipment_id)
def destination(self):
return self.__destination
def destination_is(self, val):
if self.__destination != val:
self.__destination = val
def shipment_complete(self):
return self.__shipment_complete
def shipment_complete_is(self, val):
if self.__shipment_complete != val:
self.__shipment_complete = val
"""
origin_rep_PY = """from shipping import *
import location_rep
import origin
class OriginRep(location_rep.LocationRep):
def __init__(self, name_, type_, mgr_):
location_rep.LocationRep.__init__(self, name_, type_, mgr_)
def attribute(self, key):
origin_ = self.mgr().engine().instance_eng(self.name())
if key is ORG_DESTINATION_ATTR:
return origin_.destination()
elif key is ORG_NEXT_SHIPMENT_NAME_ATTR:
return origin_.next_shipment_name()
elif key is ORG_SHIPMENT_COMPLETE_ATTR:
return origin_.shipment_complete()
else:
return location_rep.LocationRep.attribute(self, key)
return %DQ%%DQ%
def attribute_is(self, key, val):
origin_ = self.mgr().engine().instance_eng(self.name())
if key is ORG_DESTINATION_ATTR:
origin_.destination_is(val)
elif key is ORG_SHIPMENT_COMPLETE_ATTR:
origin_.shipment_complete_is(val)
else:
location_rep.LocationRep.attribute_is(self, key, val)
"""
segment_PY = """from shipping import *
import engine
import instance_eng
class Segment(instance_eng.InstanceEng):
def __init__(self, name_, type_, engine_):
instance_eng.InstanceEng.__init__(self, name_, type_, engine_)
self.__source = %DQ%%DQ%
self.__destination = %DQ%%DQ%
self.__distance = 0
def source(self):
return self.__source
def source_is(self, val):
if self.__source != val:
self.__source = val
def destination(self):
return self.__destination
def destination_is(self, val):
if self.__destination != val:
self.__destination = val
def distance(self):
return self.__distance
def distance_is(self, val):
if self.__distance != val:
self.__distance = val
"""
segment_rep_PY = """from shipping import *
import instance_impl
import segment
class SegmentRep(instance_impl.InstanceImpl):
def __init__(self, name_, type_, mgr_):
instance_impl.InstanceImpl.__init__(self, name_, type_, mgr_)
def attribute(self, key):
segment_ = self.mgr().engine().instance_eng(self.name())
if key == SEG_SOURCE_ATTR:
return segment_.source()
elif key == SEG_DESTINATION_ATTR:
return segment_.destination()
elif key == SEG_DISTANCE_ATTR:
return %DQ%%.2f%DQ% % segment_.distance()
else:
self.attribute_err(key)
return %DQ%%DQ%
def attribute_is(self, key, val):
segment_ = self.mgr().engine().instance_eng(self.name())
if key == SEG_SOURCE_ATTR:
segment_.source_is(val)
elif key == SEG_DESTINATION_ATTR:
segment_.destination_is(val)
elif key == SEG_DISTANCE_ATTR:
segment_.distance_is(float(val))
else:
self.attribute_is_err(key, val)
"""
shipment_PY = """from shipping import *
import engine
import instance_eng
class Shipment(instance_eng.InstanceEng):
def __init__(self, name_, type_, engine_):
instance_eng.InstanceEng.__init__(self, name_, type_, engine_)
self.__destination = %DQ%%DQ%
self.__origin = %DQ%%DQ%
self.__location = %DQ%%DQ%
self.__segment = %DQ%%DQ%
self.__speed = 1.0
def destination(self):
return self.__destination
def destination_is(self, val):
if self.__destination != val:
self.__destination = val
def origin(self):
return self.__origin
def origin_is(self, val):
if self.__origin != val:
self.__origin = val
def location(self):
return self.__location
def location_is(self, val):
if self.__location != val:
self.__location = val
def segment(self):
return self.__segment
def segment_is(self, val):
if self.__segment != val:
self.__segment = val
def speed(self):
return self.__speed
def speed_is(self, val):
if self.__speed != val:
self.__speed = val
"""
shipment_rep_PY = """from shipping import *
import instance_impl
import shipment
class ShipmentRep(instance_impl.InstanceImpl):
def __init__(self, name_, type_, mgr_):
instance_impl.InstanceImpl.__init__(self, name_, type_, mgr_)
def attribute(self, key):
shipment_ = self.mgr().engine().instance_eng(self.name())
if key == SHP_DESTINATION_ATTR:
return shipment_.destination()
elif key == SHP_ORIGIN_ATTR:
return shipment_.origin()
elif key == SHP_LOCATION_ATTR:
return shipment_.location()
elif key == SHP_SEGMENT_ATTR:
return shipment_.segment()
elif key == SHP_SPEED_ATTR:
return %DQ%%.2f%DQ% % shipment_.speed()
else:
self.attribute_err(key)
return %DQ%%DQ%
def attribute_is(self, key, val):
shipment_ = self.mgr().engine().instance_eng(self.name())
if key == SHP_DESTINATION_ATTR:
shipment_.destination_is(val)
elif key == SHP_ORIGIN_ATTR:
shipment_.origin_is(val)
elif key == SHP_LOCATION_ATTR:
shipment_.location_is(val)
elif key == SHP_SEGMENT_ATTR:
shipment_.segment_is(val)
elif key == SHP_SPEED_ATTR:
shipment_.speed_is(float(val))
else:
self.attribute_is_err(key, val)
"""
shipping_PY = """LOCATION_TYPE = %DQ%Location%DQ%
LOC_SHIPMENT_COUNT_ATTR = %DQ%Shipment count%DQ%
ORIGIN_TYPE = %DQ%Origin%DQ%
ORG_DESTINATION_ATTR = %DQ%Destination%DQ%
ORG_NEXT_SHIPMENT_NAME_ATTR = %DQ%Next shipment name%DQ%
ORG_SHIPMENT_COMPLETE_ATTR = %DQ%Shipment complete%DQ%
SEGMENT_TYPE = %DQ%Segment%DQ%
SEG_SOURCE_ATTR = %DQ%Source%DQ%
SEG_DESTINATION_ATTR = %DQ%Destination%DQ%
SEG_DISTANCE_ATTR = %DQ%Distance%DQ%
SHIPMENT_TYPE = %DQ%Shipment%DQ%
SHP_DESTINATION_ATTR = %DQ%Destination%DQ%
SHP_ORIGIN_ATTR = %DQ%Origin%DQ%
SHP_LOCATION_ATTR = %DQ%Location%DQ%
SHP_SEGMENT_ATTR = %DQ%Segment%DQ%
SHP_SPEED_ATTR = %DQ%Speed%DQ%
"""
class RecipeUnpacker(object):
SQUOTE_ESCAPE = "%SQ%"
DQUOTE_ESCAPE = "%DQ%"
SLASH_ESCAPE = "%SLASH%"
TRIPLE_SQUOTE_ESCAPE = "%SQSQSQ%"
TRIPLE_DQUOTE_ESCAPE = "%DQDQDQ%"
def __init__(self, dir=None):
self.dir = dir
if not self.dir:
self.dir = os.getcwd()
if not os.path.exists(self.dir):
os.makedirs(self.dir)
def execute(self):
os.chdir(self.dir)
for key in globals():
match = re.match(("^([A-Za-z0-9_]+)_PY$"), key)
if match:
file_name = "%s.py" % match.group(1)
path = os.path.join(self.dir, file_name)
print "Unpacking %s ..." % path
src = globals()[key]
src = src.replace(RecipeUnpacker.TRIPLE_SQUOTE_ESCAPE, "'''")
src = src.replace(RecipeUnpacker.TRIPLE_DQUOTE_ESCAPE, '"""')
src = src.replace(RecipeUnpacker.SQUOTE_ESCAPE, "'")
src = src.replace(RecipeUnpacker.DQUOTE_ESCAPE, '"')
src = src.replace(RecipeUnpacker.SLASH_ESCAPE, "\\")
open(path, "w").write(src)
if __name__ == "__main__":
print __file__
RecipeUnpacker().execute()
raw_input("RecipeUnpacker complete. Press RETURN...")
|
Download the enclosed code as _recipe.py. Run _recipe.py to unpack several Python source modules comprising the OO framework. Run client.py to test the code.
See Recipe 577297: "Consolidate group of modules into one recipe" for explanation of how source files are packed and unpacked.
Notes:
This sample code is the beginning of a program simulating a shipping network. My intent is to illustrate Cheriton's techniques as applied to a simulation -- a demanding area of computation and one to which Cheriton's approach is well-suited.
The main points to note are the simplicity of the attribute-based API and the isolation of the client from the engine.
The string-based nature of the client interface is not required but is convenient and serves to illustrate that the API is not coupled to the internal representation of the data.
The code divides into three classic layers:
• Client (client.py, instance.py, shipping.py) ○ Client uses the Instance.Manager interface to create, access, and delete instances. ○ Client uses the Instance interface to read and write the attributes of an instance. § Attributes may be read-write, read-only, or write-only, as desired. § Reading an attribute has no effect on the external object state. [nilpotent] § Writing an attribute has no effect on the object state unless the write value is different from the current value. [idempotent]
• Representation (instance_impl.py, *rep.py) ○ The Rep layer subclasses the Instance.Manager into Instance subtypes. ○ The Rep layer brokers requests from the client layer to the engine layer. ○ The Rep layer manages its own list of rep objects that communicate with corresponding engine objects.
• Engine (engine.py, non-rep classes) ○ The Engine layer stores the data for the attributes and does the actual work so that the attributes match the state of the program and its objects. § The value of an attribute may be stored directly in an instance variable or be the result of an engine calculation. ○ The Engine code ultimately supports the attribute-based interface seen by the client, but need not be written in the attribute-based style.
Note that the calling chain in this paradigm proceeds strictly from the client to the rep layer and finally to the engine.
According to Cheriton's terminology this is "calling up" as opposed to "calling down," as in a client "calling up" to a server, although the client could equally well be calling engine code located in the local machine's hardware that uses a Cheriton attribute-based interface.
Communication in the other direction can occur but only through the notification mechanism, which is a callback setup that works in a manner similar to a hardware interrupt or a database trigger. Notifications will be covered in the next recipe of this series.
In Cheriton's methodology there is only one Manager object plus Instance objects of various types, and the attributes which store the state of these Instance objects. That's all there is. A Cheriton API is comprised entirely of calls that create, access, or delete instances, and calls that read or write the attributes of these instances. All the details are handled in the Engine layer, invisible to the client.
The consequences of this methodology are two-fold:
(1) The programmer evolves a software design by working from the "outside-in" -- by thinking at first purely in terms of objects and attributes and not about behaviors and mechanisms.
(2) Once the objects and attributes have been chosen, the API falls out predictably. The client accesses an instance by its name, then reads or writes an attribute using getter/setters that look like "<attribute>()" or "<attribute>_is(val)". Conceptually a Cheriton API is based on nouns, not verbs.
As a result of (2), the code is straightforward to organize while writing, and straightforward to comprehend while reading. Cheriton's ideal is that the code is its own documentation -- the true representation, rather than comments, specifications, paraphrases or diagrams. The generation of the latter materials takes time, is error-prone and easily falls out of sync with the code itself.
I'm intrigued by the purity and comprehensiveness of Prof. Cheriton's approach and its potential for improving the software development process. I'm curious as to how well it works in practice on real, large projects.
Disclaimer: I have taken Prof. Cheriton's course CS249a as part of the Stanford Continuing Professional Development Program, but the code I present here is my own work implementing his concepts to the best of my understanding based on course lectures, textbook, and minimal C++ code samples. I recommend CS249a but advise that it is more time-consuming than it appears.