core_algorithm.alc 66 KB

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