What ceftb does is best broken down into two categories - what ceftb does for experimenters and what ceftb does for providers.
ceftb provides mechanisms for expressing experiments at multiple levels.
| #include "spirit_inc.hxx" | |
| #include <iostream> | |
| namespace x3 = boost::spirit::x3; | |
| using std::cout; | |
| using std::endl; | |
| using std::string; | |
| struct name_class; | |
| struct object_class; |
| import akka.actor.ActorSystem | |
| import java.io.File | |
| import akka.stream.io.{SynchronousFileSink, SynchronousFileSource} | |
| import akka.util.ByteString | |
| import akka.stream.scaladsl.{Source, Sink, Flow, Broadcast, FlowGraph} | |
| import akka.stream.scaladsl.FlattenStrategy | |
| import akka.stream.stage.{PushStage, SyncDirective, TerminationDirective, Context} | |
| import java.util.UUID | |
| import FlowGraph.Implicits._ | |
| import akka.stream.scaladsl.Tcp |
| /* ----------------------------------------------------------------------------- | |
| * This code is an example of how to use udev on linux to get physical | |
| * network interfaces and find out information about them | |
| * | |
| * compiling: | |
| * c++ -std=c++11 udev_example.cxx -o udev_example -ludev | |
| * | |
| * ---------------------------------------------------------------------------*/ | |
| #include <iostream> | |
| #include <vector> |
| #!/bin/bash | |
| set -u | |
| set -e | |
| srcdir="${SRCDIR:-/tmp}" | |
| jobs_=`nproc` | |
| config_="--enable-static" | |
| export CXX=clang++ |
| /******************************************************************************* | |
| * | |
| * mac_2_ifname: given a mac address return the corresponding interface name | |
| * | |
| * usage: mac2ifname <mac> | |
| * | |
| * build: c++ -std=c++14 mac2ifname.cxx -o mac2ifname | |
| * | |
| ******************************************************************************/ |
| $ strace mendeleydesktop --verbose-log | |
| execve("/usr/bin/mendeleydesktop", ["mendeleydesktop", "--verbose-log"], [/* 45 vars */]) = 0 | |
| brk(NULL) = 0x56332c2ad000 | |
| access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
| mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f776a3f1000 | |
| access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
| open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
| fstat(3, {st_mode=S_IFREG|0644, st_size=158908, ...}) = 0 | |
| mmap(NULL, 158908, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f776a3ca000 | |
| close(3) = 0 |
| /* | |
| * This file is part of the libvirt-go-xml project | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is | |
| * furnished to do so, subject to the following conditions: | |
| * |
| ansible-playbook 2.4.0.0 | |
| config file = /etc/ansible/ansible.cfg | |
| configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] | |
| ansible python module location = /usr/lib/python2.7/dist-packages/ansible | |
| executable location = /usr/bin/ansible-playbook | |
| python version = 2.7.12+ (default, Sep 17 2016, 12:08:02) [GCC 6.2.0 20160914] | |
| Using /etc/ansible/ansible.cfg as config file | |
| setting up inventory plugins | |
| Parsed 172.22.0.244, inventory source with host_list plugin | |
| Loading callback plugin default of type stdout, v2.0 from /usr/lib/python2.7/dist-packages/ansible/plugins/callback/__init__.pyc |
| message ConfigureRequset { | |
| map<string,string> payload = 1; //resource-uuid ---> xir-node-object | |
| } | |
| message ConfigureResponse { | |
| map<string,Diags> diags = 1; //resource-uuid ---> diagnostics | |
| } | |
| message Diags { |