core_algorithm.alc 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361
  1. include "modelling.alh"
  2. include "library.alh"
  3. include "primitives.alh"
  4. include "constructors.alh"
  5. include "object_operations.alh"
  6. include "mini_modify.alh"
  7. include "model_management.alh"
  8. include "ramify.alh"
  9. include "conformance_scd.alh"
  10. include "transform.alh"
  11. include "metamodels.alh"
  12. include "utils.alh"
  13. include "conformance_finding.alh"
  14. include "typing.alh"
  15. include "compiler.alh"
  16. include "random.alh"
  17. String core_model_location = "models/core"
  18. Element core = ?
  19. String current_user_id
  20. Element caches
  21. String function get_foldername(name : String):
  22. Element result
  23. result = string_split(name, "/")
  24. list_pop_final(result)
  25. if (list_len(result) == 0):
  26. return ""!
  27. // 'result' now contains a list of entries which we have to join with the seperator
  28. String str
  29. str = list_pop(result, 0)
  30. while (list_len(result) > 0):
  31. str = string_join(str + "/", list_pop(result, 0))
  32. return str!
  33. String function get_filename(name : String):
  34. return list_pop_final(string_split(name, "/"))!
  35. String function full_name(model_id : String):
  36. return read_attribute(core, model_id, "name")!
  37. Void function initialize_core():
  38. // TODO make this more flexible by putting it in the bootstrap in a similar way as other models
  39. add_code_model(import_node("models/ActionLanguage"), "models/Conformance_MV", wrap_conformance)
  40. return !
  41. Boolean function is_typed_by(model_id : String, metamodel_id : String):
  42. return (set_len(get_instanceOf_links(model_id, metamodel_id)) > 0)!
  43. Element function get_instanceOf_links(model_id : String, metamodel_id : String):
  44. Element result
  45. Element options
  46. String elem
  47. result = set_create()
  48. options = allOutgoingAssociationInstances(core, model_id, "instanceOf")
  49. while (set_len(options) > 0):
  50. elem = set_pop(options)
  51. if (value_eq(readAssociationDestination(core, elem), metamodel_id)):
  52. set_add(result, elem)
  53. return result!
  54. String function get_instanceOf_link(model_id : String, metamodel_id : String):
  55. Element all_links
  56. String choice
  57. all_links = get_instanceOf_links(model_id, metamodel_id)
  58. if (set_len(all_links) > 1):
  59. log("WARNING: multiple instanceOf relations were detected for this model; picking one at random!")
  60. elif (set_len(all_links) == 0):
  61. log("No types found!")
  62. log("Source model: " + cast_value(read_attribute(core, model_id, "name")))
  63. log("Target meta-model: " + cast_value(read_attribute(core, metamodel_id, "name")))
  64. return read_root()!
  65. choice = set_pop(all_links)
  66. return choice!
  67. Element function get_full_model(model_id : String, metamodel_id : String):
  68. // TODO we are restricted to using formalisms/SimpleClassDiagrams as M3 level, through this code!
  69. Element m
  70. Element all_links
  71. String choice
  72. choice = get_instanceOf_link(model_id, metamodel_id)
  73. m = dict_create()
  74. dict_add(m, "model", import_node(read_attribute(core, model_id, "location")))
  75. // TODO for now this is restricted to the fixed semantics
  76. // dict_add(m, "semantics", set_pop(allAssociationDestinations(core, choice, "semantics")))
  77. dict_add(m, "semantics", get_entry_id("models/conformance_mv"))
  78. if (metamodel_id == model_id):
  79. // Found the meta-circular level, so we can stop!
  80. dict_add(m, "metamodel", m)
  81. else:
  82. Element mm
  83. mm = get_full_model(metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  84. if (element_eq(mm, read_root())):
  85. return read_root()!
  86. else:
  87. dict_add(m, "metamodel", mm)
  88. if (element_neq(choice, read_root())):
  89. Element types
  90. types = allAssociationDestinations(core, choice, "typing")
  91. if (set_len(types) == 1):
  92. // Add the preferred original type mapping
  93. set_type_mapping(m, import_node(read_attribute(core, set_pop(types), "location")))
  94. else:
  95. // Start from scratch
  96. new_type_mapping(m)
  97. else:
  98. // Start from scratch
  99. new_type_mapping(m)
  100. if (find_type_mapping(m)):
  101. // TODO store the found type model somewhere
  102. return m!
  103. else:
  104. log("No type mapping could be deduced!")
  105. log("Error for " + cast_value(read_attribute(core, model_id, "name")))
  106. log(" and type " + cast_value(read_attribute(core, metamodel_id, "name")))
  107. return read_root()!
  108. Integer function get_relation_to_model(user_id : String, model_id : String):
  109. if (set_in(allAssociationDestinations(core, model_id, "owner"), user_id)):
  110. // We are the owner
  111. return 0!
  112. else:
  113. String group_id
  114. group_id = set_pop(allAssociationDestinations(core, model_id, "group"))
  115. if (set_in(allAssociationDestinations(core, user_id, "belongsTo"), group_id)):
  116. // We are in the owning group
  117. return 1!
  118. else:
  119. // We are not related whatsoever
  120. return 2!
  121. Boolean function is_admin(user_id : String):
  122. if (read_attribute(core, user_id, "admin")):
  123. return True!
  124. else:
  125. return False!
  126. Boolean function allow_read(user_id : String, model_id : String):
  127. if (is_admin(user_id)):
  128. // Is admin, so always allow
  129. return True!
  130. else:
  131. // Check permissions
  132. String permission
  133. permission = string_get(read_attribute(core, model_id, "permissions"), get_relation_to_model(user_id, model_id))
  134. if (bool_or(permission == "1", permission == "2")):
  135. return True!
  136. else:
  137. return False!
  138. Boolean function allow_write(user_id : String, model_id : String):
  139. if (is_admin(user_id)):
  140. // Is admin, so always allow
  141. return True!
  142. else:
  143. // Check permissions
  144. String permission
  145. permission = string_get(read_attribute(core, model_id, "permissions"), get_relation_to_model(user_id, model_id))
  146. if (permission == "2"):
  147. return True!
  148. else:
  149. return False!
  150. Boolean function allow_change_metadata(user_id : String, model_id : String):
  151. if (is_admin(user_id)):
  152. // Is admin, so always allow
  153. return True!
  154. else:
  155. if (get_relation_to_model(user_id, model_id) == 0):
  156. // Only owner can chmod
  157. return True!
  158. else:
  159. return False!
  160. Boolean function allow_group_modify(user_id : String, group_id : String):
  161. if (is_admin(user_id)):
  162. // Is admin, so always allow
  163. return True!
  164. else:
  165. if (set_in(allAssociationDestinations(core, group_id, "owner"), user_id)):
  166. // We are an owner
  167. return True!
  168. else:
  169. return False!
  170. Boolean function check_login(user_id : String):
  171. String password
  172. String stored_password
  173. stored_password = read_attribute(core, user_id, "password")
  174. output("Password for existing user?")
  175. password = hash(input())
  176. return password == stored_password!
  177. Void function new_task():
  178. String username
  179. String user_id
  180. String password
  181. // Load in a hard-reference to the previously created model
  182. core = import_node(core_model_location)
  183. while (True):
  184. output("Log on as which user?")
  185. username = input()
  186. user_id = get_user_id(username)
  187. if (user_id == ""):
  188. // New user
  189. // Add user to Core Formalism
  190. user_id = instantiate_node(core, "User", "")
  191. instantiate_attribute(core, user_id, "name", username)
  192. instantiate_attribute(core, user_id, "admin", False)
  193. output("This is a new user: please give password!")
  194. password = hash(input())
  195. output("Please repeat the password")
  196. if (password == hash(input())):
  197. output("Passwords match!")
  198. instantiate_attribute(core, user_id, "password", password)
  199. break!
  200. else:
  201. output("Not the same password!")
  202. else:
  203. if (check_login(user_id)):
  204. break!
  205. else:
  206. output("Wrong password!")
  207. user_function_skip_init(user_id)
  208. // User destroyed already, so just stop execution
  209. return!
  210. String function get_entry_id(name : String):
  211. Element hierarchy_split
  212. String current
  213. Integer i
  214. Element elems
  215. String current_part
  216. String elem
  217. Boolean found
  218. if (name == ""):
  219. return caches["root"]!
  220. if (dict_in(caches["models"], name)):
  221. if (dict_in(core, caches["models"])):
  222. if (full_name(caches["models"][name]) == name):
  223. return caches["models"][name]!
  224. current = get_entry_id(get_foldername(name))
  225. if (current == ""):
  226. return ""!
  227. if (current_part != ""):
  228. elems = allAssociationDestinations(core, current, "contains")
  229. while (set_len(elems) > 0):
  230. elem = set_pop(elems)
  231. dict_overwrite(caches["models"], read_attribute(core, elem, "name"), elem)
  232. if (value_eq(name, read_attribute(core, elem, "name"))):
  233. return elem!
  234. else:
  235. return current!
  236. return ""!
  237. String function get_service_id(name : String):
  238. core = import_node(core_model_location)
  239. Element services
  240. String service
  241. services = allInstances(core, "Service")
  242. while (set_len(services) > 0):
  243. service = set_pop(services)
  244. if (value_eq(read_attribute(core, service, "name"), name)):
  245. return service!
  246. return ""!
  247. String function get_user_id(name : String):
  248. Element users
  249. String user
  250. users = allInstances(core, "User")
  251. while (set_len(users) > 0):
  252. user = set_pop(users)
  253. if (value_eq(read_attribute(core, user, "name"), name)):
  254. return user!
  255. return ""!
  256. String function get_group_id(name : String):
  257. Element groups
  258. String group
  259. groups = allInstances(core, "Group")
  260. while (set_len(groups) > 0):
  261. group = set_pop(groups)
  262. if (value_eq(read_attribute(core, group, "name"), name)):
  263. return group!
  264. return ""!
  265. String function create_folders(user_id : String, folder_name : String):
  266. Element hierarchy
  267. Integer i
  268. String prev
  269. String elem
  270. String new_entry
  271. String cummul
  272. if (get_entry_id(folder_name) != ""):
  273. // Folders already exist, so don't iterate
  274. return get_entry_id(folder_name)!
  275. i = 0
  276. hierarchy = string_split(folder_name, "/")
  277. prev = get_entry_id("")
  278. cummul = ""
  279. // Go through folders first
  280. while (i < list_len(hierarchy)):
  281. elem = list_read(hierarchy, i)
  282. if (cummul == ""):
  283. cummul = elem
  284. else:
  285. cummul = string_join(cummul + "/", elem)
  286. if (get_entry_id(cummul) == ""):
  287. if (allow_write(user_id, prev)):
  288. // Element does not exist yet!
  289. new_entry = instantiate_node(core, "Folder", "")
  290. instantiate_attribute(core, new_entry, "name", cummul)
  291. instantiate_attribute(core, new_entry, "permissions", "200")
  292. instantiate_link(core, "contains", "", prev, new_entry)
  293. instantiate_link(core, "group", "", new_entry, get_group_id("nobody"))
  294. instantiate_link(core, "owner", "", new_entry, user_id)
  295. else:
  296. return read_root()!
  297. prev = get_entry_id(cummul)
  298. i = i + 1
  299. return prev!
  300. String function store_entry(model_id : String, full_name : String, user_id : String):
  301. String prev
  302. if (get_entry_id(full_name) != ""):
  303. // Delete any old models
  304. model_delete(get_entry_id(full_name))
  305. prev = create_folders(user_id, get_foldername(full_name))
  306. instantiate_link(core, "contains", "", prev, model_id)
  307. return full_name!
  308. String function export_typing(model : Element, name : String):
  309. String result
  310. result = instantiate_node(core, "TypeMapping", "")
  311. name = "type mappings/" + name
  312. // Create type mapping model
  313. String location
  314. location = "type mappings/" + cast_id(get_type_mapping(model))
  315. export_node(location, get_type_mapping(model))
  316. String instance_of
  317. name = store_entry(result, name, get_user_id("admin"))
  318. instantiate_attribute(core, result, "name", name)
  319. instantiate_attribute(core, result, "location", location)
  320. instantiate_attribute(core, result, "permissions", "200")
  321. instantiate_link(core, "owner", "", result, current_user_id)
  322. instantiate_link(core, "group", "", result, get_group_id("nobody"))
  323. instance_of = instantiate_link(core, "instanceOf", "", result, get_entry_id("formalisms/TypeMapping"))
  324. instantiate_link(core, "semantics", "", instance_of, get_entry_id("models/conformance_mv"))
  325. return result!
  326. Void function model_create(model : Element, name : String, type_id : String, kind : String):
  327. String location
  328. String model_id
  329. String instance_of
  330. // Create model itself
  331. location = "models/" + cast_id(model)
  332. export_node(location, model["model"])
  333. model_id = instantiate_node(core, kind, "")
  334. instantiate_attribute(core, model_id, "name", store_entry(model_id, name, current_user_id))
  335. instantiate_attribute(core, model_id, "location", location)
  336. instantiate_attribute(core, model_id, "permissions", "200")
  337. instantiate_link(core, "owner", "", model_id, current_user_id)
  338. instantiate_link(core, "group", "", model_id, get_group_id("nobody"))
  339. instance_of = instantiate_link(core, "instanceOf", "", model_id, type_id)
  340. instantiate_link(core, "semantics", "", instance_of, get_entry_id("models/conformance_mv"))
  341. // Create type mapping model
  342. instantiate_link(core, "typing", "", instance_of, export_typing(model, name))
  343. return!
  344. Void function model_overwrite(model : Element, model_id : String, metamodel_id : String):
  345. // TODO this should be more elegant than just hiding the old elements
  346. String location
  347. String instanceOf_link
  348. location = "models/" + cast_id(model)
  349. export_node(location, model["model"])
  350. // Change location in meta-data
  351. unset_attribute(core, model_id, "location")
  352. instantiate_attribute(core, model_id, "location", location)
  353. // Update the instanceOf relation of the context in which we are working
  354. String choice
  355. choice = get_instanceOf_link(model_id, metamodel_id)
  356. if (element_neq(choice, read_root())):
  357. // There was a link, so we remove it
  358. // First remove the type mapping it referred to
  359. Element tl
  360. tl = allAssociationDestinations(core, choice, "typing")
  361. while (set_len(tl) > 0):
  362. model_delete_element(core, set_pop(tl))
  363. // Now delete the element itself
  364. model_delete_element(core, choice)
  365. // Create a new instanceOf relation now
  366. String instance_of
  367. instance_of = instantiate_link(core, "instanceOf", "", model_id, metamodel_id)
  368. instantiate_link(core, "semantics", "", instance_of, get_entry_id("models/conformance_mv"))
  369. instantiate_link(core, "typing", "", instance_of, export_typing(model, full_name(model_id)))
  370. return!
  371. Boolean function check_conformance(model_id : String):
  372. // TODO check if it actually conforms, considering that instanceOf link
  373. // --> in-depth check
  374. return True!
  375. Boolean function pm_finished(worklist : Element, pm : String):
  376. Element finished
  377. Integer cnt
  378. Integer i
  379. // Check if any of the "finish" elements are in the worklist
  380. // If so, we can already finish, and therefore will stop immediately
  381. finished = allInstances(pm, "Finish")
  382. worklist = set_copy(worklist)
  383. while (set_len(worklist) > 0):
  384. // Check each finished element individually
  385. if (set_in(finished, list_read(set_pop(worklist), 0))):
  386. return True!
  387. return False!
  388. Element function merge_models(models_dict : Element, operation_name : String):
  389. core = import_node(core_model_location)
  390. // 0) Find operation signature
  391. Element input_metamodels
  392. Element iter
  393. String edge
  394. String operation_id
  395. operation_id = get_entry_id(operation_name)
  396. input_metamodels = dict_create()
  397. iter = allOutgoingAssociationInstances(core, operation_id, "transformInput")
  398. while (set_len(iter) > 0):
  399. edge = set_pop(iter)
  400. dict_add(input_metamodels, read_attribute(core, edge, "name"), read_attribute(core, readAssociationDestination(core, edge), "name"))
  401. String merged_metamodel_id
  402. String trace_link_id
  403. Element trace_links
  404. // 1) Find merged metamodel
  405. trace_links = allOutgoingAssociationInstances(core, operation_id, "tracability")
  406. merged_metamodel_id = ""
  407. while (set_len(trace_links) > 0):
  408. trace_link_id = set_pop(trace_links)
  409. if (value_eq(read_attribute(core, trace_link_id, "type"), "operatesOn")):
  410. merged_metamodel_id = readAssociationDestination(core, trace_link_id)
  411. // 2) Merge source models
  412. if (merged_metamodel_id != ""):
  413. Element model_tuples
  414. Element keys
  415. String key
  416. Element mm
  417. model_tuples = set_create()
  418. keys = dict_keys(models_dict)
  419. while (set_len(keys) > 0):
  420. key = set_pop(keys)
  421. mm = get_full_model(get_entry_id(models_dict[key]), get_entry_id(input_metamodels[key]))
  422. if (element_eq(mm, read_root())):
  423. log("Signature mismatch in operation for tag " + key)
  424. output("Signature mismatch in operation for tag " + key)
  425. return read_root()!
  426. set_add_node(model_tuples, create_tuple(key, mm))
  427. Element merged_metamodel
  428. merged_metamodel = get_full_model(merged_metamodel_id, get_entry_id("SimpleClassDiagrams"))
  429. if (element_eq(merged_metamodel, read_root())):
  430. log("Merged metamodel in operation is not of type SimpleClassDiagrams")
  431. output("Merged metamodel in operation is not of type SimpleClassDiagrams")
  432. return read_root()!
  433. return model_join(model_tuples, merged_metamodel, read_root())!
  434. else:
  435. return read_root()!
  436. Element function split_model(model : Element, metamodels_dict : Element):
  437. core = import_node(core_model_location)
  438. Element model_tuples
  439. Element keys
  440. String key
  441. Element mm
  442. model_tuples = set_create()
  443. keys = dict_keys(metamodels_dict)
  444. while (set_len(keys) > 0):
  445. key = set_pop(keys)
  446. mm = get_full_model(get_entry_id(metamodels_dict[key]), get_entry_id("SimpleClassDiagrams"))
  447. if (element_eq(mm, read_root())):
  448. log("Output metamodel cannot be interpreted using SimpleClassDiagrams: " + key)
  449. output("Output metamodel cannot be interpreted using SimpleClassDiagrams: " + key)
  450. return read_root()!
  451. set_add_node(model_tuples, create_tuple(key, mm))
  452. return model_split(model, model_tuples, read_root())!
  453. Element function get_model(model_name : String, metamodel_name : String):
  454. core = import_node(core_model_location)
  455. return get_full_model(get_entry_id(model_name), get_entry_id(metamodel_name))!
  456. Void function store_model(model_name : String, metamodel_name : String, model : Element):
  457. core = import_node(core_model_location)
  458. if (get_entry_id(model_name) == ""):
  459. // New model
  460. model_create(model, model_name, get_entry_id(metamodel_name), "Model")
  461. else:
  462. model_overwrite(model, get_entry_id(model_name), get_entry_id(metamodel_name))
  463. return!
  464. String function get_ramified_metamodel(model_name : String):
  465. core = import_node(core_model_location)
  466. String operation_id
  467. Element trace_links
  468. String merged_metamodel_id
  469. String trace_link_id
  470. String ramified_metamodel_id
  471. operation_id = get_entry_id(model_name)
  472. trace_links = allOutgoingAssociationInstances(core, operation_id, "tracability")
  473. merged_metamodel_id = ""
  474. while (set_len(trace_links) > 0):
  475. trace_link_id = set_pop(trace_links)
  476. if (value_eq(read_attribute(core, trace_link_id, "type"), "operatesOn")):
  477. merged_metamodel_id = readAssociationDestination(core, trace_link_id)
  478. trace_links = allOutgoingAssociationInstances(core, merged_metamodel_id, "tracability")
  479. ramified_metamodel_id = ""
  480. while (set_len(trace_links) > 0):
  481. trace_link_id = set_pop(trace_links)
  482. if (value_eq(read_attribute(core, trace_link_id, "type"), "RAMified")):
  483. ramified_metamodel_id = readAssociationDestination(core, trace_link_id)
  484. return read_attribute(core, ramified_metamodel_id, "name")!
  485. return read_root()!
  486. Element function execute_operation(operation_id : String, input_models : Element, tracability_model : Element):
  487. // Operations are always in-place and uses only a single metamodel
  488. // Therefore, we must:
  489. // 1) Find merged metamodel
  490. // 2) Merge the different source models and retype
  491. // 3) Perform the operation on the merged model
  492. // 4) Split the resulting model based on the target formalisms; if operation successful
  493. Element input_model
  494. String trace_link_id
  495. Element merged_model
  496. String merged_metamodel_id
  497. String ramified_metamodel_id
  498. Boolean result
  499. String exact_type
  500. Element trace_links
  501. String model_ID
  502. String key
  503. Element keys
  504. Element input_keys
  505. Element output_keys
  506. Element model_tuples
  507. String metamodel_name
  508. Element metamodel
  509. String metamodel_ID
  510. Boolean tracability
  511. // 0) Find the signature of the operation
  512. Element input_metamodels
  513. Element output_metamodels
  514. Element iter
  515. String edge
  516. input_metamodels = dict_create()
  517. iter = allOutgoingAssociationInstances(core, operation_id, "transformInput")
  518. while (set_len(iter) > 0):
  519. edge = set_pop(iter)
  520. dict_add(input_metamodels, read_attribute(core, edge, "name"), full_name(readAssociationDestination(core, edge)))
  521. output_metamodels = dict_create()
  522. iter = allOutgoingAssociationInstances(core, operation_id, "transformOutput")
  523. while (set_len(iter) > 0):
  524. edge = set_pop(iter)
  525. dict_add(output_metamodels, read_attribute(core, edge, "name"), full_name(readAssociationDestination(core, edge)))
  526. // 1) Find merged metamodel
  527. exact_type = read_type(core, operation_id)
  528. trace_links = allOutgoingAssociationInstances(core, operation_id, "tracability")
  529. merged_metamodel_id = ""
  530. while (set_len(trace_links) > 0):
  531. trace_link_id = set_pop(trace_links)
  532. if (value_eq(read_attribute(core, trace_link_id, "type"), "operatesOn")):
  533. merged_metamodel_id = readAssociationDestination(core, trace_link_id)
  534. // 2) Merge source models
  535. if (merged_metamodel_id != ""):
  536. model_tuples = set_create()
  537. keys = dict_keys(input_models)
  538. while (set_len(keys) > 0):
  539. key = set_pop(keys)
  540. Element mm
  541. mm = get_full_model(get_entry_id(input_models[key]), get_entry_id(input_metamodels[key]))
  542. if (element_eq(mm, read_root())):
  543. log("Signature mismatch in operation for tag " + key)
  544. output("Signature mismatch in operation for tag " + key)
  545. return read_root()!
  546. set_add_node(model_tuples, create_tuple(key, mm))
  547. Element merged_metamodel
  548. merged_metamodel = get_full_model(merged_metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  549. if (element_eq(merged_metamodel, read_root())):
  550. log("Merged metamodel in operation is not of type formalisms/SimpleClassDiagrams")
  551. output("Merged metamodel in operation is not of type formalisms/SimpleClassDiagrams")
  552. return read_root()!
  553. merged_model = model_join(model_tuples, merged_metamodel, tracability_model)
  554. else:
  555. if (bool_and(dict_len(input_models) == 1, dict_len(output_metamodels) == 0)):
  556. // Just skip the merge...
  557. Element m
  558. m = get_full_model(get_entry_id(input_models[set_pop(dict_keys(input_models))]), get_entry_id(input_metamodels[set_pop(dict_keys(input_metamodels))]))
  559. if (element_eq(m, read_root())):
  560. log("Signature mismatch in operation for tag " + cast_value(set_pop(dict_keys(input_models))))
  561. output("Signature mismatch in operation for tag " + cast_value(set_pop(dict_keys(input_models))))
  562. return read_root()!
  563. merged_model = model_copy(m)
  564. elif (bool_and(dict_len(input_models) == 0, dict_len(output_metamodels) == 0)):
  565. merged_model = read_root()
  566. else:
  567. log("Could not resolve intermediate merged metamodel")
  568. output("Could not resolve intermediate merged metamodel")
  569. return read_root()!
  570. // 3) Transform
  571. if (exact_type == "ModelTransformation"):
  572. trace_links = allOutgoingAssociationInstances(core, merged_metamodel_id, "tracability")
  573. ramified_metamodel_id = ""
  574. while (set_len(trace_links) > 0):
  575. trace_link_id = set_pop(trace_links)
  576. if (value_eq(read_attribute(core, trace_link_id, "type"), "RAMified")):
  577. ramified_metamodel_id = readAssociationDestination(core, trace_link_id)
  578. Element operation
  579. operation = get_full_model(operation_id, ramified_metamodel_id)
  580. if (element_eq(operation, read_root())):
  581. log("Operation could not be typed by specified RAMified metamodel!")
  582. output("Operation could not be typed by specified RAMified metamodel!")
  583. return read_root()!
  584. result = transform(merged_model, operation)
  585. elif (exact_type == "ManualOperation"):
  586. output("Please perform manual operation " + cast_value(full_name(operation_id)))
  587. String model_name
  588. model_name = ""
  589. while (get_entry_id(model_name) != ""):
  590. model_name = ".tmp/" + random_string(20)
  591. output("Operating on: " + cast_string(model_name))
  592. model_create(merged_model, model_name, merged_metamodel_id, "Model")
  593. modify(merged_model, True)
  594. model_delete(get_entry_id(model_name))
  595. result = True
  596. elif (exact_type == "ActionLanguage"):
  597. Element func
  598. Element al
  599. al = get_full_model(operation_id, get_entry_id("formalisms/ActionLanguage"))
  600. if (element_eq(al, read_root())):
  601. log("Action Language operation not typed by ActionLanguage metamodel!")
  602. output("Action Language operation not typed by ActionLanguage metamodel!")
  603. return read_root()!
  604. func = get_func_AL_model(al)
  605. result = func(merged_model)
  606. else:
  607. log("Unknown type of operation: " + exact_type)
  608. output("Unknown type of operation: " + exact_type)
  609. return read_root()!
  610. // 4) Split in different models depending on type
  611. if (element_neq(tracability_model, read_root())):
  612. tracability = True
  613. else:
  614. tracability = False
  615. if (result):
  616. model_tuples = set_create()
  617. keys = dict_keys(output_metamodels)
  618. while (set_len(keys) > 0):
  619. key = set_pop(keys)
  620. Element mm
  621. mm = get_full_model(get_entry_id(output_metamodels[key]), get_entry_id("formalisms/SimpleClassDiagrams"))
  622. if (element_eq(mm, read_root())):
  623. log("Output metamodel cannot be interpreted using formalisms/SimpleClassDiagrams: " + key)
  624. output("Output metamodel cannot be interpreted using formalisms/SimpleClassDiagrams: " + key)
  625. return read_root()!
  626. set_add_node(model_tuples, create_tuple(key, mm))
  627. result = model_split(merged_model, model_tuples, tracability)
  628. if (tracability):
  629. Element new_tracability_model
  630. new_tracability_model = result["__tracability"]
  631. dict_overwrite(tracability_model, "model", new_tracability_model["model"])
  632. set_type_mapping(tracability_model, get_type_mapping(new_tracability_model))
  633. dict_overwrite(tracability_model, "metamodel", new_tracability_model["metamodel"])
  634. dict_delete(result, "__tracability")
  635. return result!
  636. else:
  637. log("Negative result of execution")
  638. return read_root()!
  639. Boolean function enact_action(pm : Element, element : String, mapping : Element):
  640. Boolean result
  641. String transformation_id
  642. Element lst
  643. String elem
  644. Element inputs
  645. Element outputs
  646. String type_name
  647. String exact_type
  648. Element trace_links
  649. Element output_mms
  650. Element consumes_link
  651. String name
  652. String value
  653. String elem_name
  654. Element keys
  655. String key
  656. String consume
  657. String produce
  658. Element output_map
  659. inputs = dict_create()
  660. outputs = dict_create()
  661. output_map = dict_create()
  662. // Read out the referenced element from the MvC
  663. transformation_id = get_entry_id(read_attribute(pm, element, "name"))
  664. // Find all input model names
  665. lst = allOutgoingAssociationInstances(pm, element, "Consumes")
  666. while (set_len(lst) > 0):
  667. consume = set_pop(lst)
  668. value = read_attribute(pm, readAssociationDestination(pm, consume), "name")
  669. dict_add(inputs, read_attribute(pm, consume, "name"), mapping[value])
  670. // Find all output model names and their metamodel
  671. lst = allOutgoingAssociationInstances(pm, element, "Produces")
  672. while (set_len(lst) > 0):
  673. produce = set_pop(lst)
  674. elem = readAssociationDestination(pm, produce)
  675. type_name = read_attribute(pm, elem, "type")
  676. elem_name = read_attribute(pm, elem, "name")
  677. dict_add(outputs, read_attribute(pm, produce, "name"), type_name)
  678. dict_add(output_map, read_attribute(pm, produce, "name"), mapping[elem_name])
  679. if read_type(core, transformation_id) == "ActionLanguage":
  680. log(string_join("Enacting ActionLanguage: ", read_attribute(pm, element, "name")))
  681. output(string_join("Enacting ActionLanguage: ", read_attribute(pm, element, "name")))
  682. elif read_type(core, transformation_id) == "ManualOperation":
  683. log(string_join("Enacting ManualOperation: ", read_attribute(pm, element, "name")))
  684. output(string_join("Enacting ManualOperation: ", read_attribute(pm, element, "name")))
  685. else:
  686. log(string_join("Enacting ModelTransformation: ", read_attribute(pm, element, "name")))
  687. output(string_join("Enacting ModelTransformation: ", read_attribute(pm, element, "name")))
  688. result = execute_operation(transformation_id, inputs, read_root())
  689. if (element_eq(result, read_root())):
  690. // Something went wrong!
  691. return False!
  692. else:
  693. keys = dict_keys(outputs)
  694. while (set_len(keys) > 0):
  695. key = set_pop(keys)
  696. if (get_entry_id(output_map[key]) == ""):
  697. // New model
  698. model_create(result[key], output_map[key], get_entry_id(outputs[key]), "Model")
  699. else:
  700. model_overwrite(result[key], get_entry_id(output_map[key]), get_entry_id(outputs[key]))
  701. return True!
  702. Element function PM_signature(pm : Element):
  703. Element all_data
  704. Element result
  705. String entry
  706. result = dict_create()
  707. all_data = allInstances(pm, "Data")
  708. while (set_len(all_data) > 0):
  709. entry = set_pop(all_data)
  710. dict_add(result, cast_string(read_attribute(pm, entry, "name")), cast_string(read_attribute(pm, entry, "type")))
  711. return result!
  712. Void function enact_PM(pm : Element, mapping : Element):
  713. Element worklist
  714. String element
  715. String type
  716. Boolean result
  717. Element tuple
  718. Element counters
  719. Element join_nodes
  720. Element keys
  721. String key
  722. output("Success")
  723. // For all entries in the signature, not in the mapping, we add a mock location
  724. Element signature
  725. String mock_location
  726. Element mock_locations
  727. mock_locations = set_create()
  728. signature = PM_signature(pm)
  729. keys = dict_keys(signature)
  730. while (set_len(keys) > 0):
  731. key = set_pop(keys)
  732. if (bool_not(dict_in(mapping, key))):
  733. // Add mock location
  734. mock_location = ""
  735. while (get_entry_id(mock_location) != ""):
  736. mock_location = ".tmp/" + random_string(10)
  737. dict_add(mapping, key, mock_location)
  738. set_add(mock_locations, mock_location)
  739. // Initialize Join counters
  740. counters = dict_create()
  741. join_nodes = allInstances(pm, "Join")
  742. while (set_len(join_nodes) > 0):
  743. dict_add(counters, set_pop(join_nodes), 0)
  744. // Create the worklist with the Start instance as first element
  745. worklist = set_create()
  746. set_add_node(worklist, create_tuple(set_pop(allInstances(pm, "Start")), True))
  747. while (bool_not(pm_finished(worklist, pm))):
  748. // Pop a random element from the list and execute it
  749. tuple = set_pop(worklist)
  750. element = tuple[0]
  751. result = tuple[1]
  752. // Find the type (to see what to do with it)
  753. // this does not yet yield the type of transformation, if it is an Execution
  754. type = read_type(pm, element)
  755. if (type == "Start"):
  756. // Initial node, just progress to the next elements
  757. // Nothing to do here though, as we have just started
  758. result = True
  759. elif (type == "Finish"):
  760. // Should be impossible, as we would have ended...
  761. result = result
  762. elif (type == "Fork"):
  763. result = result
  764. elif (type == "Join"):
  765. // Only do this if all dependencies are fullfilled
  766. // So add to the counter of this Join
  767. dict_overwrite(counters, element, integer_addition(counters[element], 1))
  768. // Now check whether we have enough tokens to execute the Join itself
  769. Integer required
  770. Integer got
  771. required = set_len(allIncomingAssociationInstances(pm, element, "Next")) + set_len(allIncomingAssociationInstances(pm, element, "Else"))
  772. got = counters[element]
  773. if (got == required):
  774. // Reset counter to 0
  775. dict_overwrite(counters, element, 0)
  776. // And continue
  777. else:
  778. // We haven't gotten all yet, so we wait (i.e., continue without adding Next link to worklist)
  779. continue!
  780. elif (type == "Exec"):
  781. // Execute a transformation
  782. // This the difficult part!
  783. result = enact_action(pm, element, mapping)
  784. output("Success")
  785. elif (type == "Decision"):
  786. // If the previous result is true, we add the normal one, otherwise the false one
  787. // in this context, that means that if it is false, we should add it manually to the list, and then continue the simulation loop
  788. if (bool_not(result)):
  789. // Apparently it is False, so map this to the "Else" branch
  790. set_add_node(worklist, create_tuple(set_pop(allAssociationDestinations(pm, element, "Else")), True))
  791. continue!
  792. else:
  793. // Apparently it is True, so map this to the "Then" branch
  794. set_add_node(worklist, create_tuple(set_pop(allAssociationDestinations(pm, element, "Then")), True))
  795. continue!
  796. // We have finished the execution, so add all outgoing edges to the worklist
  797. Element all_next
  798. all_next = allAssociationDestinations(pm, element, "Next")
  799. String next
  800. while (set_len(all_next) > 0):
  801. next = set_pop(all_next)
  802. set_add_node(worklist, create_tuple(next, result))
  803. // Reached a finish element, so stop
  804. // Remove all mock locations again
  805. while (set_len(mock_locations) > 0):
  806. model_delete(get_entry_id(set_pop(mock_locations)))
  807. return !
  808. String function cmd_help():
  809. String result
  810. result = ""
  811. result = result + ("Model operations\n")
  812. result = result + (" model_add -- Add a new model\n")
  813. result = result + (" model_modify -- Modify an existing model\n")
  814. result = result + (" model_list -- List all models\n")
  815. result = result + (" model_list_full -- List all models with full info\n")
  816. result = result + (" model_overwrite -- Overwrites a model with an uploaded model, leaving all metadata\n")
  817. result = result + (" model_render -- Render a given model with a specified mapper\n")
  818. result = result + (" verify -- Check whether a model conforms to its metamodel\n")
  819. result = result + ("\n")
  820. result = result + ("Transformation-specific operations\n")
  821. result = result + (" transformation_add_MT -- Initialize a new model transformation\n")
  822. result = result + (" transformation_add_AL -- Initialize a new action language transformation\n")
  823. result = result + (" transformation_add_MANUAL -- Initialize a new manual transformation\n")
  824. result = result + (" transformation_execute -- Execute a transformation on a set of input models\n")
  825. result = result + (" transformation_list -- List all model transformations\n")
  826. result = result + (" transformation_list_full -- List all model transformations with permissions\n")
  827. result = result + (" transformation_detail -- List transformation details\n")
  828. result = result + (" transformation_between -- List all transformations between two metamodels\n")
  829. result = result + ("\n")
  830. result = result + ("Process operations\n")
  831. result = result + (" process_execute -- Execute a process model\n")
  832. result = result + ("\n")
  833. result = result + ("Model permission operations\n")
  834. result = result + (" permission_modify -- Change model permissions\n")
  835. result = result + (" permission_owner -- Change model owner\n")
  836. result = result + (" permission_group -- Change model group\n")
  837. result = result + ("\n")
  838. result = result + ("Group operations\n")
  839. result = result + (" group_create -- Create a group\n")
  840. result = result + (" group_delete -- Delete a group\n")
  841. result = result + (" group_owner_add -- Add group owner\n")
  842. result = result + (" group_owner_delete -- Remove group owner\n")
  843. result = result + (" group_join -- Add someone to your group\n")
  844. result = result + (" group_kick -- Kick someone from your group\n")
  845. result = result + (" group_list -- List all groups you are a member of\n")
  846. result = result + ("\n")
  847. if (is_admin(current_user_id)):
  848. result = result + ("Admin operations\n")
  849. result = result + (" admin_promote -- Promote a user to admin status\n")
  850. result = result + (" admin_demote -- Demote a user to normal status\n")
  851. result = result + ("\n")
  852. result = result + ("General operations\n")
  853. result = result + (" self-destruct -- Remove current user and revoke all permissions \n")
  854. result = result + (" exit -- Kill the current task, while retaining user\n")
  855. return result!
  856. String function cmd_model_add(type : String, name : String, code : String):
  857. // Model addition operation, which uses model upload commands of the compiler
  858. String location
  859. String type_id
  860. Element new_model
  861. String new_model_id
  862. type_id = get_entry_id(type)
  863. if (type_id != ""):
  864. // Type exists
  865. if (allow_read(current_user_id, type_id)):
  866. // And is readable
  867. if (get_entry_id(get_foldername(name)) != ""):
  868. // Folder doesn't exist yet!
  869. if (allow_write(current_user_id, get_entry_id(get_foldername(name)))):
  870. // Folder is writable
  871. if (get_entry_id(name) == ""):
  872. // Model doesn't exist yet
  873. Element mm
  874. mm = get_full_model(type_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  875. if (element_eq(mm, read_root())):
  876. return "Type is not typed by formalisms/SimpleClassDiagrams: " + type!
  877. new_model = compile_model(code, mm)
  878. if (element_eq(new_model, read_root())):
  879. return "Compilation error"!
  880. model_create(new_model, name, type_id, "Model")
  881. return "Success"!
  882. else:
  883. return "Model exists: " + name!
  884. else:
  885. return "Permission denied to folder: " + get_foldername(name)!
  886. else:
  887. return "No such folder: " + get_foldername(name)!
  888. else:
  889. return "Permission denied to model: " + type!
  890. else:
  891. return "Model not found: " + type!
  892. String function cmd_process_execute(process : String, mapping : Element):
  893. // Execute a process model until it reaches termination
  894. String process_id
  895. process_id = get_entry_id(process)
  896. if (process_id != ""):
  897. if (allow_read(current_user_id, process_id)):
  898. Element pm
  899. pm = get_full_model(process_id, get_entry_id("formalisms/ProcessModel"))
  900. if (element_eq(pm, read_root())):
  901. return "Specified model cannot be interpreted as a ProcessModel: " + process!
  902. enact_PM(pm, mapping)
  903. return "Success"!
  904. else:
  905. return "Permission denied to model: " + process!
  906. else:
  907. return "Model not found: " + process!
  908. String function cmd_process_signature(process : String):
  909. // Execute a process model until it reaches termination
  910. String process_id
  911. String result
  912. Element signature
  913. Element keys
  914. String key
  915. process_id = get_entry_id(process)
  916. if (process_id != ""):
  917. if (allow_read(current_user_id, process_id)):
  918. Element pm
  919. pm = get_full_model(process_id, get_entry_id("formalisms/ProcessModel"))
  920. if (element_eq(pm, read_root())):
  921. return "Specified model cannot be interpreted as a ProcessModel: " + process!
  922. result = "Success: "
  923. signature = PM_signature(pm)
  924. keys = dict_keys(signature)
  925. while (set_len(keys) > 0):
  926. key = set_pop(keys)
  927. result = result + key + " : " + cast_string(signature[key]) + "\n"
  928. return result!
  929. else:
  930. return "Permission denied to model: " + process!
  931. else:
  932. return "Model not found: " + process!
  933. String function cmd_transformation_between(source_dict : String, target_dict : String):
  934. Element result
  935. Element subresult
  936. String tag
  937. String mm
  938. String mm_id
  939. Element links
  940. String link
  941. Element keys
  942. result = allInstances(core, "Transformation")
  943. // Iterate over all inputs
  944. keys = dict_keys(source_dict)
  945. while (set_len(keys) > 0):
  946. subresult = set_create()
  947. tag = set_pop(keys)
  948. mm = source_dict[tag]
  949. mm_id = get_entry_id(mm)
  950. if (mm_id != ""):
  951. links = allIncomingAssociationInstances(core, mm_id, "transformInput")
  952. while (set_len(links) > 0):
  953. link = set_pop(links)
  954. if (value_eq(read_attribute(core, link, "name"), tag)):
  955. // Correct tag, so make transformation a possibility
  956. set_add(subresult, readAssociationSource(core, link))
  957. else:
  958. return "Model not found: " + mm!
  959. // Got a set of subresults now, which we use to find the overlap
  960. result = set_overlap(result, subresult)
  961. keys = dict_keys(target_dict)
  962. while (set_len(keys) > 0):
  963. subresult = set_create()
  964. tag = set_pop(keys)
  965. mm = target_dict[tag]
  966. mm_id = get_entry_id(mm)
  967. if (mm_id != ""):
  968. links = allIncomingAssociationInstances(core, mm_id, "transformOutput")
  969. while (set_len(links) > 0):
  970. link = set_pop(links)
  971. if (value_eq(read_attribute(core, link, "name"), tag)):
  972. // Correct tag, so make transformation a possibility
  973. set_add(subresult, readAssociationSource(core, link))
  974. else:
  975. return "Model not found: " + mm!
  976. // Got a set of subresults now, which we use to find the overlap
  977. result = set_overlap(result, subresult)
  978. String r
  979. String transformation
  980. r = "Success: "
  981. while (set_len(result) > 0):
  982. transformation = set_pop(result)
  983. if (allow_read(current_user_id, transformation)):
  984. r = r + string_join(full_name(transformation), "\n")
  985. return r!
  986. String function cmd_model_rendered(model_name : String, mapper_name : String):
  987. Element trace_links
  988. String rendered
  989. String trace_link_id
  990. String allowed_rendered
  991. Element trace_links_2
  992. String trace_link_2_id
  993. allowed_rendered = "Success: "
  994. trace_links = allOutgoingAssociationInstances(core, get_entry_id(model_name), "tracability")
  995. while (set_len(trace_links) > 0):
  996. trace_link_id = set_pop(trace_links)
  997. if (value_eq(read_attribute(core, trace_link_id, "type"), "CS_perceptualized")):
  998. rendered = readAssociationDestination(core, trace_link_id)
  999. trace_links_2 = allOutgoingAssociationInstances(core, rendered, "tracability")
  1000. while (set_len(trace_links_2) > 0):
  1001. trace_link_2_id = set_pop(trace_links_2)
  1002. if (value_eq(read_attribute(core, readAssociationDestination(core, trace_link_2_id), "name"), mapper_name)):
  1003. if (value_eq(read_attribute(core, trace_link_2_id, "type"), "CS_mapper")):
  1004. allowed_rendered = string_join(allowed_rendered, read_attribute(core, rendered, "name")) + "\n"
  1005. return allowed_rendered!
  1006. String function cmd_model_render(model_name : String, mapper_name : String, rendered_name : String):
  1007. String model_ID
  1008. String mapper_ID
  1009. String tracability_name
  1010. Element inputs
  1011. Element output_map
  1012. Element rendered_model
  1013. Element tracability_model
  1014. Element result
  1015. Element out_links
  1016. String link
  1017. String ID_rendered_M
  1018. String ID_rendered_MM
  1019. String ID_SCD
  1020. String ID_tracability_MM
  1021. String ID_tracability_M
  1022. model_ID = get_entry_id(model_name)
  1023. if (model_ID != ""):
  1024. mapper_ID = get_entry_id(mapper_name)
  1025. if (allow_read(current_user_id, model_ID)):
  1026. if (mapper_ID != ""):
  1027. if (allow_read(current_user_id, mapper_ID)):
  1028. // Everything is fine; start the actual operation
  1029. // Find metamodel to render to
  1030. tracability_name = "tracability/" + rendered_name
  1031. // Take the abstract syntax model and the previously rendered model
  1032. inputs = dict_create()
  1033. dict_add(inputs, "abstract", model_name)
  1034. dict_add(inputs, "rendered", rendered_name)
  1035. // Fetch the output types
  1036. output_map = dict_create()
  1037. out_links = allOutgoingAssociationInstances(core, mapper_ID, "transformOutput")
  1038. while(set_len(out_links) > 0):
  1039. link = set_pop(out_links)
  1040. dict_add(output_map, read_attribute(core, link, "name"), full_name(readAssociationDestination(core, link)))
  1041. ID_rendered_MM = get_entry_id(output_map["rendered"])
  1042. ID_SCD = get_entry_id("formalisms/SimpleClassDiagrams")
  1043. ID_tracability_MM = get_entry_id("formalisms/Tracability")
  1044. ID_tracability_M = get_entry_id(tracability_name)
  1045. ID_rendered_M = get_entry_id(rendered_name)
  1046. if (ID_rendered_M == ""):
  1047. // Instantiate
  1048. Element rendered
  1049. rendered = get_full_model(ID_rendered_MM, ID_SCD)
  1050. if (element_eq(rendered, read_root())):
  1051. return "Rendered metamodel doesn't conform to formalisms/SimpleClassDiagrams"!
  1052. rendered_model = instantiate_model(rendered)
  1053. model_create(rendered_model, rendered_name, ID_rendered_MM, "Model")
  1054. // Tracability model won't exist either
  1055. tracability_model = instantiate_model(get_full_model(ID_tracability_MM, ID_SCD))
  1056. model_create(tracability_model, tracability_name, ID_tracability_MM, "Model")
  1057. ID_rendered_M = get_entry_id(rendered_name)
  1058. ID_tracability_M = get_entry_id(tracability_name)
  1059. else:
  1060. // Read out tracability model
  1061. tracability_model = get_full_model(ID_tracability_M, ID_tracability_MM)
  1062. if (element_eq(tracability_model, read_root())):
  1063. return "Tracability model not typed by Tracability metamodel: " + tracability_name!
  1064. // Do the operation itself!
  1065. result = execute_operation(mapper_ID, inputs, tracability_model)
  1066. // Overwrite the previous rendered model
  1067. model_overwrite(result["rendered"], ID_rendered_M, ID_rendered_MM)
  1068. // Tracability updated in-place
  1069. model_overwrite(tracability_model, ID_tracability_M, ID_tracability_MM)
  1070. if (element_eq(tracability_model, read_root())):
  1071. return "Tracability model not typed by Tracability metamodel: " + tracability_name!
  1072. // Link all information in the megamodel
  1073. String tr_link
  1074. tr_link = instantiate_link(core, "tracability", "", get_entry_id(model_name), ID_rendered_M)
  1075. instantiate_attribute(core, tr_link, "type", "CS_perceptualized")
  1076. tr_link = instantiate_link(core, "tracability", "", ID_rendered_M, get_entry_id(mapper_name))
  1077. instantiate_attribute(core, tr_link, "type", "CS_mapper")
  1078. // Output the resulting model
  1079. String value
  1080. value = JSON_print(result["rendered"])
  1081. return ("Success: " + value) !
  1082. else:
  1083. return "Permission denied to model: " + mapper_name!
  1084. else:
  1085. return "Model not found: " + mapper_name!
  1086. else:
  1087. return "Permission denied to model: " + model_name!
  1088. else:
  1089. return "Model not found: " + model_name!
  1090. String function cmd_transformation_execute(transformation_name : String, source_models : Element, target_models : Element, tracability_name : String):
  1091. // Execute a transformation, whatever type it is
  1092. // First we detect the type, so we know how to prepare for invocation
  1093. String transformation_id
  1094. String exact_type
  1095. Element sources
  1096. Element targets
  1097. String source
  1098. String target
  1099. Element inputs
  1100. Element outputs
  1101. Element output_map
  1102. Element trace_links
  1103. String target_model_name
  1104. String source_model_name
  1105. String source_model_ID
  1106. Element result
  1107. Element keys
  1108. String key
  1109. String assoc_name
  1110. transformation_id = get_entry_id(transformation_name)
  1111. if (transformation_id != ""):
  1112. if (allow_read(current_user_id, transformation_id)):
  1113. if (is_nominal_instance(core, transformation_id, "Transformation")):
  1114. // Read out source and target links
  1115. inputs = dict_create()
  1116. sources = allOutgoingAssociationInstances(core, transformation_id, "transformInput")
  1117. while (set_len(sources) > 0):
  1118. source = set_pop(sources)
  1119. assoc_name = read_attribute(core, source, "name")
  1120. if (dict_in(source_models, assoc_name)):
  1121. source_model_name = source_models[assoc_name]
  1122. else:
  1123. return "Source model not bound: " + assoc_name!
  1124. source_model_ID = get_entry_id(source_model_name)
  1125. if (source_model_ID != ""):
  1126. if (allow_read(current_user_id, source_model_ID)):
  1127. // Check for conformance to the requested metamodel
  1128. dict_add(inputs, assoc_name, source_model_name)
  1129. continue!
  1130. else:
  1131. return "Permission denied to model: " + source_model_name!
  1132. else:
  1133. return "Model not found: " + source_model_name!
  1134. targets = allOutgoingAssociationInstances(core, transformation_id, "transformOutput")
  1135. outputs = dict_create()
  1136. output_map = dict_create()
  1137. while (set_len(targets) > 0):
  1138. target = set_pop(targets)
  1139. assoc_name = read_attribute(core, target, "name")
  1140. if (dict_in(target_models, assoc_name)):
  1141. target_model_name = target_models[assoc_name]
  1142. if (get_entry_id(target_model_name) == ""):
  1143. // Doesn't exist yet, so we can easily create
  1144. if (get_entry_id(get_foldername(target_model_name)) == ""):
  1145. return "Folder not found: " + get_foldername(target_model_name)!
  1146. else:
  1147. if (allow_write(current_user_id, get_entry_id(get_foldername(target_model_name)))):
  1148. dict_add(output_map, assoc_name, full_name(readAssociationDestination(core, target)))
  1149. dict_add(outputs, assoc_name, target_model_name)
  1150. else:
  1151. return "Permission denied to folder: " + get_foldername(target_model_name)!
  1152. else:
  1153. // Already exists, so we need to check for write access
  1154. if (allow_write(current_user_id, get_entry_id(target_model_name))):
  1155. dict_add(output_map, assoc_name, read_attribute(core, readAssociationDestination(core, target), "name"))
  1156. dict_add(outputs, assoc_name, target_model_name)
  1157. else:
  1158. return "Permission denied to model: " + target_model_name!
  1159. if (read_type(core, transformation_id) == "ActionLanguage"):
  1160. output("Success: ready for AL execution")
  1161. elif (read_type(core, transformation_id) == "ManualOperation"):
  1162. output("Success: ready for MANUAL execution")
  1163. else:
  1164. output("Success: ready for MT execution")
  1165. // Do tracability
  1166. Element tracability_model
  1167. if (tracability_name != ""):
  1168. // Check if exists
  1169. if (get_entry_id(tracability_name) == ""):
  1170. // No, so create
  1171. tracability_model = instantiate_model(get_full_model(get_entry_id("formalisms/Tracability"), get_entry_id("formalisms/SimpleClassDiagrams")))
  1172. model_create(tracability_model, tracability_name, get_entry_id("formalisms/Tracability"), "Model")
  1173. else:
  1174. // Yes, so read out
  1175. tracability_model = get_full_model(get_entry_id(tracability_name), get_entry_id("formalisms/Tracability"))
  1176. else:
  1177. tracability_model = read_root()
  1178. result = execute_operation(transformation_id, inputs, tracability_model)
  1179. // Flush tracability again, just to be sure
  1180. if (tracability_name != ""):
  1181. model_overwrite(tracability_model, get_entry_id(tracability_name), get_entry_id("formalisms/Tracability"))
  1182. // Now write out the models again
  1183. if (element_eq(result, read_root())):
  1184. // Something went wrong!
  1185. return "Failure"!
  1186. else:
  1187. keys = dict_keys(outputs)
  1188. while (set_len(keys) > 0):
  1189. key = set_pop(keys)
  1190. log("Writing away model with key " + cast_string(key))
  1191. log("Output map: " + dict_to_string(output_map))
  1192. log("Outputs: " + dict_to_string(outputs))
  1193. if (get_entry_id(outputs[key]) == ""):
  1194. // New model
  1195. log("New model!")
  1196. model_create(result[key], outputs[key], get_entry_id(output_map[key]), "Model")
  1197. else:
  1198. log("Existing model!")
  1199. model_overwrite(result[key], get_entry_id(outputs[key]), get_entry_id(output_map[key]))
  1200. return "Success"!
  1201. else:
  1202. return "Model is not executable: " + transformation_name!
  1203. else:
  1204. return "Permission denied to model: " + transformation_name!
  1205. else:
  1206. return "Model not found: " + transformation_name!
  1207. String function cmd_verify(model_name : String, metamodel_name : String):
  1208. // Check whether a model conforms to its specification (with the selected type mapping)
  1209. String model_id
  1210. String result
  1211. Element inputs
  1212. model_id = get_entry_id(model_name)
  1213. if (model_id != ""):
  1214. if (allow_read(current_user_id, model_id)):
  1215. if (get_entry_id(metamodel_name) != ""):
  1216. if (allow_read(current_user_id, get_entry_id(metamodel_name))):
  1217. Element m
  1218. m = get_full_model(get_entry_id(model_name), get_entry_id(metamodel_name))
  1219. if (element_eq(m, read_root())):
  1220. return "No conformance relation can be found between these models"!
  1221. return string_join("Success: ", conformance_scd(m))!
  1222. else:
  1223. return "Permission denied to model: " + metamodel_name!
  1224. else:
  1225. return "Model not found: " + metamodel_name!
  1226. else:
  1227. return "Permission denied to model: " + model_name!
  1228. else:
  1229. return "Model not found: " + model_name!
  1230. String function cmd_model_overwrite(model_name : String, metamodel_name : String):
  1231. // Overwrites an existing model without changing any metadata
  1232. String model_id
  1233. String type_id
  1234. Element new_model
  1235. model_id = get_entry_id(model_name)
  1236. if (model_id != ""):
  1237. if (allow_write(current_user_id, model_id)):
  1238. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1239. if (allow_read(current_user_id, type_id)):
  1240. Element mm
  1241. mm = get_full_model(get_entry_id(metamodel_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1242. if (element_eq(mm, read_root())):
  1243. return "Metamodel does not conform to formalisms/SimpleClassDiagrams: " + metamodel_name!
  1244. output("Waiting for model constructors...")
  1245. new_model = compile_model(input(), mm)
  1246. if (element_eq(new_model, read_root())):
  1247. return "Compilation error"!
  1248. model_overwrite(new_model, model_id, get_entry_id(metamodel_name))
  1249. return "Success"!
  1250. else:
  1251. return string_join("Permission denied to model: ", full_name(type_id))!
  1252. else:
  1253. return "Permission denied to model: " + model_name!
  1254. else:
  1255. return "Model not found: " + model_name!
  1256. String function cmd_model_modify(model_name : String, metamodel_name : String):
  1257. // Model modify operation, which uses the mini_modify.alc operations, though with extensions for access control
  1258. String model_id
  1259. String type_id
  1260. model_id = get_entry_id(model_name)
  1261. if (model_id != ""):
  1262. if (allow_read(current_user_id, model_id)):
  1263. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1264. if (allow_read(current_user_id, type_id)):
  1265. Element new_model
  1266. new_model = get_full_model(model_id, get_entry_id(metamodel_name))
  1267. if (element_eq(new_model, read_root())):
  1268. return "No conformance relation can be found between these models"!
  1269. modify(new_model, allow_write(current_user_id, model_id))
  1270. if (allow_write(current_user_id, model_id)):
  1271. // Overwrite the modified model
  1272. model_overwrite(new_model, model_id, get_entry_id(metamodel_name))
  1273. return "Success"!
  1274. else:
  1275. return string_join("Permission denied to model: ", full_name(type_id))!
  1276. else:
  1277. return "Permission denied to model: " + model_name!
  1278. else:
  1279. return "Model not found: " + model_name!
  1280. Void function model_delete(model_id : String):
  1281. if (read_type(core, model_id) == "Folder"):
  1282. // Folder, so delete all containing elements as well!
  1283. Element elems
  1284. elems = allAssociationDestinations(core, model_id, "contains")
  1285. while (set_len(elems) > 0):
  1286. model_delete(set_pop(elems))
  1287. // Delete self
  1288. model_delete_element(core, model_id)
  1289. else:
  1290. // Only delete this element
  1291. model_delete_element(core, model_id)
  1292. return!
  1293. String function cmd_model_delete(model_name : String):
  1294. String model_id
  1295. model_id = get_entry_id(model_name)
  1296. if (model_id != ""):
  1297. if (allow_write(current_user_id, model_id)):
  1298. model_delete(model_id)
  1299. return "Success"!
  1300. else:
  1301. return "Permission denied to model: " + model_name!
  1302. else:
  1303. return "Model not found: " + model_name!
  1304. String function cmd_model_list(location : String):
  1305. // List all models
  1306. if (get_entry_id(location) != ""):
  1307. if (allow_read(current_user_id, get_entry_id(location))):
  1308. Element models
  1309. String result
  1310. String m
  1311. result = "Success: "
  1312. models = allAssociationDestinations(core, get_entry_id(location), "contains")
  1313. while (set_len(models) > 0):
  1314. m = set_pop(models)
  1315. if (is_nominal_instance(core, m, "Folder")):
  1316. result = result + (get_filename(read_attribute(core, m, "name")) + "/\n")
  1317. else:
  1318. result = result + (get_filename(read_attribute(core, m, "name")) + "\n")
  1319. return result!
  1320. else:
  1321. return "Permission denied to folder: " + location!
  1322. else:
  1323. return "Location not found: " + location!
  1324. String function cmd_model_list_full(location : String):
  1325. // List all models with full info
  1326. if (get_entry_id(location) != ""):
  1327. if (allow_read(current_user_id, get_entry_id(location))):
  1328. Element models
  1329. String m
  1330. String permissions
  1331. String owner
  1332. String group
  1333. String name
  1334. String type
  1335. String result
  1336. result = "Success: "
  1337. models = allAssociationDestinations(core, get_entry_id(location), "contains")
  1338. while (set_len(models) > 0):
  1339. m = set_pop(models)
  1340. permissions = read_attribute(core, m, "permissions")
  1341. owner = read_attribute(core, set_pop(allAssociationDestinations(core, m, "owner")), "name")
  1342. group = read_attribute(core, set_pop(allAssociationDestinations(core, m, "group")), "name")
  1343. if (is_nominal_instance(core, m, "Folder")):
  1344. name = get_filename(read_attribute(core, m, "name")) + "/"
  1345. else:
  1346. name = get_filename(read_attribute(core, m, "name"))
  1347. result = result + permissions + " " + owner + " " + group + " " + name + "\n"
  1348. return result!
  1349. else:
  1350. return "Permission denied to folder: " + location!
  1351. else:
  1352. return "Location not found: " + location!
  1353. String function cmd_transformation_add_MANUAL(source_models : Element, target_models : Element, operation_name : String):
  1354. return transformation_add(source_models, target_models, operation_name, "manual")!
  1355. String function cmd_transformation_add_AL(source_models : Element, target_models : Element, operation_name : String):
  1356. return transformation_add(source_models, target_models, operation_name, "actionlanguage")!
  1357. String function transformation_add(source_models : Element, target_models : Element, operation_name : String, operation_type : String):
  1358. // Add a manual transformation model
  1359. String model_id
  1360. Element models
  1361. Element source
  1362. Element target
  1363. String name
  1364. Element all_formalisms
  1365. Element formalism_map
  1366. Element merged_formalism
  1367. String merged_formalism_id
  1368. String source_formalism_id
  1369. String tracability_link
  1370. Element fused
  1371. Element keys
  1372. String key
  1373. Element mm
  1374. source = dict_create()
  1375. target = dict_create()
  1376. all_formalisms = set_create()
  1377. formalism_map = set_create()
  1378. fused = set_create()
  1379. keys = dict_keys(source_models)
  1380. while (set_len(keys) > 0):
  1381. key = set_pop(keys)
  1382. name = source_models[key]
  1383. model_id = get_entry_id(name)
  1384. if (model_id != ""):
  1385. if (allow_read(current_user_id, model_id)):
  1386. if (bool_not(dict_in(source, key))):
  1387. dict_add(source, key, model_id)
  1388. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1389. if (element_eq(mm, read_root())):
  1390. return "Transformation source type not in formalisms/SimpleClassDiagrams hierarchy: " + key!
  1391. if (bool_not(set_in(fused, key))):
  1392. set_add_node(formalism_map, create_tuple(key, mm))
  1393. set_add(fused, key)
  1394. if (bool_not(set_in(all_formalisms, model_id))):
  1395. set_add(all_formalisms, model_id)
  1396. else:
  1397. return "Name already selected for source: " + key!
  1398. else:
  1399. return "Permission denied to model: " + name!
  1400. else:
  1401. return "Model not found: " + name!
  1402. keys = dict_keys(target_models)
  1403. while (set_len(keys) > 0):
  1404. key = set_pop(keys)
  1405. name = target_models[key]
  1406. model_id = get_entry_id(name)
  1407. if (model_id != ""):
  1408. if (allow_read(current_user_id, model_id)):
  1409. if (bool_not(dict_in(target, key))):
  1410. dict_add(target, key, model_id)
  1411. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1412. if (element_eq(mm, read_root())):
  1413. return "Transformation target type not in formalisms/SimpleClassDiagrams hierarchy: " + key!
  1414. if (bool_not(set_in(fused, key))):
  1415. set_add_node(formalism_map, create_tuple(key, mm))
  1416. set_add(fused, key)
  1417. if (bool_not(set_in(all_formalisms, model_id))):
  1418. set_add(all_formalisms, model_id)
  1419. else:
  1420. return "Name already selected for target: " + key!
  1421. else:
  1422. return "Permission denied to model: " + name!
  1423. else:
  1424. return "Model not found: " + name!
  1425. if (get_entry_id(operation_name) == ""):
  1426. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1427. // New location is available, so write
  1428. if (bool_not(bool_and(dict_len(source_models) == 0, dict_len(target_models) == 0))):
  1429. merged_formalism = model_fuse(formalism_map)
  1430. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1431. modify(merged_formalism, True)
  1432. model_overwrite(merged_formalism, get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1433. if (operation_type == "manual"):
  1434. // Finished with all information, now create the model itself!
  1435. Element m
  1436. m = get_full_model(get_entry_id("formalisms/ManualOperation"), get_entry_id("formalisms/SimpleClassDiagrams"))
  1437. if (element_eq(m, read_root())):
  1438. log("Error when opening ManualOperation: no conformance relation found")
  1439. return "Error when opening ManualOperation: no conformance relation found"!
  1440. model_create(instantiate_model(m), operation_name, get_entry_id("formalisms/ManualOperation"), "ManualOperation")
  1441. model_id = get_entry_id(operation_name)
  1442. elif (operation_type == "actionlanguage"):
  1443. // Finished with all information, now create the model itself!
  1444. output("Waiting for code constructors...")
  1445. Element compiled
  1446. compiled = compile_code(input())
  1447. if (element_eq(compiled, read_root())):
  1448. return "Compilation error"!
  1449. add_code_model(get_full_model(get_entry_id("formalisms/ActionLanguage"), get_entry_id("formalisms/SimpleClassDiagrams")), "AL/" + operation_name, compiled)
  1450. model_create(import_node("AL/" + operation_name), operation_name, get_entry_id("formalisms/ActionLanguage"), "ActionLanguage")
  1451. model_id = get_entry_id(operation_name)
  1452. if (bool_not(bool_and(dict_len(source_models) == 0, dict_len(target_models) == 0))):
  1453. merged_formalism_id = get_entry_id("merged/" + operation_name)
  1454. // Add tracability links at this level
  1455. while (set_len(all_formalisms) > 0):
  1456. source_formalism_id = set_pop(all_formalisms)
  1457. tracability_link = instantiate_link(core, "tracability", "", merged_formalism_id, source_formalism_id)
  1458. instantiate_attribute(core, tracability_link, "type", "merged")
  1459. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1460. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1461. // Extend metadata with info on source and target
  1462. String link
  1463. String dst
  1464. keys = dict_keys(source)
  1465. while (set_len(keys) > 0):
  1466. key = set_pop(keys)
  1467. link = instantiate_link(core, "transformInput", "", model_id, source[key])
  1468. instantiate_attribute(core, link, "name", key)
  1469. keys = dict_keys(target)
  1470. while (set_len(keys) > 0):
  1471. key = set_pop(keys)
  1472. link = instantiate_link(core, "transformOutput", "", model_id, target[key])
  1473. instantiate_attribute(core, link, "name", key)
  1474. return "Success"!
  1475. else:
  1476. return "Model exists: " + operation_name!
  1477. String function cmd_transformation_add_MT(source_models : Element, target_models : Element, operation_name : String):
  1478. // Add a model transformation model
  1479. // Just a usual model instantiation, but need to add the source and target links based on user info
  1480. String ramified_metamodel_id
  1481. Element ramified_metamodel
  1482. String model_id
  1483. Element models
  1484. Element links
  1485. String link_id
  1486. Element supported
  1487. Element source
  1488. Element target
  1489. String name
  1490. String new_model_id
  1491. String merged_link_id
  1492. Element links_merged
  1493. String merged_formalism
  1494. Element keys
  1495. String key
  1496. Element mm
  1497. Element to_ramify
  1498. String source_formalism_id
  1499. String merged_formalism_id
  1500. String tracability_link
  1501. source = dict_create()
  1502. target = dict_create()
  1503. to_ramify = set_create()
  1504. keys = dict_keys(source_models)
  1505. while (set_len(keys) > 0):
  1506. key = set_pop(keys)
  1507. name = source_models[key]
  1508. model_id = get_entry_id(name)
  1509. if (model_id != ""):
  1510. if (allow_read(current_user_id, name)):
  1511. // Check whether or not it is formalisms/SimpleClassDiagrams
  1512. if (is_typed_by(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))):
  1513. if (bool_not(dict_in(source, key))):
  1514. dict_add(source, key, model_id)
  1515. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1516. if (element_eq(mm, read_root())):
  1517. return "ModelTransformation source type not in formalisms/SimpleClassDiagrams hierarchy: " + name!
  1518. set_add_node(to_ramify, create_tuple(key, mm))
  1519. else:
  1520. return "Name was already assigned a metamodel: " + key!
  1521. else:
  1522. return "Model not supported for RAMification: " + name!
  1523. else:
  1524. return "Permission denied: " + name!
  1525. else:
  1526. return "Model not found: " + name!
  1527. keys = dict_keys(target_models)
  1528. while (set_len(keys) > 0):
  1529. key = set_pop(keys)
  1530. name = target_models[key]
  1531. model_id = get_entry_id(name)
  1532. if (model_id != ""):
  1533. if (allow_read(current_user_id, name)):
  1534. if (is_typed_by(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))):
  1535. if (bool_not(dict_in(target, key))):
  1536. if (dict_in(source, key)):
  1537. if (value_eq(model_id, source[key])):
  1538. dict_add(target, key, model_id)
  1539. // Don't add to to_ramify, as it is already in there!
  1540. else:
  1541. return "Name in output cannot have different type than input: " + key!
  1542. else:
  1543. dict_add(target, key, model_id)
  1544. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1545. if (element_eq(mm, read_root())):
  1546. return "ModelTransformation target type not in formalisms/SimpleClassDiagrams hierarchy: " + name!
  1547. set_add_node(to_ramify, create_tuple(key, mm))
  1548. else:
  1549. return "Name was already assigned a metamodel: " + key!
  1550. else:
  1551. return "Model not supported for RAMification: " + name!
  1552. else:
  1553. return "Permission denied: " + name!
  1554. else:
  1555. return "Model not found: " + name!
  1556. merged_formalism = model_fuse(to_ramify)
  1557. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1558. modify(merged_formalism, True)
  1559. model_overwrite(merged_formalism, get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1560. ramified_metamodel = ramify(merged_formalism)
  1561. model_create(ramified_metamodel, "RAMified/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1562. ramified_metamodel_id = get_entry_id("RAMified/" + operation_name)
  1563. // Now use the RAMified model to create the instance
  1564. if (get_entry_id(operation_name) == ""):
  1565. String new_model
  1566. // Finished with all information, now create the model itself!
  1567. output("Waiting for model constructors...")
  1568. new_model = compile_model(input(), get_full_model(ramified_metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams")))
  1569. if (element_eq(new_model, read_root())):
  1570. return "Compilation error"!
  1571. model_create(new_model, operation_name, ramified_metamodel_id, "ModelTransformation")
  1572. model_id = get_entry_id(operation_name)
  1573. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1574. // New location is available, so write
  1575. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1576. merged_formalism_id = get_entry_id("merged/" + operation_name)
  1577. // Add tracability links at this level
  1578. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1579. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1580. // Add tracability links at this level
  1581. tracability_link = instantiate_link(core, "tracability", "", merged_formalism_id, ramified_metamodel_id)
  1582. instantiate_attribute(core, tracability_link, "type", "RAMified")
  1583. // Extend metadata with info on source and target
  1584. String link
  1585. String dst
  1586. keys = dict_keys(source)
  1587. while (set_len(keys) > 0):
  1588. key = set_pop(keys)
  1589. dst = source[key]
  1590. link = instantiate_link(core, "transformInput", "", model_id, dst)
  1591. instantiate_attribute(core, link, "name", key)
  1592. keys = dict_keys(target)
  1593. while (set_len(keys) > 0):
  1594. key = set_pop(keys)
  1595. dst = target[key]
  1596. link = instantiate_link(core, "transformOutput", "", model_id, dst)
  1597. instantiate_attribute(core, link, "name", key)
  1598. return "Success"!
  1599. else:
  1600. return "Model exists: " + operation_name!
  1601. String function cmd_permission_modify(model_name : String, permissions : String):
  1602. Integer permission
  1603. String model_id
  1604. model_id = get_entry_id(model_name)
  1605. if (model_id != ""):
  1606. if (get_relation_to_model(current_user_id, model_id) == 0):
  1607. Boolean fail
  1608. Integer i
  1609. i = 0
  1610. if (string_len(permissions) != 3):
  1611. fail = True
  1612. while (i < 3):
  1613. permission = cast_integer(string_get(permissions, i))
  1614. if (bool_or(permission < 0, permission > 2)):
  1615. fail = True
  1616. break!
  1617. i = i + 1
  1618. if (bool_not(fail)):
  1619. unset_attribute(core, model_id, "permissions")
  1620. instantiate_attribute(core, model_id, "permissions", permissions)
  1621. return "Success"!
  1622. else:
  1623. return "Permission has incorrect format: must be a string of three characters, with each character being a digit between 0 and 2"!
  1624. else:
  1625. return "Permission denied to model: " + model_name!
  1626. else:
  1627. return "Model not found: " + model_name!
  1628. String function cmd_permission_owner(model_name : String, new_user_name : String):
  1629. String model_id
  1630. String new_user_id
  1631. model_id = get_entry_id(model_name)
  1632. if (model_id != ""):
  1633. if (bool_or(get_relation_to_model(current_user_id, model_id) == 0, is_admin(current_user_id))):
  1634. new_user_id = get_user_id(new_user_name)
  1635. if (new_user_id != ""):
  1636. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "owner")))
  1637. instantiate_link(core, "owner", "", model_id, new_user_id)
  1638. return "Success"!
  1639. else:
  1640. return "No such user: " + new_user_name!
  1641. else:
  1642. return "Permission denied to model: " + model_name!
  1643. else:
  1644. return "Model not found: " + model_name!
  1645. String function cmd_permission_group(model_name : String, new_group_name : String):
  1646. String model_id
  1647. String group_id
  1648. model_id = get_entry_id(model_name)
  1649. if (model_id != ""):
  1650. if (bool_or(get_relation_to_model(current_user_id, model_id) == 0, is_admin(current_user_id))):
  1651. group_id = get_group_id(new_group_name)
  1652. if (group_id != ""):
  1653. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "group")))
  1654. instantiate_link(core, "group", "", model_id, group_id)
  1655. return "Success"!
  1656. else:
  1657. return "No such group: " + new_group_name!
  1658. else:
  1659. return "Permission denied to model: " + model_name!
  1660. else:
  1661. return "Model not found: " + model_name!
  1662. String function cmd_group_create(group_name : String):
  1663. // Create a new group and become its owner
  1664. String group_id
  1665. String name
  1666. group_id = get_group_id(group_name)
  1667. if (group_id == ""):
  1668. group_id = instantiate_node(core, "Group", "")
  1669. instantiate_attribute(core, group_id, "name", group_name)
  1670. instantiate_link(core, "belongsTo", "", current_user_id, group_id)
  1671. instantiate_link(core, "owner", "", group_id, current_user_id)
  1672. return "Success"!
  1673. else:
  1674. return "Group exists: " + group_name!
  1675. String function cmd_group_delete(group_name : String):
  1676. // Delete an existing group
  1677. String group_id
  1678. group_id = get_group_id(group_name)
  1679. if (group_id != ""):
  1680. if (allow_group_modify(current_user_id, group_id)):
  1681. model_delete_element(core, group_id)
  1682. return "Success"!
  1683. else:
  1684. return "Permission denied to group: " + group_name!
  1685. else:
  1686. return "Group not found: " + group_name!
  1687. String function cmd_group_owner_add(group_name : String, other_user_name : String):
  1688. // Add an owner to your group
  1689. String group_id
  1690. String other_user_id
  1691. group_id = get_group_id(group_name)
  1692. if (group_id != ""):
  1693. if (allow_group_modify(current_user_id, group_id)):
  1694. other_user_id = get_user_id(other_user_name)
  1695. if (other_user_id != ""):
  1696. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1697. instantiate_link(core, "owner", "", group_id, other_user_id)
  1698. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1699. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1700. return "Success"!
  1701. else:
  1702. return "User is already the owner!"!
  1703. else:
  1704. return "User not found: " + other_user_name!
  1705. else:
  1706. return "Permission denied to group: " + group_name!
  1707. else:
  1708. return "Group not found: " + group_name!
  1709. String function cmd_group_owner_delete(group_name : String, other_user_name : String):
  1710. // Remove an owner from your group
  1711. String group_id
  1712. String other_user_id
  1713. group_id = get_group_id(group_name)
  1714. if (group_id != ""):
  1715. if (allow_group_modify(current_user_id, group_id)):
  1716. other_user_id = get_user_id(other_user_name)
  1717. if (other_user_id != ""):
  1718. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1719. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1720. Element overlap
  1721. overlap = set_overlap(allIncomingAssociationInstances(core, group_id, "owner"), allOutgoingAssociationInstances(core, other_user_id, "owner"))
  1722. model_delete_element(core, set_pop(overlap))
  1723. return "Success"!
  1724. else:
  1725. return "User is not an owner of the group!"!
  1726. else:
  1727. return "User is not a member of the group!"!
  1728. else:
  1729. return "User not found: " + other_user_name!
  1730. else:
  1731. return "Permission denied to group: " + group_name!
  1732. else:
  1733. return "Group not found: " + group_name!
  1734. String function cmd_group_join(group_name : String, other_user_name : String):
  1735. // Add someone to your group
  1736. String group_id
  1737. String other_user_id
  1738. group_id = get_group_id(group_name)
  1739. if (group_id != ""):
  1740. if (allow_group_modify(current_user_id, group_id)):
  1741. other_user_id = get_user_id(other_user_name)
  1742. if (other_user_id != ""):
  1743. if (set_in(allOutgoingAssociationInstances(core, other_user_id, "belongsTo"), group_id)):
  1744. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1745. return "Success"!
  1746. else:
  1747. return "User is already a member of the group!"!
  1748. else:
  1749. return "User not found: " + other_user_name!
  1750. else:
  1751. return "Permission denied to group: " + group_name!
  1752. else:
  1753. return "Group not found: " + group_name!
  1754. String function cmd_group_kick(group_name : String, other_user_name : String):
  1755. // Remove someone from your group
  1756. String group_id
  1757. String other_user_id
  1758. group_id = get_group_id(group_name)
  1759. if (group_id != ""):
  1760. if (allow_group_modify(current_user_id, group_id)):
  1761. other_user_id = get_user_id(other_user_name)
  1762. if (other_user_id != ""):
  1763. Element overlap
  1764. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1765. overlap = set_overlap(allIncomingAssociationInstances(core, group_id, "belongsTo"), allOutgoingAssociationInstances(core, other_user_id, "belongsTo"))
  1766. model_delete_element(core,set_pop(overlap))
  1767. // Check if user was an owner as well
  1768. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1769. overlap = set_overlap(allIncomingAssociationInstances(core, other_user_id, "owner"), allOutgoingAssociationInstances(core, group_id, "owner"))
  1770. model_delete_element(core, set_pop(overlap))
  1771. return "Success"!
  1772. else:
  1773. return "User is not a member of the group!"!
  1774. else:
  1775. return "User not found: " + other_user_name!
  1776. else:
  1777. return "Permission denied to group: " + group_name!
  1778. else:
  1779. return "Group not found: " + group_name!
  1780. String function cmd_group_list():
  1781. // List all groups you are a member of (and whether you are admin or not!)
  1782. Element groups
  1783. String group_id
  1784. String admin
  1785. String result
  1786. result = ""
  1787. groups = allAssociationDestinations(core, current_user_id, "belongsTo")
  1788. while (set_len(groups) > 0):
  1789. group_id = set_pop(groups)
  1790. if (set_in(allAssociationDestinations(core, group_id, "owner"), current_user_id)):
  1791. admin = " A "
  1792. else:
  1793. admin = " "
  1794. result = result + (string_join(admin, read_attribute(core, group_id, "name")) + "\n")
  1795. return result!
  1796. String function cmd_admin_promote(other_user_name : String):
  1797. // Promote a user to admin status
  1798. if (is_admin(current_user_id)):
  1799. String other_user_id
  1800. other_user_id = get_user_id(other_user_name)
  1801. if (other_user_id != ""):
  1802. unset_attribute(core, other_user_id, "admin")
  1803. instantiate_attribute(core, other_user_id, "admin", True)
  1804. return "Success"!
  1805. else:
  1806. return "User not found: " + other_user_name!
  1807. else:
  1808. return "Permission denied to administrate: " + other_user_name!
  1809. String function cmd_admin_demote(other_user_name : String):
  1810. // Demote a user to normal status
  1811. if (is_admin(current_user_id)):
  1812. String other_user_id
  1813. other_user_id = get_user_id(other_user_name)
  1814. if (other_user_id != ""):
  1815. unset_attribute(core, other_user_id, "admin")
  1816. instantiate_attribute(core, other_user_id, "admin", False)
  1817. return "Success"!
  1818. else:
  1819. return "User not found: " + other_user_name!
  1820. else:
  1821. return "Permission denied to administrate: " + other_user_name!
  1822. String function cmd_service_register(service_name : String):
  1823. // Active a service for this specific user
  1824. if (get_service_id(service_name) == ""):
  1825. String service
  1826. service = instantiate_node(core, "Service", "")
  1827. instantiate_attribute(core, service, "name", service_name)
  1828. instantiate_attribute(core, service, "port", get_taskname())
  1829. output("Success: " + get_taskname())
  1830. // Wait until we can stop the service
  1831. while (cast_value(input()) != "\"service_stop\""):
  1832. output("Service is running on this task: stop it by sending 'service_stop'")
  1833. model_delete_element(core, service)
  1834. // Service terminated
  1835. return "Success"!
  1836. else:
  1837. return "Service already exists: " + service_name!
  1838. String function cmd_user_password(user_name : String, new_password : String):
  1839. if (bool_or(current_user_id == get_user_id(user_name), is_admin(current_user_id))):
  1840. if (get_user_id(user_name) != ""):
  1841. instantiate_attribute(core, get_user_id(user_name), "password", hash(new_password))
  1842. return "Success"!
  1843. else:
  1844. return "No such user: " + user_name!
  1845. else:
  1846. return "Permission denied to user: " + user_name!
  1847. String function cmd_transformation_signature(transformation_name : String):
  1848. String model_id
  1849. model_id = get_entry_id(transformation_name)
  1850. if (model_id != ""):
  1851. if (is_nominal_instance(core, model_id, "Transformation")):
  1852. if (allow_read(current_user_id, transformation_name)):
  1853. String result
  1854. String elem
  1855. Element inputs
  1856. Element outputs
  1857. result = "Success: "
  1858. inputs = allOutgoingAssociationInstances(core, model_id, "transformInput")
  1859. while (set_len(inputs) > 0):
  1860. elem = set_pop(inputs)
  1861. result = string_join(string_join(string_join(string_join(result + "I ", read_attribute(core, elem, "name")), " "), full_name(readAssociationDestination(core, elem))), "\n")
  1862. outputs = allOutgoingAssociationInstances(core, model_id, "transformOutput")
  1863. while (set_len(outputs) > 0):
  1864. elem = set_pop(outputs)
  1865. result = string_join(string_join(string_join(string_join(result + "O ", read_attribute(core, elem, "name")), " "), full_name(readAssociationDestination(core, elem))), "\n")
  1866. return result!
  1867. else:
  1868. return "Permission denied to operation: " + transformation_name!
  1869. else:
  1870. return "Model is not an operation: " + transformation_name!
  1871. else:
  1872. return "No such operation: " + transformation_name!
  1873. String function cmd_model_types(model_name : String):
  1874. if (get_entry_id(model_name) != ""):
  1875. String model_id
  1876. model_id = get_entry_id(model_name)
  1877. Element types
  1878. String type
  1879. String result
  1880. result = "Success: "
  1881. types = allAssociationDestinations(core, model_id, "instanceOf")
  1882. while (set_len(types) > 0):
  1883. type = set_pop(types)
  1884. result = string_join(result, full_name(type) + "\n")
  1885. return result!
  1886. else:
  1887. return "No such model: " + model_name!
  1888. String function cmd_folder_create(folder_name : String):
  1889. if (get_entry_id(folder_name) == ""):
  1890. if (element_neq(create_folders(current_user_id, folder_name), read_root())):
  1891. return "Success"!
  1892. else:
  1893. return "Permission denied to folder: " + folder_name!
  1894. else:
  1895. return "Folder alreay exists: " + folder_name!
  1896. String function cmd_conformance_add(model_name : String, metamodel_name : String):
  1897. // Create a new instanceOf relation now
  1898. String instance_of
  1899. instance_of = instantiate_link(core, "instanceOf", "", get_entry_id(model_name), get_entry_id(metamodel_name))
  1900. return "Success"!
  1901. Void function user_function_skip_init(user_id : String):
  1902. String cmd
  1903. String result
  1904. current_user_id = user_id
  1905. caches = dict_create()
  1906. dict_add_fast(caches, "models", dict_create())
  1907. dict_add_fast(caches, "users", dict_create())
  1908. dict_add_fast(caches, "full_name", dict_create())
  1909. // Find root element
  1910. Element elems
  1911. String elem
  1912. elems = allInstances(core, "Folder")
  1913. while (set_len(elems) > 0):
  1914. elem = set_pop(elems)
  1915. if (value_eq(read_attribute(core, elem, "name"), "")):
  1916. if (set_len(allIncomingAssociationInstances(core, elem, "contains")) == 0):
  1917. dict_add_fast(caches, "root", elem)
  1918. break!
  1919. output("Welcome to the Model Management Interface v2.0!")
  1920. output("Use the 'help' command for a list of possible commands")
  1921. while (True):
  1922. cmd = input()
  1923. if (cmd == "help"):
  1924. output(cmd_help())
  1925. elif (cmd == "model_add"):
  1926. output(cmd_model_add(single_input("Model type?"), single_input("Model name?"), single_input("Model textual representation?")))
  1927. elif (cmd == "process_execute"):
  1928. output(cmd_process_execute(single_input("Process to execute?"), dict_input("Model bindings to use?")))
  1929. elif (cmd == "process_signature"):
  1930. output(cmd_process_signature(single_input("Process to execute?")))
  1931. elif (cmd == "transformation_between"):
  1932. output(cmd_transformation_between(dict_input("Source signature?"), dict_input("Target signature?")))
  1933. elif (cmd == "model_render"):
  1934. output(cmd_model_render(single_input("Model name?"), single_input("Mapper name?"), single_input("Rendered name?")))
  1935. elif (cmd == "model_rendered"):
  1936. output(cmd_model_rendered(single_input("Model name?"), single_input("Mapper name?")))
  1937. elif (cmd == "transformation_execute"):
  1938. output(cmd_transformation_execute(single_input("Transformation name?"), dict_input("Source models?"), dict_input("Target models?"), single_input("Tracability model?")))
  1939. elif (cmd == "verify"):
  1940. result = cmd_verify(single_input("Model name?"), single_input("Metamodel name?"))
  1941. if (result != ""):
  1942. output(result)
  1943. elif (cmd == "model_overwrite"):
  1944. output(cmd_model_overwrite(single_input("Model name?"), single_input("Metamodel name?")))
  1945. elif (cmd == "model_modify"):
  1946. output(cmd_model_modify(single_input("Model name?"), single_input("Metamodel name?")))
  1947. elif (cmd == "model_delete"):
  1948. output(cmd_model_delete(single_input("Model name?")))
  1949. elif (cmd == "model_list"):
  1950. output(cmd_model_list(single_input("Location?")))
  1951. elif (cmd == "model_list_full"):
  1952. output(cmd_model_list_full(single_input("Location?")))
  1953. elif (cmd == "transformation_add_MANUAL"):
  1954. output(cmd_transformation_add_MANUAL(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  1955. elif (cmd == "transformation_add_AL"):
  1956. output(cmd_transformation_add_AL(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  1957. elif (cmd == "transformation_add_MT"):
  1958. output(cmd_transformation_add_MT(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  1959. elif (cmd == "permission_modify"):
  1960. output(cmd_permission_modify(single_input("Model name?"), single_input("Permissions?")))
  1961. elif (cmd == "permission_owner"):
  1962. output(cmd_permission_owner(single_input("Model name?"), single_input("New owning user?")))
  1963. elif (cmd == "permission_group"):
  1964. output(cmd_permission_group(single_input("Model name?"), single_input("New owning group?")))
  1965. elif (cmd == "group_create"):
  1966. output(cmd_group_create(single_input("New group name?")))
  1967. elif (cmd == "group_delete"):
  1968. output(cmd_group_delete(single_input("Group name?")))
  1969. elif (cmd == "group_owner_add"):
  1970. output(cmd_group_owner_add(single_input("Group name?"), single_input("User name?")))
  1971. elif (cmd == "group_owner_delete"):
  1972. output(cmd_group_owner_delete(single_input("Group name?"), single_input("User name?")))
  1973. elif (cmd == "group_join"):
  1974. output(cmd_group_join(single_input("Group name?"), single_input("User name?")))
  1975. elif (cmd == "group_kick"):
  1976. output(cmd_group_kick(single_input("Group name?"), single_input("User name?")))
  1977. elif (cmd == "group_list"):
  1978. output(cmd_group_list())
  1979. elif (cmd == "admin_promote"):
  1980. output(cmd_admin_promote(single_input("User name?")))
  1981. elif (cmd == "admin_demote"):
  1982. output(cmd_admin_demote(single_input("User name?")))
  1983. elif (cmd == "service_register"):
  1984. output(cmd_service_register(single_input("Service name?")))
  1985. elif (cmd == "user_password"):
  1986. output(cmd_user_password(single_input("User name?"), single_input("New password?")))
  1987. elif (cmd == "transformation_read_signature"):
  1988. output(cmd_transformation_signature(single_input("Transformation name?")))
  1989. elif (cmd == "verbose"):
  1990. set_verbose(True)
  1991. elif (cmd == "quiet"):
  1992. set_verbose(False)
  1993. elif (cmd == "self-destruct"):
  1994. // Delete user from Core Formalism
  1995. model_delete_element(core, user_id)
  1996. return !
  1997. elif (cmd == "user_logout"):
  1998. // TODO
  1999. cmd = "FAIL"
  2000. elif (cmd == "exit"):
  2001. // Exit by actually removing the user and decoupling it from all of its models
  2002. // Restarting with the same user name will NOT grant you access to anything of the previous user with that same name
  2003. // as the current user will have been deleted
  2004. return !
  2005. elif (cmd == "folder_create"):
  2006. output(cmd_folder_create(single_input("Folder name?")))
  2007. elif (cmd == "add_conformance"):
  2008. log("Adding conformance relation...")
  2009. output(cmd_conformance_add(single_input("Model name?"), single_input("Metamodel name?")))
  2010. log("Added!")
  2011. elif (cmd == "remove_conformance"):
  2012. // TODO
  2013. cmd = "FAIL"
  2014. elif (cmd == "user_name"):
  2015. // TODO
  2016. cmd = "FAIL"
  2017. elif (cmd == "service_poll"):
  2018. // TODO
  2019. cmd = "FAIL"
  2020. elif (cmd == "model_types"):
  2021. output(cmd_model_types(single_input("Model name?")))
  2022. else:
  2023. output("Unknown command: " + cmd)
  2024. // We never get here!
  2025. return !