core_algorithm.alc 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  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. Element core = ?
  13. String admin_username = "admin"
  14. String admin_password = "admin"
  15. String core_location = "models/CoreFormalism"
  16. String core_model_location = "core"
  17. String function JSON_print(model : Element):
  18. String result
  19. Element keys_m
  20. String v_m
  21. String type
  22. String attr_key
  23. Element attr_keys
  24. Boolean first
  25. Element attr_value
  26. result = "["
  27. keys_m = dict_keys(model["model"])
  28. first = True
  29. while (read_nr_out(keys_m) > 0):
  30. v_m = set_pop(keys_m)
  31. type = read_type(model["metamodel"], read_type(model, v_m))
  32. if (bool_or(type == "Class", type == "Association")):
  33. if (bool_not(first)):
  34. result = result + ","
  35. else:
  36. first = False
  37. result = result + "{"
  38. result = (((result + "\"id\": \"") + v_m) + "\"")
  39. result = (((result + ",") + "\"type\": \"") + read_type(model, v_m)) + "\""
  40. if (type == "Association"):
  41. result = (((result + ", \"__source\": \"") + reverseKeyLookup(model["model"], read_edge_src(model["model"][v_m]))) + "\"")
  42. result = (((result + ", \"__target\": \"") + reverseKeyLookup(model["model"], read_edge_dst(model["model"][v_m]))) + "\"")
  43. // Has attributes
  44. attr_keys = dict_keys(getAttributeList(model, v_m))
  45. while (0 < read_nr_out(attr_keys)):
  46. attr_key = set_pop(attr_keys)
  47. attr_value = read_attribute(model, v_m, attr_key)
  48. if (element_eq(attr_value, read_root())):
  49. result = (((result + ", \"") + attr_key) + "\": null")
  50. else:
  51. if (is_physical_boolean(attr_value)):
  52. if (attr_value):
  53. result = ((result + ", \"") + attr_key) + "\": true"
  54. else:
  55. result = ((result + ", \"") + attr_key) + "\": false"
  56. else:
  57. result = ((((result + ", \"") + attr_key) + "\": ") + cast_v2s(attr_value))
  58. result = result + "}"
  59. result = result + "]"
  60. return result!
  61. Void function initialize_core():
  62. // Initialize the Core Formalism
  63. String core_model
  64. String core_formalism_model
  65. String scd_model
  66. Element al_model
  67. String admin_group
  68. String admin_user
  69. String nobody_group
  70. String instance_of
  71. String core_formalism
  72. Element scd
  73. Element al
  74. Element pm
  75. Element tracability
  76. Element conformance
  77. String pm_model
  78. String tracability_model
  79. String coreM_model_location
  80. String pm_location
  81. String scd_location
  82. String al_location
  83. String tracability_location
  84. String conformance_location
  85. coreM_model_location = "models/core"
  86. pm_location = "models/ProcessModel"
  87. scd_location = "models/SimpleClassDiagrams"
  88. al_location = "models/ActionLanguage"
  89. tracability_location = "models/Tracability"
  90. conformance_location = "models/Conformance_MV"
  91. // Annotate action language fragments
  92. //TODO Uncomment, but takes some time...
  93. //add_code_model(import_node(al_location), conformance_location, wrap_conformance)
  94. scd = import_node(scd_location)
  95. al = import_node(al_location)
  96. pm = import_node(pm_location)
  97. tracability = import_node(tracability_location)
  98. conformance = import_node(conformance_location)
  99. // Create the Model itself and make public
  100. core_formalism = import_node(core_location)
  101. core = instantiate_model(core_formalism)
  102. export_node(core_model_location, core)
  103. export_node(coreM_model_location, core["model"])
  104. // Create admin group
  105. admin_group = instantiate_node(core, "Group", "")
  106. instantiate_attribute(core, admin_group, "name", "admin")
  107. // Create nobody group
  108. nobody_group = instantiate_node(core, "Group", "")
  109. instantiate_attribute(core, nobody_group, "name", "nobody")
  110. // Create admin user
  111. admin_user = instantiate_node(core, "User", "")
  112. instantiate_attribute(core, admin_user, "name", admin_username)
  113. instantiate_attribute(core, admin_user, "admin", True)
  114. instantiate_attribute(core, admin_user, "password", hash(admin_password))
  115. // Create link between admin user and group
  116. instantiate_link(core, "ownedBy", "", admin_group, admin_user)
  117. instantiate_link(core, "belongsTo", "", admin_user, admin_group)
  118. // Add the SimpleClassDiagrams formalism already
  119. scd_model = instantiate_node(core, "Model", "")
  120. instantiate_attribute(core, scd_model, "name", "SimpleClassDiagrams")
  121. instantiate_attribute(core, scd_model, "location", scd_location + "/model")
  122. instantiate_attribute(core, scd_model, "permissions", "221")
  123. instance_of = instantiate_link(core, "instanceOf", "", scd_model, scd_model)
  124. instantiate_attribute(core, instance_of, "type_mapping", scd["type_mapping"])
  125. instantiate_link(core, "group", "", scd_model, admin_group)
  126. instantiate_link(core, "owner", "", scd_model, admin_user)
  127. // Add the Tracability formalism
  128. tracability_model = instantiate_node(core, "Model", "")
  129. instantiate_attribute(core, tracability_model, "name", "Tracability")
  130. instantiate_attribute(core, tracability_model, "location", tracability_location + "/model")
  131. instantiate_attribute(core, tracability_model, "permissions", "221")
  132. instance_of = instantiate_link(core, "instanceOf", "", tracability_model, scd_model)
  133. instantiate_attribute(core, instance_of, "type_mapping", tracability["type_mapping"])
  134. instantiate_link(core, "group", "", tracability_model, admin_group)
  135. instantiate_link(core, "owner", "", tracability_model, admin_user)
  136. // Add the Process Model formalism
  137. pm_model = instantiate_node(core, "Model", "")
  138. instantiate_attribute(core, pm_model, "name", "ProcessModel")
  139. instantiate_attribute(core, pm_model, "location", pm_location + "/model")
  140. instantiate_attribute(core, pm_model, "permissions", "221")
  141. instance_of = instantiate_link(core, "instanceOf", "", pm_model, scd_model)
  142. instantiate_attribute(core, instance_of, "type_mapping", pm["type_mapping"])
  143. instantiate_link(core, "group", "", pm_model, admin_group)
  144. instantiate_link(core, "owner", "", pm_model, admin_user)
  145. // Add the Action Language formalism
  146. al_model = instantiate_node(core, "Model", "")
  147. instantiate_attribute(core, al_model, "name", "ActionLanguage")
  148. instantiate_attribute(core, al_model, "location", al_location + "/model")
  149. instantiate_attribute(core, al_model, "permissions", "221")
  150. instance_of = instantiate_link(core, "instanceOf", "", al_model, scd_model)
  151. instantiate_attribute(core, instance_of, "type_mapping", al["type_mapping"])
  152. instantiate_link(core, "group", "", al_model, admin_group)
  153. instantiate_link(core, "owner", "", al_model, admin_user)
  154. // Add the Manual Operation formalism
  155. Element manual
  156. String manual_model
  157. manual = instantiate_model(scd)
  158. manual_model = instantiate_node(core, "Model", "")
  159. export_node("models/ManualOperation", manual)
  160. instantiate_attribute(core, manual_model, "name", "ManualOperation")
  161. instantiate_attribute(core, manual_model, "location", "models/ManualOperation/model")
  162. instantiate_attribute(core, manual_model, "permissions", "221")
  163. instance_of = instantiate_link(core, "instanceOf", "", manual_model, scd_model)
  164. instantiate_attribute(core, instance_of, "type_mapping", create_node())
  165. instantiate_link(core, "group", "", manual_model, admin_group)
  166. instantiate_link(core, "owner", "", manual_model, admin_user)
  167. // Add the conformance operation as action language
  168. String conf
  169. conf = instantiate_node(core, "ActionLanguage", "")
  170. instantiate_attribute(core, conf, "name", "conformance_mv")
  171. instantiate_attribute(core, conf, "location", conformance_location + "/model")
  172. instantiate_attribute(core, conf, "permissions", "221")
  173. instance_of = instantiate_link(core, "instanceOf", "", conf, al_model)
  174. instantiate_attribute(core, instance_of, "type_mapping", conformance["type_mapping"])
  175. instantiate_link(core, "group", "", conf, admin_group)
  176. instantiate_link(core, "owner", "", conf, admin_user)
  177. String lnk
  178. lnk = instantiate_link(core, "transformInput", "", conf, scd_model)
  179. instantiate_attribute(core, lnk, "name", "metamodel")
  180. lnk = instantiate_link(core, "transformInput", "", conf, scd_model)
  181. instantiate_attribute(core, lnk, "name", "model")
  182. // Add the core formalism already
  183. core_formalism_model = instantiate_node(core, "Model", "")
  184. instantiate_attribute(core, core_formalism_model, "name", "CoreFormalism")
  185. instantiate_attribute(core, core_formalism_model, "location", core_location + "/model")
  186. instantiate_attribute(core, core_formalism_model, "permissions", "221")
  187. instance_of = instantiate_link(core, "instanceOf", "", core_formalism_model, scd_model)
  188. instantiate_attribute(core, instance_of, "type_mapping", core_formalism["type_mapping"])
  189. instantiate_link(core, "group", "", core_formalism_model, admin_group)
  190. instantiate_link(core, "owner", "", core_formalism_model, admin_user)
  191. // Add the core model
  192. core_model = instantiate_node(core, "Model", "")
  193. instantiate_attribute(core, core_model, "name", "core")
  194. instantiate_attribute(core, core_model, "location", coreM_model_location)
  195. instantiate_attribute(core, core_model, "permissions", "200")
  196. instance_of = instantiate_link(core, "instanceOf", "", core_model, core_formalism_model)
  197. instantiate_attribute(core, instance_of, "type_mapping", core["type_mapping"])
  198. instantiate_link(core, "group", "", core_model, admin_group)
  199. instantiate_link(core, "owner", "", core_model, admin_user)
  200. // Call this for ourselves as well
  201. //log("MvC is ready!")
  202. return !
  203. String function get_instanceOf_link(model_id : String):
  204. Element all_links
  205. String choice
  206. all_links = allOutgoingAssociationInstances(core, model_id, "instanceOf")
  207. if (read_nr_out(all_links) > 1):
  208. log("WARNING: multiple instanceOf relations were detected for this model; picking one at random!")
  209. elif (read_nr_out(all_links) == 0):
  210. log("ERROR: untyped model!")
  211. choice = set_pop(allOutgoingAssociationInstances(core, model_id, "instanceOf"))
  212. return choice!
  213. Element function get_full_model(model_id : String):
  214. Element m
  215. Element all_links
  216. String choice
  217. choice = get_instanceOf_link(model_id)
  218. m = create_node()
  219. dict_add(m, "model", import_node(read_attribute(core, model_id, "location")))
  220. dict_add(m, "type_mapping", read_attribute(core, choice, "type_mapping"))
  221. if (readAssociationDestination(core, choice) == model_id):
  222. // Found the meta-circular level, so we can stop!
  223. dict_add(m, "metamodel", m)
  224. else:
  225. dict_add(m, "metamodel", get_full_model(readAssociationDestination(core, choice)))
  226. return m!
  227. Integer function get_relation_to_model(user_id : String, model_id : String):
  228. if (set_in(allAssociationDestinations(core, model_id, "owner"), user_id)):
  229. // We are the owner
  230. return 0!
  231. else:
  232. String group_id
  233. group_id = set_pop(allAssociationDestinations(core, model_id, "group"))
  234. if (set_in(allAssociationDestinations(core, user_id, "belongsTo"), group_id)):
  235. // We are in the owning group
  236. return 1!
  237. else:
  238. // We are not related whatsoever
  239. return 2!
  240. Boolean function is_admin(user_id : String):
  241. if (read_attribute(core, user_id, "admin")):
  242. return True!
  243. else:
  244. return False!
  245. Boolean function allow_read(user_id : String, model_id : String):
  246. if (is_admin(user_id)):
  247. // Is admin, so always allow
  248. return True!
  249. else:
  250. // Check permissions
  251. String permission
  252. permission = string_get(read_attribute(core, model_id, "permissions"), get_relation_to_model(user_id, model_id))
  253. if (bool_or(permission == "1", permission == "2")):
  254. return True!
  255. else:
  256. return False!
  257. Boolean function allow_write(user_id : String, model_id : String):
  258. if (is_admin(user_id)):
  259. // Is admin, so always allow
  260. return True!
  261. else:
  262. // Check permissions
  263. String permission
  264. permission = string_get(read_attribute(core, model_id, "permissions"), get_relation_to_model(user_id, model_id))
  265. if (permission == "2"):
  266. return True!
  267. else:
  268. return False!
  269. Boolean function allow_change_metadata(user_id : String, model_id : String):
  270. if (is_admin(user_id)):
  271. // Is admin, so always allow
  272. return True!
  273. else:
  274. if (get_relation_to_model(user_id, model_id) == 0):
  275. // Only owner can chmod
  276. return True!
  277. else:
  278. return False!
  279. Boolean function allow_group_modify(user_id : String, group_id : String):
  280. if (is_admin(user_id)):
  281. // Is admin, so always allow
  282. return True!
  283. else:
  284. if (read_nr_out(set_overlap(allIncomingAssociationInstances(core, user_id, "owner"), allOutgoingAssociationInstances(core, group_id, "owner"))) > 0):
  285. // We are an owner
  286. return True!
  287. else:
  288. return False!
  289. Boolean function check_login(user_id : String):
  290. String password
  291. String stored_password
  292. stored_password = read_attribute(core, user_id, "password")
  293. output("Password for existing user?")
  294. password = hash(input())
  295. return password == stored_password!
  296. Element function extract_ftg(user_id : String):
  297. // Extract your personal FTG, showing only the readable models that can be opened
  298. // This function does the actual projection of transformations
  299. // TODO: Only keep transformations satisfying some properties!
  300. return create_node()!
  301. Void function new_task():
  302. String username
  303. String user_id
  304. String password
  305. // Load in a hard-reference to the previously created model
  306. core = import_node(core_model_location)
  307. while (True):
  308. output("Log on as which user?")
  309. username = input()
  310. user_id = get_user_id(username)
  311. if (user_id == ""):
  312. // New user
  313. // Add user to Core Formalism
  314. user_id = instantiate_node(core, "User", "")
  315. instantiate_attribute(core, user_id, "name", username)
  316. instantiate_attribute(core, user_id, "admin", False)
  317. output("This is a new user: please give password!")
  318. password = hash(input())
  319. output("Please repeat the password")
  320. if (password == hash(input())):
  321. output("Passwords match!")
  322. instantiate_attribute(core, user_id, "password", password)
  323. break!
  324. else:
  325. output("Not the same password!")
  326. else:
  327. if (check_login(user_id)):
  328. break!
  329. else:
  330. output("Wrong password!")
  331. user_function_skip_init(user_id)
  332. // User destroyed already, so just stop execution
  333. return!
  334. String function get_model_id(name : String):
  335. Element models
  336. String model
  337. models = allInstances(core, "Model")
  338. while (read_nr_out(models) > 0):
  339. model = set_pop(models)
  340. if (value_eq(name, read_attribute(core, model, "name"))):
  341. return model!
  342. return ""!
  343. String function get_user_id(name : String):
  344. Element users
  345. String user
  346. users = allInstances(core, "User")
  347. while (read_nr_out(users) > 0):
  348. user = set_pop(users)
  349. if (value_eq(read_attribute(core, user, "name"), name)):
  350. return user!
  351. return ""!
  352. String function get_group_id(name : String):
  353. Element groups
  354. String group
  355. groups = allInstances(core, "Group")
  356. while (read_nr_out(groups) > 0):
  357. group = set_pop(groups)
  358. if (value_eq(read_attribute(core, group, "name"), name)):
  359. return group!
  360. return ""!
  361. Void function model_create(model : Element, name : String, user_id : String, type_id : String, kind : String):
  362. String location
  363. String model_id
  364. String instance_of
  365. location = "models/" + cast_id2s(model)
  366. export_node(location, model["model"])
  367. // Manage meta-info
  368. model_id = instantiate_node(core, kind, "")
  369. instantiate_attribute(core, model_id, "name", name)
  370. instantiate_attribute(core, model_id, "location", location)
  371. instantiate_attribute(core, model_id, "permissions", "200")
  372. instantiate_link(core, "owner", "", model_id, user_id)
  373. instantiate_link(core, "group", "", model_id, get_group_id("nobody"))
  374. instance_of = instantiate_link(core, "instanceOf", "", model_id, type_id)
  375. instantiate_attribute(core, instance_of, "type_mapping", model["type_mapping"])
  376. return!
  377. Void function model_overwrite(model : Element, model_id : String):
  378. String location
  379. String instanceOf_link
  380. location = "models/" + cast_id2s(model)
  381. export_node(location, model["model"])
  382. // Change location in meta-data
  383. unset_attribute(core, model_id, "location")
  384. instantiate_attribute(core, model_id, "location", location)
  385. instanceOf_link = get_instanceOf_link(model_id)
  386. unset_attribute(core, instanceOf_link, "type_mapping")
  387. instantiate_attribute(core, instanceOf_link, "type_mapping", model["type_mapping"])
  388. return!
  389. Boolean function check_is_typed_by(model_id : String, metamodel_id : String):
  390. // TODO check if there is actually an instanceOf link between them
  391. // --> quick check!
  392. return True!
  393. Boolean function check_conformance(model_id : String):
  394. // TODO check if it actually conforms, considering that instanceOf link
  395. // --> in-depth check
  396. return True!
  397. Boolean function pm_finished(worklist : Element, pm : String):
  398. Element finished
  399. Integer cnt
  400. Integer i
  401. // Check if any of the "finish" elements are in the worklist
  402. // If so, we can already finish, and therefore will stop immediately
  403. finished = allInstances(pm, "Finish")
  404. i = 0
  405. cnt = read_nr_out(finished)
  406. while (i < cnt):
  407. // Check each finished element individually
  408. if (set_in(finished, dict_read(read_edge_dst(read_out(worklist, i)), 0))):
  409. return True!
  410. i = i + 1
  411. return False!
  412. Element function execute_operation(operation_id : String, input_models : Element, output_models : Element, tracability_model : Element):
  413. // Operations are always in-place and uses only a single metamodel
  414. // Therefore, we must:
  415. // 1) Find merged metamodel
  416. // 2) Merge the different source models and retype
  417. // 3) Perform the operation on the merged model
  418. // 4) Split the resulting model based on the target formalisms; if operation successful
  419. Element input_model
  420. String trace_link_id
  421. Element merged_model
  422. String merged_metamodel_id
  423. String ramified_metamodel_id
  424. Boolean result
  425. String exact_type
  426. Element trace_links
  427. String linktype
  428. String model_ID
  429. String key
  430. Element keys
  431. Element input_keys
  432. Element output_keys
  433. Element model_tuples
  434. String metamodel_name
  435. Element metamodel
  436. String metamodel_ID
  437. Boolean tracability
  438. // 1) Find merged metamodel
  439. exact_type = read_type(core, operation_id)
  440. trace_links = allOutgoingAssociationInstances(core, operation_id, "tracability")
  441. linktype = "operatesOn"
  442. merged_metamodel_id = ""
  443. while (read_nr_out(trace_links) > 0):
  444. trace_link_id = set_pop(trace_links)
  445. if (value_eq(read_attribute(core, trace_link_id, "type"), linktype)):
  446. merged_metamodel_id = readAssociationDestination(core, trace_link_id)
  447. if (merged_metamodel_id != ""):
  448. // 2) Merge source models
  449. model_tuples = create_node()
  450. keys = dict_keys(input_models)
  451. while (read_nr_out(keys) > 0):
  452. key = set_pop(keys)
  453. set_add(model_tuples, create_tuple(key, get_full_model(get_model_id(input_models[key]))))
  454. merged_model = model_join(model_tuples, get_full_model(merged_metamodel_id), tracability_model)
  455. // 3) Transform
  456. if (exact_type == "ModelTransformation"):
  457. result = transform(merged_model, get_full_model(operation_id))
  458. elif (exact_type == "ManualOperation"):
  459. output("Please perform manual operation " + cast_v2s(read_attribute(core, operation_id, "name")))
  460. modify(merged_model, True)
  461. result = True
  462. elif (exact_type == "ActionLanguage"):
  463. Element func
  464. func = get_func_AL_model(get_full_model(operation_id))
  465. result = func(merged_model)
  466. else:
  467. return read_root()!
  468. // 4) Split in different models depending on type
  469. if (element_neq(tracability_model, read_root())):
  470. tracability = True
  471. else:
  472. tracability = False
  473. if (result):
  474. model_tuples = create_node()
  475. keys = dict_keys(output_models)
  476. while (read_nr_out(keys) > 0):
  477. key = set_pop(keys)
  478. set_add(model_tuples, create_tuple(key, get_full_model(get_model_id(output_models[key]))))
  479. result = model_split(merged_model, model_tuples, tracability)
  480. if (tracability):
  481. Element new_tracability_model
  482. new_tracability_model = result["__tracability"]
  483. dict_overwrite(tracability_model, "model", new_tracability_model["model"])
  484. dict_overwrite(tracability_model, "type_mapping", new_tracability_model["type_mapping"])
  485. dict_overwrite(tracability_model, "metamodel", new_tracability_model["metamodel"])
  486. dict_delete(result, "__tracability")
  487. return result!
  488. else:
  489. return read_root()!
  490. else:
  491. output("Could not resolve intermediate merged metamodel")
  492. return read_root()!
  493. Boolean function enact_action(pm : Element, element : String, prefix : String, user_id : String):
  494. Boolean result
  495. String transformation_id
  496. Element lst
  497. String elem
  498. Element inputs
  499. Element outputs
  500. String type_name
  501. String exact_type
  502. Element trace_links
  503. Element output_mms
  504. Element consumes_link
  505. String name
  506. String value
  507. String elem_name
  508. Element keys
  509. String key
  510. String consume
  511. String produce
  512. Element output_map
  513. inputs = create_node()
  514. outputs = create_node()
  515. output_map = create_node()
  516. // Read out the referenced element from the MvC
  517. transformation_id = get_model_id(read_attribute(pm, element, "name"))
  518. // Find all input model names
  519. lst = allOutgoingAssociationInstances(pm, element, "Consumes")
  520. while (read_nr_out(lst) > 0):
  521. consume = set_pop(lst)
  522. value = read_attribute(pm, readAssociationDestination(pm, consume), "name")
  523. dict_add(inputs, read_attribute(pm, consume, "name"), prefix + value)
  524. // Find all output model names and their metamodel
  525. lst = allOutgoingAssociationInstances(pm, element, "Produces")
  526. while (read_nr_out(lst) > 0):
  527. produce = set_pop(lst)
  528. elem = readAssociationDestination(pm, produce)
  529. type_name = read_attribute(pm, elem, "type")
  530. elem_name = read_attribute(pm, elem, "name")
  531. dict_add(outputs, read_attribute(pm, produce, "name"), type_name)
  532. dict_add(output_map, read_attribute(pm, produce, "name"), prefix + elem_name)
  533. if read_type(core, transformation_id) == "ActionLanguage":
  534. log(string_join("Enacting ActionLanguage: ", read_attribute(pm, element, "name")))
  535. output(string_join("Enacting ActionLanguage: ", read_attribute(pm, element, "name")))
  536. elif read_type(core, transformation_id) == "ManualOperation":
  537. log(string_join("Enacting ManualOperation: ", read_attribute(pm, element, "name")))
  538. output(string_join("Enacting ManualOperation: ", read_attribute(pm, element, "name")))
  539. else:
  540. log(string_join("Enacting ModelTransformation: ", read_attribute(pm, element, "name")))
  541. output(string_join("Enacting ModelTransformation: ", read_attribute(pm, element, "name")))
  542. result = execute_operation(transformation_id, inputs, outputs, read_root())
  543. if (element_eq(result, read_root())):
  544. // Something went wrong!
  545. return False!
  546. else:
  547. keys = dict_keys(result)
  548. while (read_nr_out(keys) > 0):
  549. key = set_pop(keys)
  550. if (get_model_id(output_map[key]) == ""):
  551. // New model
  552. model_create(result[key], output_map[key], user_id, get_model_id(key), "Model")
  553. else:
  554. model_overwrite(result[key], get_model_id(output_map[key]))
  555. return True!
  556. Void function enact_PM(pm : Element, prefix : String, user_id : String):
  557. Element worklist
  558. String element
  559. String start
  560. String type
  561. Boolean result
  562. Element tuple
  563. Element counters
  564. Element join_nodes
  565. output("Success")
  566. // Initialize Join counters
  567. counters = create_node()
  568. join_nodes = allInstances(pm, "Join")
  569. while (read_nr_out(join_nodes) > 0):
  570. dict_add(counters, set_pop(join_nodes), 0)
  571. // Create the worklist with the Start instance as first element
  572. worklist = create_node()
  573. set_add(worklist, create_tuple(set_pop(allInstances(pm, "Start")), True))
  574. while (bool_not(pm_finished(worklist, pm))):
  575. // Pop a random element from the list and execute it
  576. tuple = set_pop(worklist)
  577. element = tuple[0]
  578. result = tuple[1]
  579. // Find the type (to see what to do with it)
  580. // this does not yet yield the type of transformation, if it is an Execution
  581. type = read_type(pm, element)
  582. if (type == "Start"):
  583. // Initial node, just progress to the next elements
  584. // Nothing to do here though, as we have just started
  585. result = True
  586. elif (type == "Finish"):
  587. // Should be impossible, as we would have ended...
  588. result = result
  589. elif (type == "Fork"):
  590. result = result
  591. elif (type == "Join"):
  592. // Only do this if all dependencies are fullfilled
  593. // So add to the counter of this Join
  594. dict_overwrite(counters, element, integer_addition(counters[element], 1))
  595. // Now check whether we have enough tokens to execute the Join itself
  596. Integer required
  597. Integer got
  598. required = read_nr_out(allIncomingAssociationInstances(pm, element, "Next")) + read_nr_out(allIncomingAssociationInstances(pm, element, "Else"))
  599. got = counters[element]
  600. if (got == required):
  601. // Reset counter to 0
  602. dict_overwrite(counters, element, 0)
  603. // And continue
  604. else:
  605. // We haven't gotten all yet, so we wait (i.e., continue without adding Next link to worklist)
  606. continue!
  607. elif (type == "Exec"):
  608. // Execute a transformation
  609. // This the difficult part!
  610. result = enact_action(pm, element, prefix, user_id)
  611. elif (type == "Decision"):
  612. // If the previous result is true, we add the normal one, otherwise the false one
  613. // in this context, that means that if it is false, we should add it manually to the list, and then continue the simulation loop
  614. if (bool_not(result)):
  615. // Apparently it is False, so map this to the "Else" branch
  616. set_add(worklist, create_tuple(set_pop(allAssociationDestinations(pm, element, "Else")), True))
  617. continue!
  618. else:
  619. // Apparently it is True, so map this to the "Then" branch
  620. set_add(worklist, create_tuple(set_pop(allAssociationDestinations(pm, element, "Then")), True))
  621. continue!
  622. // We have finished the execution, so add all outgoing edges to the worklist
  623. Element all_next
  624. all_next = allAssociationDestinations(pm, element, "Next")
  625. String next
  626. while (read_nr_out(all_next) > 0):
  627. next = set_pop(all_next)
  628. set_add(worklist, create_tuple(next, result))
  629. // Reached a finish element, so stop
  630. output("Success")
  631. return !
  632. String function cmd_help(user_id : String):
  633. String result
  634. result = ""
  635. result = result + ("Model operations\n")
  636. result = result + (" model_add -- Add a new model\n")
  637. result = result + (" model_modify -- Modify an existing model\n")
  638. result = result + (" model_list -- List all models\n")
  639. result = result + (" model_list_full -- List all models with full info\n")
  640. result = result + (" model_overwrite -- Overwrites a model with an uploaded model, leaving all metadata\n")
  641. result = result + (" model_render -- Render a given model with a specified mapper\n")
  642. result = result + (" verify -- Check whether a model conforms to its metamodel\n")
  643. result = result + ("\n")
  644. result = result + ("Transformation-specific operations\n")
  645. result = result + (" transformation_add_MT -- Initialize a new model transformation\n")
  646. result = result + (" transformation_add_AL -- Initialize a new action language transformation\n")
  647. result = result + (" transformation_add_MANUAL -- Initialize a new manual transformation\n")
  648. result = result + (" transformation_execute -- Execute a transformation on a set of input models\n")
  649. result = result + (" transformation_list -- List all model transformations\n")
  650. result = result + (" transformation_list_full -- List all model transformations with permissions\n")
  651. result = result + (" transformation_detail -- List transformation details\n")
  652. result = result + (" transformation_between -- List all transformations between two metamodels\n")
  653. result = result + ("\n")
  654. result = result + ("Process operations\n")
  655. result = result + (" process_execute -- Execute a process model\n")
  656. result = result + ("\n")
  657. result = result + ("Model permission operations\n")
  658. result = result + (" permission_modify -- Change model permissions\n")
  659. result = result + (" permission_owner -- Change model owner\n")
  660. result = result + (" permission_group -- Change model group\n")
  661. result = result + ("\n")
  662. result = result + ("Group operations\n")
  663. result = result + (" group_create -- Create a group\n")
  664. result = result + (" group_delete -- Delete a group\n")
  665. result = result + (" group_owner_add -- Add group owner\n")
  666. result = result + (" group_owner_delete -- Remove group owner\n")
  667. result = result + (" group_join -- Add someone to your group\n")
  668. result = result + (" group_kick -- Kick someone from your group\n")
  669. result = result + (" group_list -- List all groups you are a member of\n")
  670. result = result + ("\n")
  671. if (is_admin(user_id)):
  672. result = result + ("Admin operations\n")
  673. result = result + (" admin_promote -- Promote a user to admin status\n")
  674. result = result + (" admin_demote -- Demote a user to normal status\n")
  675. result = result + ("\n")
  676. result = result + ("General operations\n")
  677. result = result + (" self-destruct -- Remove current user and revoke all permissions \n")
  678. result = result + (" exit -- Kill the current task, while retaining user\n")
  679. return result!
  680. String function cmd_model_add(user_id : String, type : String, name : String):
  681. // Model addition operation, which uses model upload commands of the compiler
  682. String location
  683. String type_id
  684. Element new_model
  685. String new_model_id
  686. type_id = get_model_id(type)
  687. if (type_id != ""):
  688. // Type exists
  689. if (allow_read(user_id, type_id)):
  690. // And is readable
  691. if (get_model_id(name) == ""):
  692. // Model doesn't exist yet
  693. output("Waiting for model constructors...")
  694. new_model = construct_model_raw(get_full_model(type_id))
  695. model_create(new_model, name, user_id, type_id, "Model")
  696. return "Success"!
  697. else:
  698. return "Model exists: " + name!
  699. else:
  700. return "Permission denied to model: " + type!
  701. else:
  702. return "Model not found: " + type!
  703. String function cmd_process_execute(user_id : String, process : String, prefix : String):
  704. // Execute a process model until it reaches termination
  705. String process_id
  706. process_id = get_model_id(process)
  707. if (process_id != ""):
  708. if (allow_read(user_id, process_id)):
  709. enact_PM(get_full_model(process_id), prefix, user_id)
  710. return "Success"!
  711. else:
  712. return "Permission denied to model: " + process!
  713. else:
  714. return "Model not found: " + process!
  715. String function cmd_transformation_between(user_id : String, source_name : String, target_name : String):
  716. String source_id
  717. String target_id
  718. Element onSource
  719. Element onTarget
  720. Element result
  721. String transformation
  722. source_id = get_model_id(source_name)
  723. if (source_id != ""):
  724. target_id = get_model_id(target_name)
  725. if (target_id != ""):
  726. onSource = allAssociationOrigins(core, source_id, "transformInput")
  727. onTarget = allAssociationOrigins(core, target_id, "transformOutput")
  728. result = set_overlap(onSource, onTarget)
  729. String r
  730. r = "Success: "
  731. while (read_nr_out(result) > 0):
  732. transformation = set_pop(result)
  733. if (allow_read(user_id, transformation)):
  734. r = r + string_join(read_attribute(core, transformation, "name"), "\n")
  735. return r!
  736. else:
  737. return "Model not found: " + target_name!
  738. else:
  739. return "Model not found: " + source_name!
  740. String function cmd_model_render(user_id : String, model_name : String, mapper_name : String):
  741. String model_ID
  742. String mapper_ID
  743. String rendered_name
  744. String tracability_name
  745. String type_ID
  746. Element inputs
  747. Element outputs
  748. Element rendered_model
  749. Element tracability_model
  750. Element result
  751. Element out_links
  752. Element in_links
  753. model_ID = get_model_id(model_name)
  754. if (model_ID != ""):
  755. mapper_ID = get_model_id(mapper_name)
  756. if (allow_read(user_id, model_ID)):
  757. if (mapper_ID != ""):
  758. if (allow_read(user_id, mapper_ID)):
  759. // Everything is fine; start the actual operation
  760. // Find metamodel to render to
  761. rendered_name = (("__RENDERED_" + model_name) + "__") + mapper_name
  762. tracability_name = (("__TRACABILITY_" + model_name) + "__") + mapper_name
  763. // Take the abstract syntax model and the previously rendered model
  764. inputs = create_node()
  765. dict_add(inputs, "abstract", model_name)
  766. dict_add(inputs, "rendered", rendered_name)
  767. // Generate a new rendered model only (no write to original model!)
  768. outputs = create_node()
  769. out_links = allAssociationDestinations(core, mapper_ID, "transformOutput")
  770. in_links = allAssociationDestinations(core, mapper_ID, "transformInput")
  771. while(read_nr_out(out_links) > 0):
  772. type_ID = set_pop(out_links)
  773. if (bool_not(set_in(in_links, type_ID))):
  774. // It is not the AS model, but another one (the MM_rendered)
  775. break!
  776. // Add the model itself as output as well, as otherwise tracability links get messed up!
  777. dict_add(outputs, "abstract", read_attribute(core, set_pop(allAssociationDestinations(core, get_model_id(model_name), "instanceOf")), "name"))
  778. dict_add(outputs, "rendered", read_attribute(core, type_ID, "name"))
  779. // Rendered model doesn't exist yet, so create first
  780. if (get_model_id(rendered_name) == ""):
  781. // Rendered model doesn't exist yet, so create first!
  782. rendered_model = instantiate_model(get_full_model(type_ID))
  783. model_create(rendered_model, rendered_name, user_id, type_ID, "Model")
  784. // Tracability model won't exist either
  785. tracability_model = instantiate_model(get_full_model(get_model_id("Tracability")))
  786. model_create(tracability_model, tracability_name, user_id, get_model_id("Tracability"), "Model")
  787. else:
  788. // Read out tracability model
  789. tracability_model = get_full_model(get_model_id(tracability_name))
  790. // Do the operation itself!
  791. result = execute_operation(mapper_ID, inputs, outputs, tracability_model)
  792. // Overwrite the previous rendered model
  793. model_overwrite(result[read_attribute(core, type_ID, "name")], get_model_id(rendered_name))
  794. // Tracability updated in-place
  795. model_overwrite(tracability_model, get_model_id(tracability_name))
  796. tracability_model = get_full_model(get_model_id(tracability_name))
  797. // Also output the resulting model
  798. return "Success: " + JSON_print(get_full_model(get_model_id(rendered_name)))!
  799. else:
  800. return "Permission denied to model: " + mapper_name!
  801. else:
  802. return "Model not found: " + mapper_name!
  803. else:
  804. return "Permission denied to model: " + model_name!
  805. else:
  806. return "Model not found: " + model_name!
  807. String function cmd_transformation_execute(user_id : String, transformation_name : String, source_models : Element, target_models : Element):
  808. // Execute a transformation, whatever type it is
  809. // First we detect the type, so we know how to prepare for invocation
  810. String transformation_id
  811. String exact_type
  812. Element sources
  813. Element targets
  814. String source
  815. String target
  816. Element inputs
  817. Element outputs
  818. Element output_map
  819. Element trace_links
  820. String target_model_name
  821. String source_model_name
  822. String source_model_ID
  823. Element result
  824. Element keys
  825. String key
  826. String assoc_name
  827. transformation_id = get_model_id(transformation_name)
  828. if (transformation_id != ""):
  829. if (allow_read(user_id, transformation_id)):
  830. if (is_nominal_instance(core, transformation_id, "Transformation")):
  831. // Read out source and target links
  832. inputs = create_node()
  833. sources = allOutgoingAssociationInstances(core, transformation_id, "transformInput")
  834. while (read_nr_out(sources) > 0):
  835. source = set_pop(sources)
  836. assoc_name = read_attribute(core, source, "name")
  837. if (dict_in(source_models, assoc_name)):
  838. source_model_name = source_models[assoc_name]
  839. else:
  840. return "Source model not bound: " + assoc_name!
  841. source_model_ID = get_model_id(source_model_name)
  842. if (source_model_ID != ""):
  843. if (allow_read(user_id, source_model_ID)):
  844. // Check for conformance to the requested metamodel
  845. if (check_is_typed_by(source_model_ID, source)):
  846. if (check_conformance(source_model_ID)):
  847. dict_add(inputs, assoc_name, source_model_name)
  848. continue!
  849. else:
  850. return "Incorrectly typed model: " + source_model_name!
  851. else:
  852. return "Incorrectly typed model: " + source_model_name!
  853. else:
  854. return "Permission denied to model: " + source_model_name!
  855. else:
  856. return "Model not found: " + source_model_name!
  857. targets = allOutgoingAssociationInstances(core, transformation_id, "transformOutput")
  858. outputs = create_node()
  859. output_map = create_node()
  860. while (read_nr_out(targets) > 0):
  861. target = set_pop(targets)
  862. assoc_name = read_attribute(core, target, "name")
  863. if (dict_in(target_models, assoc_name)):
  864. target_model_name = target_models[assoc_name]
  865. else:
  866. return "Target model not bound: " + assoc_name!
  867. if (get_model_id(target_model_name) == ""):
  868. // Doesn't exist yet, so we can easily create
  869. dict_add(output_map, assoc_name, read_attribute(core, readAssociationDestination(core, target), "name"))
  870. dict_add(outputs, assoc_name, target_model_name)
  871. else:
  872. // Already exists, so we need to check for write access
  873. if (allow_write(user_id, get_model_id(target_model_name))):
  874. dict_add(output_map, assoc_name, read_attribute(core, readAssociationDestination(core, target), "name"))
  875. dict_add(outputs, assoc_name, target_model_name)
  876. else:
  877. return "Permission denied to model: " + target_model_name!
  878. if (read_type(core, transformation_id) == "ActionLanguage"):
  879. output("Success: ready for AL execution")
  880. elif (read_type(core, transformation_id) == "ManualOperation"):
  881. output("Success: ready for MANUAL execution")
  882. else:
  883. output("Success: ready for MT execution")
  884. log("Start execution: " + cast_e2s(transformation_id))
  885. result = execute_operation(transformation_id, inputs, output_map, read_root())
  886. // Now write out the models again
  887. if (element_eq(result, read_root())):
  888. // Something went wrong!
  889. return "Failure"!
  890. else:
  891. keys = dict_keys(result)
  892. while (read_nr_out(keys) > 0):
  893. key = set_pop(keys)
  894. if (get_model_id(outputs[key]) == ""):
  895. // New model
  896. model_create(result[key], outputs[key], user_id, get_model_id(key), "Model")
  897. else:
  898. model_overwrite(result[key], get_model_id(outputs[key]))
  899. return "Success"!
  900. else:
  901. return "Model is not executable: " + transformation_name!
  902. else:
  903. return "Permission denied to model: " + transformation_name!
  904. else:
  905. return "Model not found: " + transformation_name!
  906. String function cmd_verify(user_id : String, model_name : String):
  907. // Check whether a model conforms to its specification (with the selected type mapping)
  908. String model_id
  909. String result
  910. model_id = get_model_id(model_name)
  911. if (model_id != ""):
  912. if (allow_read(user_id, model_id)):
  913. result = conformance_scd(get_full_model(model_id))
  914. return "Success: " + result!
  915. else:
  916. return "Permission denied to model: " + model_name!
  917. else:
  918. return "Model not found: " + model_name!
  919. String function cmd_model_overwrite(user_id : String, model_name : String):
  920. // Overwrites an existing model without changing any metadata
  921. String model_id
  922. String type_id
  923. Element new_model
  924. model_id = get_model_id(model_name)
  925. if (model_id != ""):
  926. if (allow_write(user_id, model_id)):
  927. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  928. if (allow_read(user_id, type_id)):
  929. output("Waiting for model constructors...")
  930. new_model = construct_model_raw(get_full_model(set_pop(allAssociationDestinations(core, model_id, "instanceOf"))))
  931. model_overwrite(new_model, model_id)
  932. return "Success"!
  933. else:
  934. return string_join("Permission denied to model: ", read_attribute(core, type_id, "name"))!
  935. else:
  936. return "Permission denied to model: " + model_name!
  937. else:
  938. return "Model not found: " + model_name!
  939. String function cmd_model_modify(user_id : String, model_name : String):
  940. // Model modify operation, which uses the mini_modify.alc operations, though with extensions for access control
  941. String model_id
  942. String type_id
  943. model_id = get_model_id(model_name)
  944. if (model_id != ""):
  945. if (allow_read(user_id, model_id)):
  946. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  947. if (allow_read(user_id, type_id)):
  948. output("Success")
  949. modify(get_full_model(model_id), allow_write(user_id, model_id))
  950. return "Success"!
  951. else:
  952. return string_join("Permission denied to model: ", read_attribute(core, type_id, "name"))!
  953. else:
  954. return "Permission denied to model: " + model_name!
  955. else:
  956. return "Model not found: " + model_name!
  957. String function cmd_model_delete(user_id : String, model_name : String):
  958. String model_id
  959. model_id = get_model_id(model_name)
  960. if (model_id != ""):
  961. if (allow_write(user_id, model_id)):
  962. model_delete_element(core, model_id)
  963. return "Success"!
  964. else:
  965. return "Permission denied to model: " + model_name!
  966. else:
  967. return "Model not found: " + model_name!
  968. String function cmd_model_list():
  969. // List all models
  970. Element models
  971. String result
  972. String m
  973. result = "Success: "
  974. models = allInstances(core, "Model")
  975. while (read_nr_out(models) > 0):
  976. m = set_pop(models)
  977. result = (result + string_join((string_join(" ", read_attribute(core, m, "name")) + " : "), read_attribute(core, set_pop(allAssociationDestinations(core, m, "instanceOf")), "name"))) + "\n"
  978. return result!
  979. String function cmd_model_list_full():
  980. // List all models with full info
  981. Element models
  982. String m
  983. String permissions
  984. String owner
  985. String group
  986. String name
  987. String type
  988. String result
  989. result = "Success: "
  990. models = allInstances(core, "Model")
  991. while (read_nr_out(models) > 0):
  992. m = set_pop(models)
  993. permissions = read_attribute(core, m, "permissions")
  994. owner = read_attribute(core, set_pop(allAssociationDestinations(core, m, "owner")), "name")
  995. group = read_attribute(core, set_pop(allAssociationDestinations(core, m, "group")), "name")
  996. name = read_attribute(core, m, "name")
  997. type = read_attribute(core, set_pop(allAssociationDestinations(core, m, "instanceOf")), "name")
  998. result = (result + (((((((((" " + permissions) + " ") + owner) + " ") + group) + " ") + name) + " : ") + type)) + "\n"
  999. return result!
  1000. String function cmd_transformation_add_MANUAL(user_id : String, source_models : Element, target_models : Element, operation_name : String):
  1001. return transformation_add(user_id, source_models, target_models, operation_name, "manual")!
  1002. String function cmd_transformation_add_AL(user_id : String, source_models : Element, target_models : Element, operation_name : String):
  1003. return transformation_add(user_id, source_models, target_models, operation_name, "actionlanguage")!
  1004. String function transformation_add(user_id : String, source_models : Element, target_models : Element, operation_name : String, operation_type : String):
  1005. // Add a manual transformation model
  1006. String model_id
  1007. Element models
  1008. Element source
  1009. Element target
  1010. String name
  1011. Element all_formalisms
  1012. Element merged_formalism
  1013. String merged_formalism_id
  1014. String source_formalism_id
  1015. String tracability_link
  1016. String type_id
  1017. String old_type_id
  1018. Element keys
  1019. String key
  1020. source = create_node()
  1021. target = create_node()
  1022. all_formalisms = create_node()
  1023. type_id = ""
  1024. old_type_id = ""
  1025. if (bool_and(read_nr_out(source_models) == 0, read_nr_out(target_models) == 0)):
  1026. return "Cannot create transformation without input or output"!
  1027. keys = dict_keys(source_models)
  1028. while (read_nr_out(keys) > 0):
  1029. key = set_pop(keys)
  1030. name = source_models[key]
  1031. model_id = get_model_id(name)
  1032. if (model_id != ""):
  1033. if (allow_read(user_id, model_id)):
  1034. if (bool_not(dict_in(source, key))):
  1035. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1036. if (bool_or(old_type_id == "", type_id == old_type_id)):
  1037. old_type_id = type_id
  1038. dict_add(source, key, model_id)
  1039. set_add(all_formalisms, create_tuple(name, get_full_model(model_id)))
  1040. elif (old_type_id != type_id):
  1041. // Already have a previous type_id and now another: CLASH
  1042. return "Cannot add model as type not compatible with previous models: " + name!
  1043. else:
  1044. return "Model already selected as source: " + name!
  1045. else:
  1046. return "Permission denied to model: " + name!
  1047. else:
  1048. return "Model not found: " + name!
  1049. keys = dict_keys(target_models)
  1050. while (read_nr_out(keys) > 0):
  1051. key = set_pop(keys)
  1052. name = target_models[key]
  1053. model_id = get_model_id(name)
  1054. if (model_id != ""):
  1055. if (allow_read(user_id, model_id)):
  1056. if (bool_not(dict_in(target, key))):
  1057. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1058. if (bool_or(old_type_id == "", type_id == old_type_id)):
  1059. old_type_id = type_id
  1060. dict_add(target, key, model_id)
  1061. set_add(all_formalisms, create_tuple(name, get_full_model(model_id)))
  1062. elif (old_type_id != type_id):
  1063. // Already have a previous type_id and now another: CLASH
  1064. return "Cannot add mdoel as type not compatible with previous models: " + name!
  1065. else:
  1066. return "Model already selected as target: " + name!
  1067. else:
  1068. return "Permission denied to model: " + name!
  1069. else:
  1070. return "Model not found: " + name!
  1071. if (get_model_id(operation_name) == ""):
  1072. if (operation_type == "manual"):
  1073. // Finished with all information, now create the model itself!
  1074. model_create(instantiate_model(get_full_model(get_model_id("ManualOperation"))), operation_name, user_id, get_model_id("ManualOperation"), "ManualOperation")
  1075. model_id = get_model_id(operation_name)
  1076. elif (operation_type == "actionlanguage"):
  1077. // Finished with all information, now create the model itself!
  1078. output("Waiting for code constructors...")
  1079. add_code_model(get_full_model(get_model_id("ActionLanguage")), "AL/" + operation_name, construct_function())
  1080. model_create(import_node("AL/" + operation_name), operation_name, user_id, get_model_id("ActionLanguage"), "ActionLanguage")
  1081. model_id = get_model_id(operation_name)
  1082. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1083. // New location is available, so write
  1084. merged_formalism = model_fuse(set_copy(all_formalisms))
  1085. model_create(merged_formalism, "__merged_" + operation_name, user_id, type_id, "Model")
  1086. merged_formalism_id = get_model_id("__merged_" + operation_name)
  1087. // Add tracability links at this level
  1088. while (read_nr_out(all_formalisms) > 0):
  1089. source_formalism_id = get_model_id(list_read(set_pop(all_formalisms), 0))
  1090. tracability_link = instantiate_link(core, "tracability", "", merged_formalism_id, source_formalism_id)
  1091. instantiate_attribute(core, tracability_link, "type", "merged")
  1092. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1093. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1094. // Extend metadata with info on source and target
  1095. String link
  1096. String dst
  1097. keys = dict_keys(source)
  1098. while (read_nr_out(keys) > 0):
  1099. key = set_pop(keys)
  1100. link = instantiate_link(core, "transformInput", "", model_id, source[key])
  1101. instantiate_attribute(core, link, "name", key)
  1102. keys = dict_keys(target)
  1103. while (read_nr_out(keys) > 0):
  1104. key = set_pop(keys)
  1105. link = instantiate_link(core, "transformOutput", "", model_id, target[key])
  1106. instantiate_attribute(core, link, "name", key)
  1107. return "Success"!
  1108. else:
  1109. return "Model exists: " + operation_name!
  1110. String function cmd_transformation_add_MT(user_id : String, source_models : Element, target_models : Element, operation_name : String):
  1111. // Add a model transformation model
  1112. // Just a usual model instantiation, but need to add the source and target links based on user info
  1113. String ramified_metamodel_id
  1114. Element ramified_metamodel
  1115. String model_id
  1116. Element models
  1117. Element links
  1118. String link_id
  1119. Element supported
  1120. Element source
  1121. Element target
  1122. String name
  1123. String new_model_id
  1124. String merged_link_id
  1125. Element links_merged
  1126. String merged_formalism
  1127. Element keys
  1128. String key
  1129. String mm
  1130. Element to_ramify
  1131. String source_formalism_id
  1132. String merged_formalism_id
  1133. String tracability_link
  1134. source = create_node()
  1135. target = create_node()
  1136. to_ramify = create_node()
  1137. keys = dict_keys(source_models)
  1138. while (read_nr_out(keys) > 0):
  1139. key = set_pop(keys)
  1140. name = source_models[key]
  1141. model_id = get_model_id(name)
  1142. if (model_id != ""):
  1143. if (allow_read(user_id, name)):
  1144. // Check whether or not it is SimpleClassDiagrams
  1145. mm = read_attribute(core, readAssociationDestination(core, get_instanceOf_link(model_id)), "name")
  1146. if (mm == "SimpleClassDiagrams"):
  1147. if (bool_not(dict_in(source, key))):
  1148. dict_add(source, key, model_id)
  1149. set_add(to_ramify, create_tuple(key, get_full_model(model_id)))
  1150. else:
  1151. return "Name was already assigned a metamodel: " + key!
  1152. else:
  1153. return "Model not supported for RAMification: " + name!
  1154. else:
  1155. return "Permission denied: " + name!
  1156. else:
  1157. return "Model not found: " + name!
  1158. keys = dict_keys(target_models)
  1159. while (read_nr_out(keys) > 0):
  1160. key = set_pop(keys)
  1161. name = target_models[key]
  1162. model_id = get_model_id(name)
  1163. if (model_id != ""):
  1164. if (allow_read(user_id, name)):
  1165. mm = read_attribute(core, readAssociationDestination(core, get_instanceOf_link(model_id)), "name")
  1166. if (mm == "SimpleClassDiagrams"):
  1167. if (bool_not(dict_in(target, key))):
  1168. if (bool_not(dict_in(to_ramify, key))):
  1169. dict_add(target, key, model_id)
  1170. set_add(to_ramify, create_tuple(key, get_full_model(model_id)))
  1171. else:
  1172. return "Name in output cannot have different type than input: " + key!
  1173. else:
  1174. return "Name was already assigned a metamodel: " + key!
  1175. else:
  1176. return "Model not supported for RAMification: " + name!
  1177. else:
  1178. return "Permission denied: " + name!
  1179. else:
  1180. return "Model not found: " + name!
  1181. merged_formalism = model_fuse(to_ramify)
  1182. ramified_metamodel = ramify(merged_formalism)
  1183. model_create(ramified_metamodel, "__RAM_" + operation_name, user_id, get_model_id("SimpleClassDiagrams"), "Model")
  1184. ramified_metamodel_id = get_model_id("__RAM_" + operation_name)
  1185. // Now use the RAMified model to create the instance
  1186. if (get_model_id(operation_name) == ""):
  1187. String new_model
  1188. // Finished with all information, now create the model itself!
  1189. output("Waiting for model constructors...")
  1190. new_model = construct_model_raw(get_full_model(ramified_metamodel_id))
  1191. model_create(new_model, operation_name, user_id, ramified_metamodel_id, "ModelTransformation")
  1192. model_id = get_model_id(operation_name)
  1193. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1194. // New location is available, so write
  1195. model_create(merged_formalism, "__merged_" + operation_name, user_id, get_model_id("SimpleClassDiagrams"), "Model")
  1196. merged_formalism_id = get_model_id("__merged_" + operation_name)
  1197. // Add tracability links at this level
  1198. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1199. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1200. // Extend metadata with info on source and target
  1201. String link
  1202. String dst
  1203. keys = dict_keys(source)
  1204. while (read_nr_out(keys) > 0):
  1205. key = set_pop(keys)
  1206. dst = source[key]
  1207. link = instantiate_link(core, "transformInput", "", model_id, dst)
  1208. instantiate_attribute(core, link, "name", key)
  1209. keys = dict_keys(target)
  1210. while (read_nr_out(keys) > 0):
  1211. key = set_pop(keys)
  1212. dst = target[key]
  1213. link = instantiate_link(core, "transformOutput", "", model_id, dst)
  1214. instantiate_attribute(core, link, "name", key)
  1215. return "Success"!
  1216. else:
  1217. return "Model exists: " + operation_name!
  1218. String function cmd_transformation_list():
  1219. // List all models
  1220. Element models
  1221. String m
  1222. String type
  1223. String result
  1224. result = "Success: "
  1225. models = allInstances(core, "Transformation")
  1226. while (read_nr_out(models) > 0):
  1227. m = set_pop(models)
  1228. result = result + ((string_join(("[" + read_type(core, m)) + "]", string_join((string_join(" ", read_attribute(core, m, "name")) + " : "), read_attribute(core, set_pop(allAssociationDestinations(core, m, "instanceOf")), "name")))) + "\n")
  1229. return result!
  1230. String function cmd_transformation_list_full():
  1231. // List all models with full info
  1232. Element models
  1233. String m
  1234. String permissions
  1235. String owner
  1236. String group
  1237. String name
  1238. String type
  1239. String result
  1240. result = ""
  1241. models = allInstances(core, "Transformation")
  1242. while (read_nr_out(models) > 0):
  1243. m = set_pop(models)
  1244. permissions = read_attribute(core, m, "permissions")
  1245. owner = read_attribute(core, set_pop(allAssociationDestinations(core, m, "owner")), "name")
  1246. group = read_attribute(core, set_pop(allAssociationDestinations(core, m, "group")), "name")
  1247. name = read_attribute(core, m, "name")
  1248. type = read_attribute(core, set_pop(allAssociationDestinations(core, m, "instanceOf")), "name")
  1249. result = result + ((((((((((" " + permissions) + " ") + owner) + " ") + group) + " ") + ((("[" + read_type(core, m)) + "] ") + name)) + " : ") + type) + "\n")
  1250. return result!
  1251. String function cmd_permission_modify(user_id : String, model_name : String, permissions : String):
  1252. Integer permission
  1253. String model_id
  1254. model_id = get_model_id(model_name)
  1255. if (model_id != ""):
  1256. if (get_relation_to_model(user_id, model_id) == 0):
  1257. Boolean fail
  1258. Integer i
  1259. i = 0
  1260. if (string_len(permissions) != 3):
  1261. fail = True
  1262. while (i < 3):
  1263. permission = cast_s2i(string_get(permissions, i))
  1264. if (bool_or(permission < 0, permission > 2)):
  1265. fail = True
  1266. break!
  1267. i = i + 1
  1268. if (bool_not(fail)):
  1269. unset_attribute(core, model_id, "permissions")
  1270. instantiate_attribute(core, model_id, "permissions", permissions)
  1271. return "Success"!
  1272. else:
  1273. return "Permission has incorrect format: must be a string of three characters, with each character being a digit between 0 and 2"!
  1274. else:
  1275. return "Permission denied to model: " + model_name!
  1276. else:
  1277. return "Model not found: " + model_name!
  1278. String function cmd_permission_owner(user_id : String, model_name : String, new_user_name : String):
  1279. String model_id
  1280. String new_user_id
  1281. model_id = get_model_id(model_name)
  1282. if (model_id != ""):
  1283. if (bool_or(get_relation_to_model(user_id, model_id) == 0, is_admin(user_id))):
  1284. new_user_id = get_user_id(new_user_name)
  1285. if (new_user_id != ""):
  1286. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "owner")))
  1287. instantiate_link(core, "owner", "", model_id, new_user_id)
  1288. return "Success"!
  1289. else:
  1290. return "No such user: " + new_user_name!
  1291. else:
  1292. return "Permission denied to model: " + model_name!
  1293. else:
  1294. return "Model not found: " + model_name!
  1295. String function cmd_permission_group(user_id : String, model_name : String, new_group_name : String):
  1296. String model_id
  1297. String group_id
  1298. model_id = get_model_id(model_name)
  1299. if (model_id != ""):
  1300. if (bool_or(get_relation_to_model(user_id, model_id) == 0, is_admin(user_id))):
  1301. group_id = get_group_id(new_group_name)
  1302. if (group_id != ""):
  1303. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "group")))
  1304. instantiate_link(core, "group", "", model_id, group_id)
  1305. return "Success"!
  1306. else:
  1307. return "No such group: " + new_group_name!
  1308. else:
  1309. return "Permission denied to model: " + model_name!
  1310. else:
  1311. return "Model not found: " + model_name!
  1312. String function cmd_group_create(user_id : String, group_name : String):
  1313. // Create a new group and become its owner
  1314. String group_id
  1315. String name
  1316. group_id = get_group_id(group_name)
  1317. if (group_id == ""):
  1318. group_id = instantiate_node(core, "Group", "")
  1319. instantiate_attribute(core, group_id, "name", group_name)
  1320. instantiate_link(core, "belongsTo", "", user_id, group_id)
  1321. instantiate_link(core, "owner", "", group_id, user_id)
  1322. return "Success"!
  1323. else:
  1324. return "Group exists: " + group_name!
  1325. String function cmd_group_delete(user_id : String, group_name : String):
  1326. // Delete an existing group
  1327. String group_id
  1328. group_id = get_group_id(group_name)
  1329. if (group_id != ""):
  1330. if (allow_group_modify(user_id, group_id)):
  1331. model_delete_element(core, group_id)
  1332. return "Success"!
  1333. else:
  1334. return "Permission denied to group: " + group_name!
  1335. else:
  1336. return "Group not found: " + group_name!
  1337. String function cmd_group_owner_add(user_id : String, group_name : String, other_user_name : String):
  1338. // Add an owner to your group
  1339. String group_id
  1340. String other_user_id
  1341. group_id = get_group_id(group_name)
  1342. if (group_id != ""):
  1343. if (allow_group_modify(user_id, group_id)):
  1344. other_user_id = get_user_id(other_user_name)
  1345. if (other_user_id != ""):
  1346. Element overlap
  1347. overlap = set_overlap(allIncomingAssociationInstances(core, other_user_id, "owner"), allOutgoingAssociationInstances(core, group_id, "owner"))
  1348. if (read_nr_out(overlap) == 0):
  1349. instantiate_link(core, "owner", "", group_id, other_user_id)
  1350. overlap = set_overlap(allOutgoingAssociationInstances(core, other_user_id, "belongsTo"), allIncomingAssociationInstances(core, group_id, "belongsTo"))
  1351. if (read_nr_out(overlap) == 0):
  1352. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1353. return "Success"!
  1354. else:
  1355. return "User is already the owner!"!
  1356. else:
  1357. return "User not found: " + other_user_name!
  1358. else:
  1359. return "Permission denied to group: " + group_name!
  1360. else:
  1361. return "Group not found: " + group_name!
  1362. String function cmd_group_owner_delete(user_id : String, group_name : String, other_user_name : String):
  1363. // Remove an owner from your group
  1364. String group_id
  1365. String other_user_id
  1366. group_id = get_group_id(group_name)
  1367. if (group_id != ""):
  1368. if (allow_group_modify(user_id, group_id)):
  1369. other_user_id = get_user_id(other_user_name)
  1370. if (other_user_id != ""):
  1371. Element overlap
  1372. overlap = set_overlap(allOutgoingAssociationInstances(core, other_user_id, "belongsTo"), allIncomingAssociationInstances(core, group_id, "belongsTo"))
  1373. if (read_nr_out(overlap) > 0):
  1374. overlap = set_overlap(allIncomingAssociationInstances(core, other_user_id, "owner"), allOutgoingAssociationInstances(core, group_id, "owner"))
  1375. if (read_nr_out(overlap) > 0):
  1376. model_delete_element(core, set_pop(overlap))
  1377. return "Success"!
  1378. else:
  1379. return "User is not an owner of the group!"!
  1380. else:
  1381. return "User is not a member of the group!"!
  1382. else:
  1383. return "User not found: " + other_user_name!
  1384. else:
  1385. return "Permission denied to group: " + group_name!
  1386. else:
  1387. return "Group not found: " + group_name!
  1388. String function cmd_group_join(user_id : String, group_name : String, other_user_name : String):
  1389. // Add someone to your group
  1390. String group_id
  1391. String other_user_id
  1392. group_id = get_group_id(group_name)
  1393. if (group_id != ""):
  1394. if (allow_group_modify(user_id, group_id)):
  1395. other_user_id = get_user_id(other_user_name)
  1396. if (other_user_id != ""):
  1397. Element overlap
  1398. overlap = set_overlap(allOutgoingAssociationInstances(core, other_user_id, "belongsTo"), allIncomingAssociationInstances(core, group_id, "belongsTo"))
  1399. if (read_nr_out(overlap) == 0):
  1400. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1401. return "Success"!
  1402. else:
  1403. return "User is already a member of the group!"!
  1404. else:
  1405. return "User not found: " + other_user_name!
  1406. else:
  1407. return "Permission denied to group: " + group_name!
  1408. else:
  1409. return "Group not found: " + group_name!
  1410. String function cmd_group_kick(user_id : String, group_name : String, other_user_name : String):
  1411. // Remove someone from your group
  1412. String group_id
  1413. String other_user_id
  1414. group_id = get_group_id(group_name)
  1415. if (group_id != ""):
  1416. if (allow_group_modify(user_id, group_id)):
  1417. other_user_id = get_user_id(other_user_name)
  1418. if (other_user_id != ""):
  1419. Element overlap
  1420. overlap = set_overlap(allOutgoingAssociationInstances(core, other_user_id, "belongsTo"), allIncomingAssociationInstances(core, group_id, "belongsTo"))
  1421. if (read_nr_out(overlap) > 0):
  1422. model_delete_element(core, set_pop(overlap))
  1423. // Check if user was an owner as well
  1424. overlap = set_overlap(allIncomingAssociationInstances(core, other_user_id, "owner"), allOutgoingAssociationInstances(core, group_id, "owner"))
  1425. if (read_nr_out(overlap) > 0):
  1426. model_delete_element(core, set_pop(overlap))
  1427. return "Success"!
  1428. else:
  1429. return "User is not a member of the group!"!
  1430. else:
  1431. return "User not found: " + other_user_name!
  1432. else:
  1433. return "Permission denied to group: " + group_name!
  1434. else:
  1435. return "Group not found: " + group_name!
  1436. String function cmd_group_list(user_id : String):
  1437. // List all groups you are a member of (and whether you are admin or not!)
  1438. Element groups
  1439. String group_id
  1440. String admin
  1441. String result
  1442. result = ""
  1443. groups = allAssociationDestinations(core, user_id, "belongsTo")
  1444. while (read_nr_out(groups) > 0):
  1445. group_id = set_pop(groups)
  1446. if (set_in(allOutgoingAssociationInstances(core, group_id, "owner"), user_id)):
  1447. admin = " A "
  1448. else:
  1449. admin = " "
  1450. result = result + (string_join(admin, read_attribute(core, group_id, "name")) + "\n")
  1451. return result!
  1452. String function cmd_admin_promote(user_id : String, other_user_name : String):
  1453. // Promote a user to admin status
  1454. if (is_admin(user_id)):
  1455. String other_user_id
  1456. other_user_id = get_user_id(other_user_name)
  1457. if (other_user_id != ""):
  1458. unset_attribute(core, other_user_id, "admin")
  1459. instantiate_attribute(core, other_user_id, "admin", True)
  1460. return "Success"!
  1461. else:
  1462. return "User not found: " + other_user_name!
  1463. else:
  1464. return "Permission denied to administrate: " + other_user_name!
  1465. String function cmd_admin_demote(user_id : String, other_user_name : String):
  1466. // Demote a user to normal status
  1467. if (is_admin(user_id)):
  1468. String other_user_id
  1469. other_user_id = get_user_id(other_user_name)
  1470. if (other_user_id != ""):
  1471. unset_attribute(core, other_user_id, "admin")
  1472. instantiate_attribute(core, other_user_id, "admin", False)
  1473. return "Success"!
  1474. else:
  1475. return "User not found: " + other_user_name!
  1476. else:
  1477. return "Permission denied to administrate: " + other_user_name!
  1478. Void function user_function_skip_init(user_id : String):
  1479. String cmd
  1480. output("Welcome to the Model Management Interface v2.0!")
  1481. output("Use the 'help' command for a list of possible commands")
  1482. while (True):
  1483. cmd = input()
  1484. if (cmd == "help"):
  1485. output(cmd_help(user_id))
  1486. elif (cmd == "model_add"):
  1487. output(cmd_model_add(user_id, single_input("Model type?"), single_input("Model name?")))
  1488. elif (cmd == "process_execute"):
  1489. output(cmd_process_execute(user_id, single_input("Process to execute?"), single_input("Model prefix to use?")))
  1490. elif (cmd == "transformation_between"):
  1491. output(cmd_transformation_between(user_id, single_input("Source type?"), single_input("Target type?")))
  1492. elif (cmd == "model_render"):
  1493. output(cmd_model_render(user_id, single_input("Model name?"), single_input("Mapper name?")))
  1494. elif (cmd == "transformation_execute"):
  1495. output(cmd_transformation_execute(user_id, single_input("Transformation name?"), dict_input("Source models?"), dict_input("Target models?")))
  1496. elif (cmd == "verify"):
  1497. output(cmd_verify(user_id, single_input("Model name?")))
  1498. elif (cmd == "model_overwrite"):
  1499. output(cmd_model_overwrite(user_id, single_input("Model name?")))
  1500. elif (cmd == "model_modify"):
  1501. output(cmd_model_modify(user_id, single_input("Model name?")))
  1502. elif (cmd == "model_delete"):
  1503. output(cmd_model_delete(user_id, single_input("Model name?")))
  1504. elif (cmd == "model_list"):
  1505. output(cmd_model_list())
  1506. elif (cmd == "model_list_full"):
  1507. output(cmd_model_list_full())
  1508. elif (cmd == "transformation_add_MANUAL"):
  1509. output(cmd_transformation_add_MANUAL(user_id, dict_input("Source model names?"), dict_input("Target model names?"), single_input("Operation name?")))
  1510. elif (cmd == "transformation_add_AL"):
  1511. output(cmd_transformation_add_AL(user_id, dict_input("Source model names?"), dict_input("Target model names?"), single_input("Operation name?")))
  1512. elif (cmd == "transformation_add_MT"):
  1513. output(cmd_transformation_add_MT(user_id, dict_input("Source model names?"), dict_input("Target models?"), single_input("Operation name?")))
  1514. elif (cmd == "transformation_list"):
  1515. output(cmd_transformation_list())
  1516. elif (cmd == "transformation_list_full"):
  1517. output(cmd_transformation_list_full())
  1518. elif (cmd == "permission_modify"):
  1519. output(cmd_permission_modify(user_id, single_input("Model name?"), single_input("Permissions?")))
  1520. elif (cmd == "permission_owner"):
  1521. output(cmd_permission_owner(user_id, single_input("Model name?"), single_input("New owning user?")))
  1522. elif (cmd == "permission_group"):
  1523. output(cmd_permission_group(user_id, single_input("Model name?"), single_input("New owning group?")))
  1524. elif (cmd == "group_create"):
  1525. output(cmd_group_create(user_id, single_input("New group name?")))
  1526. elif (cmd == "group_delete"):
  1527. output(cmd_group_delete(user_id, single_input("Group name?")))
  1528. elif (cmd == "group_owner_add"):
  1529. output(cmd_group_owner_add(user_id, single_input("Group name?"), single_input("User name?")))
  1530. elif (cmd == "group_owner_delete"):
  1531. output(cmd_group_owner_delete(user_id, single_input("Group name?"), single_input("User name?")))
  1532. elif (cmd == "group_join"):
  1533. output(cmd_group_join(user_id, single_input("Group name?"), single_input("User name?")))
  1534. elif (cmd == "group_kick"):
  1535. output(cmd_group_kick(user_id, single_input("Group name?"), single_input("User name?")))
  1536. elif (cmd == "group_list"):
  1537. output(cmd_group_list(user_id))
  1538. elif (cmd == "admin_promote"):
  1539. output(cmd_admin_promote(user_id, single_input("User name?")))
  1540. elif (cmd == "admin_demote"):
  1541. output(cmd_admin_demote(user_id, single_input("User name?")))
  1542. elif (cmd == "verbose"):
  1543. set_verbose(True)
  1544. elif (cmd == "quiet"):
  1545. set_verbose(False)
  1546. elif (cmd == "self-destruct"):
  1547. // Delete user from Core Formalism
  1548. model_delete_element(core, user_id)
  1549. return !
  1550. elif (cmd == "exit"):
  1551. // Exit by actually removing the user and decoupling it from all of its models
  1552. // Restarting with the same user name will NOT grant you access to anything of the previous user with that same name
  1553. // as the current user will have been deleted
  1554. return !
  1555. else:
  1556. output("Unknown command: " + cmd)
  1557. // We never get here!
  1558. return !