core_algorithm.alc 66 KB

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