core_algorithm.alc 67 KB

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