core_algorithm.alc 67 KB

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