core_algorithm.alc 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  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. include "utils.alh"
  13. include "conformance_finding.alh"
  14. include "typing.alh"
  15. include "compiler.alh"
  16. include "random.alh"
  17. include "io.alh"
  18. String core_model_location = "models/core"
  19. Element core = ?
  20. String current_user_id
  21. Element caches
  22. Element pm_tasks = ?
  23. String function get_foldername(name : String):
  24. Element result
  25. result = string_split(name, "/")
  26. list_pop_final(result)
  27. if (list_len(result) == 0):
  28. return ""!
  29. // 'result' now contains a list of entries which we have to join with the seperator
  30. String str
  31. str = list_pop_final(result)
  32. while (list_len(result) > 0):
  33. str = cast_string(list_pop_final(result)) + "/" + str
  34. return str!
  35. String function get_filename(name : String):
  36. return list_pop_final(string_split(name, "/"))!
  37. String function full_name(model_id : String):
  38. if (dict_in(core["model"], model_id)):
  39. return read_attribute(core, model_id, "name")!
  40. else:
  41. return read_root()!
  42. Void function initialize_core():
  43. // TODO make this more flexible by putting it in the bootstrap in a similar way as other models
  44. //add_code_model(import_node("models/ActionLanguage"), "models/Conformance_MV", wrap_conformance)
  45. return !
  46. Boolean function is_typed_by(model_id : String, metamodel_id : String):
  47. return (set_len(get_instanceOf_links(model_id, metamodel_id)) > 0)!
  48. Element function get_instanceOf_links(model_id : String, metamodel_id : String):
  49. Element result
  50. Element options
  51. String elem
  52. result = set_create()
  53. options = allOutgoingAssociationInstances(core, model_id, "instanceOf")
  54. while (set_len(options) > 0):
  55. elem = set_pop(options)
  56. if (value_eq(readAssociationDestination(core, elem), metamodel_id)):
  57. set_add(result, elem)
  58. return result!
  59. String function get_instanceOf_link(model_id : String, metamodel_id : String):
  60. Element all_links
  61. String choice
  62. all_links = get_instanceOf_links(model_id, metamodel_id)
  63. if (set_len(all_links) > 1):
  64. log("WARNING: multiple instanceOf relations were detected for this model; picking one at random!")
  65. elif (set_len(all_links) == 0):
  66. log("No types found!")
  67. log("Source model: " + cast_value(read_attribute(core, model_id, "name")))
  68. log("Target meta-model: " + cast_value(read_attribute(core, metamodel_id, "name")))
  69. return read_root()!
  70. choice = set_pop(all_links)
  71. return choice!
  72. Element function get_full_model(model_id : String, metamodel_id : String):
  73. // TODO we are restricted to using formalisms/SimpleClassDiagrams as M3 level, through this code!
  74. Element m
  75. Element all_links
  76. String choice
  77. choice = get_instanceOf_link(model_id, metamodel_id)
  78. m = dict_create()
  79. dict_add(m, "model", import_node(read_attribute(core, model_id, "location")))
  80. // TODO for now this is restricted to the fixed semantics
  81. // dict_add(m, "semantics", set_pop(allAssociationDestinations(core, choice, "semantics")))
  82. dict_add(m, "semantics", get_entry_id("models/conformance_mv"))
  83. if (metamodel_id == model_id):
  84. // Found the meta-circular level, so we can stop!
  85. dict_add(m, "metamodel", m)
  86. else:
  87. Element mm
  88. mm = get_full_model(metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  89. if (element_eq(mm, read_root())):
  90. return read_root()!
  91. else:
  92. dict_add(m, "metamodel", mm)
  93. if (element_neq(choice, read_root())):
  94. Element types
  95. types = allAssociationDestinations(core, choice, "typing")
  96. if (set_len(types) == 1):
  97. // Add the preferred original type mapping
  98. set_type_mapping(m, import_node(read_attribute(core, set_pop(types), "location")))
  99. else:
  100. // Start from scratch
  101. new_type_mapping(m)
  102. else:
  103. // Start from scratch
  104. new_type_mapping(m)
  105. if (find_type_mapping(m)):
  106. // TODO store the found type model somewhere
  107. return m!
  108. else:
  109. log("No type mapping could be deduced!")
  110. log("Error for " + cast_value(read_attribute(core, model_id, "name")))
  111. log(" and type " + cast_value(read_attribute(core, metamodel_id, "name")))
  112. return read_root()!
  113. Integer function get_relation_to_model(user_id : String, model_id : String):
  114. if (set_in(allAssociationDestinations(core, model_id, "owner"), user_id)):
  115. // We are the owner
  116. return 0!
  117. else:
  118. String group_id
  119. group_id = set_pop(allAssociationDestinations(core, model_id, "group"))
  120. if (set_in(allAssociationDestinations(core, user_id, "belongsTo"), group_id)):
  121. // We are in the owning group
  122. return 1!
  123. else:
  124. // We are not related whatsoever
  125. return 2!
  126. Boolean function is_admin(user_id : String):
  127. if (read_attribute(core, user_id, "admin")):
  128. return True!
  129. else:
  130. return False!
  131. Boolean function allow_execute(user_id : String, model_id : String):
  132. return allow_read(user_id, model_id)!
  133. Boolean function allow_read(user_id : String, model_id : String):
  134. if (is_admin(user_id)):
  135. // Is admin, so always allow
  136. return True!
  137. else:
  138. // Check permissions
  139. String permission
  140. permission = string_get(read_attribute(core, model_id, "permissions"), get_relation_to_model(user_id, model_id))
  141. if (bool_or(permission == "1", permission == "2")):
  142. return True!
  143. else:
  144. return False!
  145. Boolean function allow_write(user_id : String, model_id : String):
  146. if (is_admin(user_id)):
  147. // Is admin, so always allow
  148. return True!
  149. else:
  150. // Check permissions
  151. String permission
  152. permission = string_get(read_attribute(core, model_id, "permissions"), get_relation_to_model(user_id, model_id))
  153. if (permission == "2"):
  154. return True!
  155. else:
  156. return False!
  157. Boolean function allow_change_metadata(user_id : String, model_id : String):
  158. if (is_admin(user_id)):
  159. // Is admin, so always allow
  160. return True!
  161. else:
  162. if (get_relation_to_model(user_id, model_id) == 0):
  163. // Only owner can chmod
  164. return True!
  165. else:
  166. return False!
  167. Boolean function allow_group_modify(user_id : String, group_id : String):
  168. if (is_admin(user_id)):
  169. // Is admin, so always allow
  170. return True!
  171. else:
  172. if (set_in(allAssociationDestinations(core, group_id, "owner"), user_id)):
  173. // We are an owner
  174. return True!
  175. else:
  176. return False!
  177. Boolean function check_login(user_id : String):
  178. String password
  179. String stored_password
  180. stored_password = read_attribute(core, user_id, "password")
  181. output("Password for existing user?")
  182. password = hash(input())
  183. return password == stored_password!
  184. Void function new_task():
  185. String username
  186. String user_id
  187. String password
  188. // Load in a hard-reference to the previously created model
  189. core = import_node(core_model_location)
  190. while (True):
  191. output("Log on as which user?")
  192. username = input()
  193. user_id = get_user_id(username)
  194. if (user_id == ""):
  195. // New user
  196. // Add user to Core Formalism
  197. user_id = instantiate_node(core, "User", "")
  198. instantiate_attribute(core, user_id, "name", username)
  199. instantiate_attribute(core, user_id, "admin", False)
  200. output("This is a new user: please give password!")
  201. password = hash(input())
  202. output("Please repeat the password")
  203. if (password == hash(input())):
  204. output("Passwords match!")
  205. instantiate_attribute(core, user_id, "password", password)
  206. break!
  207. else:
  208. output("Not the same password!")
  209. else:
  210. if (check_login(user_id)):
  211. break!
  212. else:
  213. output("Wrong password!")
  214. user_function_skip_init(user_id)
  215. // User destroyed already, so just stop execution
  216. return!
  217. String function get_entry_id(name : String):
  218. Element hierarchy_split
  219. String current
  220. Integer i
  221. Element elems
  222. String elem
  223. Boolean found
  224. String folder_name
  225. if (name == ""):
  226. return caches["root"]!
  227. if (dict_in(caches["models"], name)):
  228. if (dict_in(core, caches["models"])):
  229. if (full_name(caches["models"][name]) == name):
  230. return caches["models"][name]!
  231. folder_name = get_foldername(name)
  232. current = get_entry_id(folder_name)
  233. if (current == ""):
  234. return ""!
  235. elems = allAssociationDestinations(core, current, "contains")
  236. while (set_len(elems) > 0):
  237. elem = set_pop(elems)
  238. dict_overwrite(caches["models"], read_attribute(core, elem, "name"), elem)
  239. if (value_eq(name, read_attribute(core, elem, "name"))):
  240. return elem!
  241. return ""!
  242. String function get_service_id(name : String):
  243. core = import_node(core_model_location)
  244. Element services
  245. String service
  246. services = allInstances(core, "Service")
  247. while (set_len(services) > 0):
  248. service = set_pop(services)
  249. if (value_eq(read_attribute(core, service, "name"), name)):
  250. return service!
  251. return ""!
  252. String function get_user_id(name : String):
  253. Element users
  254. String user
  255. users = allInstances(core, "User")
  256. while (set_len(users) > 0):
  257. user = set_pop(users)
  258. if (value_eq(read_attribute(core, user, "name"), name)):
  259. return user!
  260. return ""!
  261. String function get_group_id(name : String):
  262. Element groups
  263. String group
  264. groups = allInstances(core, "Group")
  265. while (set_len(groups) > 0):
  266. group = set_pop(groups)
  267. if (value_eq(read_attribute(core, group, "name"), name)):
  268. return group!
  269. return ""!
  270. String function create_folders(user_id : String, folder_name : String):
  271. Element hierarchy
  272. Integer i
  273. String prev
  274. String elem
  275. String new_entry
  276. String cummul
  277. if (get_entry_id(folder_name) != ""):
  278. // Folders already exist, so don't iterate
  279. return get_entry_id(folder_name)!
  280. i = 0
  281. hierarchy = string_split(folder_name, "/")
  282. prev = get_entry_id("")
  283. cummul = ""
  284. // Go through folders first
  285. while (i < list_len(hierarchy)):
  286. elem = list_read(hierarchy, i)
  287. if (cummul == ""):
  288. cummul = elem
  289. else:
  290. cummul = string_join(cummul + "/", elem)
  291. if (get_entry_id(cummul) == ""):
  292. if (allow_write(user_id, prev)):
  293. // Element does not exist yet!
  294. new_entry = instantiate_node(core, "Folder", "")
  295. instantiate_attribute(core, new_entry, "name", cummul)
  296. instantiate_attribute(core, new_entry, "permissions", "200")
  297. instantiate_link(core, "contains", "", prev, new_entry)
  298. instantiate_link(core, "group", "", new_entry, get_group_id("nobody"))
  299. instantiate_link(core, "owner", "", new_entry, user_id)
  300. else:
  301. return read_root()!
  302. prev = get_entry_id(cummul)
  303. i = i + 1
  304. return prev!
  305. String function store_entry(model_id : String, full_name : String, user_id : String):
  306. String prev
  307. if (get_entry_id(full_name) != ""):
  308. // Delete any old models
  309. model_delete(get_entry_id(full_name))
  310. prev = create_folders(user_id, get_foldername(full_name))
  311. instantiate_link(core, "contains", "", prev, model_id)
  312. return full_name!
  313. String function export_typing(model : Element, name : String):
  314. String result
  315. result = instantiate_node(core, "TypeMapping", "")
  316. name = "type mappings/" + name
  317. // Create type mapping model
  318. String location
  319. location = "type mappings/" + cast_id(get_type_mapping(model))
  320. export_node(location, get_type_mapping(model))
  321. String instance_of
  322. name = store_entry(result, name, get_user_id("admin"))
  323. instantiate_attribute(core, result, "name", name)
  324. instantiate_attribute(core, result, "location", location)
  325. instantiate_attribute(core, result, "permissions", "200")
  326. instantiate_link(core, "owner", "", result, current_user_id)
  327. instantiate_link(core, "group", "", result, get_group_id("nobody"))
  328. instance_of = instantiate_link(core, "instanceOf", "", result, get_entry_id("formalisms/TypeMapping"))
  329. instantiate_link(core, "semantics", "", instance_of, get_entry_id("models/conformance_mv"))
  330. return result!
  331. Void function model_create(model : Element, name : String, type_id : String, kind : String):
  332. String location
  333. String model_id
  334. String instance_of
  335. // Create model itself
  336. location = "models/" + cast_id(model)
  337. export_node(location, model["model"])
  338. model_id = instantiate_node(core, kind, "")
  339. instantiate_attribute(core, model_id, "name", store_entry(model_id, name, current_user_id))
  340. instantiate_attribute(core, model_id, "location", location)
  341. instantiate_attribute(core, model_id, "permissions", "200")
  342. instantiate_link(core, "owner", "", model_id, current_user_id)
  343. instantiate_link(core, "group", "", model_id, get_group_id("nobody"))
  344. instance_of = instantiate_link(core, "instanceOf", "", model_id, type_id)
  345. instantiate_link(core, "semantics", "", instance_of, get_entry_id("models/conformance_mv"))
  346. // Create type mapping model
  347. instantiate_link(core, "typing", "", instance_of, export_typing(model, name))
  348. return!
  349. Void function model_overwrite(model : Element, model_id : String, metamodel_id : String):
  350. // TODO this should be more elegant than just hiding the old elements
  351. String location
  352. String instanceOf_link
  353. location = "models/" + cast_id(model)
  354. export_node(location, model["model"])
  355. // Change location in meta-data
  356. unset_attribute(core, model_id, "location")
  357. instantiate_attribute(core, model_id, "location", location)
  358. // Update the instanceOf relation of the context in which we are working
  359. String choice
  360. choice = get_instanceOf_link(model_id, metamodel_id)
  361. if (element_neq(choice, read_root())):
  362. // There was a link, so we remove it
  363. // First remove the type mapping it referred to
  364. Element tl
  365. tl = allAssociationDestinations(core, choice, "typing")
  366. while (set_len(tl) > 0):
  367. model_delete_element(core, set_pop(tl))
  368. // Now delete the element itself
  369. model_delete_element(core, choice)
  370. // Create a new instanceOf relation now
  371. String instance_of
  372. instance_of = instantiate_link(core, "instanceOf", "", model_id, metamodel_id)
  373. instantiate_link(core, "semantics", "", instance_of, get_entry_id("models/conformance_mv"))
  374. instantiate_link(core, "typing", "", instance_of, export_typing(model, full_name(model_id)))
  375. return!
  376. Boolean function check_conformance(model_id : String):
  377. // TODO check if it actually conforms, considering that instanceOf link
  378. // --> in-depth check
  379. return True!
  380. Element function merge_models(models_dict : Element, operation_name : String):
  381. core = import_node(core_model_location)
  382. // 0) Find operation signature
  383. Element input_metamodels
  384. Element iter
  385. String edge
  386. String operation_id
  387. operation_id = get_entry_id(operation_name)
  388. input_metamodels = dict_create()
  389. iter = allOutgoingAssociationInstances(core, operation_id, "transformInput")
  390. while (set_len(iter) > 0):
  391. edge = set_pop(iter)
  392. dict_add(input_metamodels, read_attribute(core, edge, "name"), read_attribute(core, readAssociationDestination(core, edge), "name"))
  393. String merged_metamodel_id
  394. String trace_link_id
  395. Element trace_links
  396. // 1) Find merged metamodel
  397. trace_links = allOutgoingAssociationInstances(core, operation_id, "tracability")
  398. merged_metamodel_id = ""
  399. while (set_len(trace_links) > 0):
  400. trace_link_id = set_pop(trace_links)
  401. if (value_eq(read_attribute(core, trace_link_id, "type"), "operatesOn")):
  402. merged_metamodel_id = readAssociationDestination(core, trace_link_id)
  403. // 2) Merge source models
  404. if (merged_metamodel_id != ""):
  405. Element model_tuples
  406. Element keys
  407. String key
  408. Element mm
  409. model_tuples = set_create()
  410. keys = dict_keys(models_dict)
  411. while (set_len(keys) > 0):
  412. key = set_pop(keys)
  413. mm = get_full_model(get_entry_id(models_dict[key]), get_entry_id(input_metamodels[key]))
  414. if (element_eq(mm, read_root())):
  415. log("Signature mismatch in operation for tag " + key)
  416. output("Signature mismatch in operation for tag " + key)
  417. return read_root()!
  418. set_add_node(model_tuples, create_tuple(key, mm))
  419. Element merged_metamodel
  420. merged_metamodel = get_full_model(merged_metamodel_id, get_entry_id("SimpleClassDiagrams"))
  421. if (element_eq(merged_metamodel, read_root())):
  422. log("Merged metamodel in operation is not of type SimpleClassDiagrams")
  423. output("Merged metamodel in operation is not of type SimpleClassDiagrams")
  424. return read_root()!
  425. return model_join(model_tuples, merged_metamodel, read_root())!
  426. else:
  427. return read_root()!
  428. Element function split_model(model : Element, metamodels_dict : Element):
  429. core = import_node(core_model_location)
  430. Element model_tuples
  431. Element keys
  432. String key
  433. Element mm
  434. model_tuples = set_create()
  435. keys = dict_keys(metamodels_dict)
  436. while (set_len(keys) > 0):
  437. key = set_pop(keys)
  438. mm = get_full_model(get_entry_id(metamodels_dict[key]), get_entry_id("SimpleClassDiagrams"))
  439. if (element_eq(mm, read_root())):
  440. log("Output metamodel cannot be interpreted using SimpleClassDiagrams: " + key)
  441. output("Output metamodel cannot be interpreted using SimpleClassDiagrams: " + key)
  442. return read_root()!
  443. set_add_node(model_tuples, create_tuple(key, mm))
  444. return model_split(model, model_tuples, read_root())!
  445. Element function get_model(model_name : String, metamodel_name : String):
  446. core = import_node(core_model_location)
  447. return get_full_model(get_entry_id(model_name), get_entry_id(metamodel_name))!
  448. Void function store_model(model_name : String, metamodel_name : String, model : Element):
  449. core = import_node(core_model_location)
  450. if (get_entry_id(model_name) == ""):
  451. // New model
  452. model_create(model, model_name, get_entry_id(metamodel_name), "Model")
  453. else:
  454. model_overwrite(model, get_entry_id(model_name), get_entry_id(metamodel_name))
  455. return!
  456. String function get_ramified_metamodel(model_name : String):
  457. core = import_node(core_model_location)
  458. String operation_id
  459. Element trace_links
  460. String merged_metamodel_id
  461. String trace_link_id
  462. String ramified_metamodel_id
  463. operation_id = get_entry_id(model_name)
  464. trace_links = allOutgoingAssociationInstances(core, operation_id, "tracability")
  465. merged_metamodel_id = ""
  466. while (set_len(trace_links) > 0):
  467. trace_link_id = set_pop(trace_links)
  468. if (value_eq(read_attribute(core, trace_link_id, "type"), "operatesOn")):
  469. merged_metamodel_id = readAssociationDestination(core, trace_link_id)
  470. trace_links = allOutgoingAssociationInstances(core, merged_metamodel_id, "tracability")
  471. ramified_metamodel_id = ""
  472. while (set_len(trace_links) > 0):
  473. trace_link_id = set_pop(trace_links)
  474. if (value_eq(read_attribute(core, trace_link_id, "type"), "RAMified")):
  475. ramified_metamodel_id = readAssociationDestination(core, trace_link_id)
  476. return read_attribute(core, ramified_metamodel_id, "name")!
  477. return read_root()!
  478. Element function execute_operation(operation_id : String, input_models : Element, tracability_model : Element):
  479. // Operations are always in-place and uses only a single metamodel
  480. // Therefore, we must:
  481. // 1) Find merged metamodel
  482. // 2) Merge the different source models and retype
  483. // 3) Perform the operation on the merged model
  484. // 4) Split the resulting model based on the target formalisms; if operation successful
  485. Element input_model
  486. String trace_link_id
  487. Element merged_model
  488. String merged_metamodel_id
  489. String ramified_metamodel_id
  490. Boolean result
  491. String exact_type
  492. Element trace_links
  493. String model_ID
  494. String key
  495. Element keys
  496. Element input_keys
  497. Element output_keys
  498. Element model_tuples
  499. String metamodel_name
  500. Element metamodel
  501. String metamodel_ID
  502. Boolean tracability
  503. // 0) Find the signature of the operation
  504. Element input_metamodels
  505. Element output_metamodels
  506. Element iter
  507. String edge
  508. input_metamodels = dict_create()
  509. iter = allOutgoingAssociationInstances(core, operation_id, "transformInput")
  510. while (set_len(iter) > 0):
  511. edge = set_pop(iter)
  512. dict_add(input_metamodels, read_attribute(core, edge, "name"), full_name(readAssociationDestination(core, edge)))
  513. output_metamodels = dict_create()
  514. iter = allOutgoingAssociationInstances(core, operation_id, "transformOutput")
  515. while (set_len(iter) > 0):
  516. edge = set_pop(iter)
  517. dict_add(output_metamodels, read_attribute(core, edge, "name"), full_name(readAssociationDestination(core, edge)))
  518. // 1) Find merged metamodel
  519. exact_type = read_type(core, operation_id)
  520. trace_links = allOutgoingAssociationInstances(core, operation_id, "tracability")
  521. merged_metamodel_id = ""
  522. while (set_len(trace_links) > 0):
  523. trace_link_id = set_pop(trace_links)
  524. if (value_eq(read_attribute(core, trace_link_id, "type"), "operatesOn")):
  525. merged_metamodel_id = readAssociationDestination(core, trace_link_id)
  526. // 2) Merge source models
  527. if (merged_metamodel_id != ""):
  528. model_tuples = set_create()
  529. keys = dict_keys(input_models)
  530. while (set_len(keys) > 0):
  531. key = set_pop(keys)
  532. Element mm
  533. if (get_entry_id(input_models[key]) == ""):
  534. // Input model doesn't exist yet, so create
  535. cmd_model_add(input_metamodels[key], input_models[key], "")
  536. mm = get_full_model(get_entry_id(input_models[key]), get_entry_id(input_metamodels[key]))
  537. if (element_eq(mm, read_root())):
  538. log("Signature mismatch in operation for tag " + key)
  539. output("Signature mismatch in operation for tag " + key)
  540. return read_root()!
  541. set_add_node(model_tuples, create_tuple(key, mm))
  542. Element merged_metamodel
  543. merged_metamodel = get_full_model(merged_metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  544. if (element_eq(merged_metamodel, read_root())):
  545. log("Merged metamodel in operation is not of type formalisms/SimpleClassDiagrams")
  546. output("Merged metamodel in operation is not of type formalisms/SimpleClassDiagrams")
  547. return read_root()!
  548. merged_model = model_join(model_tuples, merged_metamodel, tracability_model)
  549. else:
  550. if (bool_and(dict_len(input_models) == 1, dict_len(output_metamodels) == 0)):
  551. // Just skip the merge...
  552. Element m
  553. m = get_full_model(get_entry_id(input_models[set_pop(dict_keys(input_models))]), get_entry_id(input_metamodels[set_pop(dict_keys(input_metamodels))]))
  554. if (element_eq(m, read_root())):
  555. log("Signature mismatch in operation for tag " + cast_value(set_pop(dict_keys(input_models))))
  556. output("Signature mismatch in operation for tag " + cast_value(set_pop(dict_keys(input_models))))
  557. return read_root()!
  558. merged_model = model_copy(m)
  559. elif (bool_and(dict_len(input_models) == 0, dict_len(output_metamodels) == 0)):
  560. merged_model = read_root()
  561. else:
  562. log("Could not resolve intermediate merged metamodel")
  563. output("Could not resolve intermediate merged metamodel")
  564. return read_root()!
  565. // 3) Transform
  566. if (exact_type == "ModelTransformation"):
  567. trace_links = allOutgoingAssociationInstances(core, merged_metamodel_id, "tracability")
  568. ramified_metamodel_id = ""
  569. while (set_len(trace_links) > 0):
  570. trace_link_id = set_pop(trace_links)
  571. if (value_eq(read_attribute(core, trace_link_id, "type"), "RAMified")):
  572. ramified_metamodel_id = readAssociationDestination(core, trace_link_id)
  573. Element operation
  574. operation = get_full_model(operation_id, ramified_metamodel_id)
  575. if (element_eq(operation, read_root())):
  576. log("Operation could not be typed by specified RAMified metamodel!")
  577. output("Operation could not be typed by specified RAMified metamodel!")
  578. return read_root()!
  579. result = transform(merged_model, operation)
  580. elif (exact_type == "ManualOperation"):
  581. output("Please perform manual operation " + cast_value(full_name(operation_id)))
  582. String model_name
  583. model_name = ""
  584. while (get_entry_id(model_name) != ""):
  585. model_name = ".tmp/" + random_string(20)
  586. model_create(merged_model, model_name, merged_metamodel_id, "Model")
  587. // We want to modify, so modify
  588. do_spawn_modify(model_name, True)
  589. merged_model = get_full_model(get_entry_id(model_name), merged_metamodel_id)
  590. //model_delete(get_entry_id(model_name))
  591. result = True
  592. elif (exact_type == "ActionLanguage"):
  593. Element func
  594. Element al
  595. al = get_full_model(operation_id, get_entry_id("formalisms/ActionLanguage"))
  596. if (element_eq(al, read_root())):
  597. log("Action Language operation not typed by ActionLanguage metamodel!")
  598. output("Action Language operation not typed by ActionLanguage metamodel!")
  599. return read_root()!
  600. func = get_func_AL_model(al)
  601. result = func(merged_model)
  602. else:
  603. log("Unknown type of operation: " + exact_type)
  604. output("Unknown type of operation: " + exact_type)
  605. return read_root()!
  606. // 4) Split in different models depending on type
  607. if (element_neq(tracability_model, read_root())):
  608. tracability = True
  609. else:
  610. tracability = False
  611. if (result):
  612. model_tuples = set_create()
  613. keys = dict_keys(output_metamodels)
  614. while (set_len(keys) > 0):
  615. key = set_pop(keys)
  616. Element mm
  617. mm = get_full_model(get_entry_id(output_metamodels[key]), get_entry_id("formalisms/SimpleClassDiagrams"))
  618. if (element_eq(mm, read_root())):
  619. log("Output metamodel cannot be interpreted using formalisms/SimpleClassDiagrams: " + key)
  620. output("Output metamodel cannot be interpreted using formalisms/SimpleClassDiagrams: " + key)
  621. return read_root()!
  622. set_add_node(model_tuples, create_tuple(key, mm))
  623. result = model_split(merged_model, model_tuples, tracability)
  624. if (tracability):
  625. Element new_tracability_model
  626. new_tracability_model = result["__tracability"]
  627. dict_overwrite(tracability_model, "model", new_tracability_model["model"])
  628. set_type_mapping(tracability_model, get_type_mapping(new_tracability_model))
  629. dict_overwrite(tracability_model, "metamodel", new_tracability_model["metamodel"])
  630. dict_delete(result, "__tracability")
  631. return result!
  632. else:
  633. log("Negative result of execution")
  634. return read_root()!
  635. Boolean function enact_action(pm : Element, element : String, mapping : Element):
  636. Boolean result
  637. String transformation_id
  638. Element lst
  639. String elem
  640. Element inputs
  641. Element outputs
  642. String type_name
  643. String exact_type
  644. Element trace_links
  645. Element output_mms
  646. Element consumes_link
  647. String name
  648. String elem_name
  649. Element keys
  650. String key
  651. String consume
  652. String produce
  653. Element input_traceability_model
  654. String output_traceability_name
  655. String output_traceability_type
  656. Element output_map
  657. inputs = dict_create()
  658. outputs = dict_create()
  659. output_map = dict_create()
  660. input_traceability_model = read_root()
  661. output_traceability_name = read_root()
  662. output_traceability_type = read_root()
  663. // Read out the referenced element from the MvC
  664. transformation_id = get_entry_id(read_attribute(pm, element, "name"))
  665. // Find all input model names
  666. lst = allOutgoingAssociationInstances(pm, element, "Consumes")
  667. while (set_len(lst) > 0):
  668. consume = set_pop(lst)
  669. elem = readAssociationDestination(pm, consume)
  670. type_name = read_attribute(pm, elem, "type")
  671. elem_name = read_attribute(pm, elem, "name")
  672. if (cast_string(read_attribute(pm, consume, "name")) == "__traceability"):
  673. input_traceability_model = model_copy(get_full_model(get_entry_id(mapping[elem_name]), get_entry_id(type_name)))
  674. output_traceability_type = type_name
  675. else:
  676. dict_add(inputs, read_attribute(pm, consume, "name"), mapping[elem_name])
  677. // Find all output model names and their metamodel
  678. lst = allOutgoingAssociationInstances(pm, element, "Produces")
  679. while (set_len(lst) > 0):
  680. produce = set_pop(lst)
  681. elem = readAssociationDestination(pm, produce)
  682. type_name = read_attribute(pm, elem, "type")
  683. elem_name = read_attribute(pm, elem, "name")
  684. if (cast_string(read_attribute(pm, produce, "name")) == "__traceability"):
  685. output_traceability_name = mapping[elem_name]
  686. else:
  687. dict_add(outputs, read_attribute(pm, produce, "name"), type_name)
  688. dict_add(output_map, read_attribute(pm, produce, "name"), mapping[elem_name])
  689. if read_type(core, transformation_id) == "ActionLanguage":
  690. log(string_join("Enacting ActionLanguage: ", read_attribute(pm, element, "name")))
  691. output("Success: ready for AL execution")
  692. elif read_type(core, transformation_id) == "ManualOperation":
  693. log(string_join("Enacting ManualOperation: ", read_attribute(pm, element, "name")))
  694. output("Success: ready for MANUAL execution")
  695. else:
  696. log(string_join("Enacting ModelTransformation: ", read_attribute(pm, element, "name")))
  697. output("Success: ready for MT execution")
  698. result = execute_operation(transformation_id, inputs, input_traceability_model)
  699. log(string_join("Finished: ", read_attribute(pm, element, "name")))
  700. if (element_eq(result, read_root())):
  701. // Something went wrong!
  702. output("Failure")
  703. return False!
  704. else:
  705. // Check if we have to store traceability information
  706. if (element_neq(output_traceability_name, read_root())):
  707. // Yes, so store it
  708. // Note that we have overwritten the previous input traceability model, which is why it was a copy
  709. model_overwrite(input_traceability_model, get_entry_id(output_traceability_name), get_entry_id(output_traceability_type))
  710. keys = dict_keys(outputs)
  711. while (set_len(keys) > 0):
  712. key = set_pop(keys)
  713. if (get_entry_id(output_map[key]) == ""):
  714. // New model
  715. model_create(result[key], output_map[key], get_entry_id(outputs[key]), "Model")
  716. else:
  717. model_overwrite(result[key], get_entry_id(output_map[key]), get_entry_id(outputs[key]))
  718. output("Success")
  719. return True!
  720. Element function PM_signature(pm : Element):
  721. Element all_data
  722. Element result
  723. String entry
  724. result = dict_create()
  725. all_data = allInstances(pm, "Data")
  726. while (set_len(all_data) > 0):
  727. entry = set_pop(all_data)
  728. dict_add(result, cast_string(read_attribute(pm, entry, "name")), cast_string(read_attribute(pm, entry, "type")))
  729. return result!
  730. Void function enact_PM_activity(activity_to_task : Element, task_to_result : Element, pm : Element, element : String, mapping : Element):
  731. Boolean result
  732. pm_tasks = activity_to_task
  733. set_add(activity_to_task[element], get_taskname())
  734. result = enact_action(pm, element, mapping)
  735. dict_add_fast(task_to_result, get_taskname(), result)
  736. while (other_has_output(get_taskname())):
  737. sleep(1)
  738. return!
  739. Void function enact_PM(pm : Element, mapping : Element):
  740. Element worklist
  741. String element
  742. String type
  743. Boolean result
  744. Element tuple
  745. Element counters
  746. Element join_nodes
  747. Element exec_nodes
  748. Element keys
  749. String key
  750. output("Success")
  751. // For all entries in the signature, not in the mapping, we add a mock location
  752. Element signature
  753. String mock_location
  754. Element mock_locations
  755. mock_locations = set_create()
  756. signature = PM_signature(pm)
  757. keys = dict_keys(signature)
  758. while (set_len(keys) > 0):
  759. key = set_pop(keys)
  760. if (bool_not(dict_in(mapping, key))):
  761. // Add mock location
  762. mock_location = ""
  763. while (get_entry_id(mock_location) != ""):
  764. mock_location = ".tmp/" + random_string(10)
  765. dict_add(mapping, key, mock_location)
  766. cmd_model_add(signature[key], mapping[key], "")
  767. set_add(mock_locations, mock_location)
  768. // Initialize Join counters
  769. counters = dict_create()
  770. join_nodes = allInstances(pm, "Join")
  771. while (set_len(join_nodes) > 0):
  772. dict_add(counters, set_pop(join_nodes), 0)
  773. // Initialize activity to task dictionary with empty sets
  774. Element activity_to_task
  775. Element task_to_activity
  776. Element task_to_result
  777. activity_to_task = dict_create()
  778. task_to_activity = dict_create()
  779. task_to_result = dict_create()
  780. exec_nodes = allInstances(pm, "Exec")
  781. while (set_len(exec_nodes) > 0):
  782. dict_add(activity_to_task, set_pop(exec_nodes), set_create())
  783. // Create the worklist with the Start instance as first element
  784. worklist = list_create()
  785. list_append(worklist, set_pop(allInstances(pm, "Start")))
  786. // Keep on iterating until we reach finish
  787. while (True):
  788. // Check if there are PM elements to expand
  789. if (list_len(worklist) > 0):
  790. // There is something we can do, so do it!
  791. element = list_pop_final(worklist)
  792. // Find the type (to see what to do with it)
  793. // this does not yet yield the type of transformation, if it is an Execution
  794. type = read_type(pm, element)
  795. // Some types have nothing to do, such as start and fork
  796. // Therefore, they are not mentioned in the following conditional
  797. if (type == "Finish"):
  798. // We have finished, so terminate
  799. break!
  800. elif (type == "Join"):
  801. // Only do this if all dependencies are fullfilled
  802. // So add to the counter of this Join
  803. dict_overwrite(counters, element, integer_addition(counters[element], 1))
  804. // Now check whether we have enough tokens to execute the Join itself
  805. Integer required
  806. Integer got
  807. required = set_len(allIncomingAssociationInstances(pm, element, "Next")) + set_len(allIncomingAssociationInstances(pm, element, "Else")) + set_len(allIncomingAssociationInstances(pm, element, "Then"))
  808. got = counters[element]
  809. if (got == required):
  810. // Reset counter to 0
  811. dict_overwrite(counters, element, 0)
  812. // And continue
  813. else:
  814. // We haven't gotten all yet, so we wait (i.e., continue without adding Next link to worklist)
  815. continue!
  816. elif (type == "Exec"):
  817. // Execute a transformation
  818. // This the difficult part!
  819. Element args
  820. String taskname
  821. args = list_create()
  822. list_append(args, activity_to_task)
  823. list_append(args, task_to_result)
  824. list_append(args, pm)
  825. list_append(args, element)
  826. list_append(args, mapping)
  827. taskname = spawn(enact_PM_activity, args)
  828. output(taskname + " : " + cast_string(read_attribute(pm, element, "name")))
  829. dict_add(task_to_activity, taskname, element)
  830. continue!
  831. // We have finished the execution, so add all outgoing edges to the worklist
  832. Element all_next
  833. all_next = allAssociationDestinations(pm, element, "Next")
  834. String next
  835. while (set_len(all_next) > 0):
  836. next = set_pop(all_next)
  837. list_append(worklist, next)
  838. else:
  839. // No new tasks to spawn, so go and check on all running activities
  840. if (dict_len(task_to_result) > 0):
  841. // There are outputs!
  842. Element keys
  843. String task
  844. keys = dict_keys(task_to_result)
  845. while (set_len(keys) > 0):
  846. task = set_pop(keys)
  847. result = task_to_result[task]
  848. Element all_next
  849. all_next = allAssociationDestinations(pm, task_to_activity[task], "Next")
  850. String next
  851. while (set_len(all_next) > 0):
  852. next = set_pop(all_next)
  853. if (read_type(pm, next) == "Decision"):
  854. // Got decision node, so expand immediately
  855. if (result):
  856. list_append(worklist, set_pop(allAssociationDestinations(pm, next, "Then")))
  857. else:
  858. list_append(worklist, set_pop(allAssociationDestinations(pm, next, "Else")))
  859. else:
  860. // Other node, so just append for further processing
  861. list_append(worklist, next)
  862. set_remove(activity_to_task[task_to_activity[task]], task)
  863. dict_delete(task_to_result, task)
  864. dict_delete(task_to_activity, task)
  865. else:
  866. // No finished activities either, so we sleep for some time
  867. sleep(0.1)
  868. // Remove all mock locations again
  869. while (set_len(mock_locations) > 0):
  870. model_delete(get_entry_id(set_pop(mock_locations)))
  871. return !
  872. String function cmd_help():
  873. String result
  874. result = ""
  875. result = result + ("Model operations\n")
  876. result = result + (" model_add -- Add a new model\n")
  877. result = result + (" model_modify -- Modify an existing model\n")
  878. result = result + (" model_list -- List all models\n")
  879. result = result + (" model_list_full -- List all models with full info\n")
  880. result = result + (" model_overwrite -- Overwrites a model with an uploaded model, leaving all metadata\n")
  881. result = result + (" model_render -- Render a given model with a specified mapper\n")
  882. result = result + (" verify -- Check whether a model conforms to its metamodel\n")
  883. result = result + ("\n")
  884. result = result + ("Transformation-specific operations\n")
  885. result = result + (" transformation_add_MT -- Initialize a new model transformation\n")
  886. result = result + (" transformation_add_AL -- Initialize a new action language transformation\n")
  887. result = result + (" transformation_add_MANUAL -- Initialize a new manual transformation\n")
  888. result = result + (" transformation_execute -- Execute a transformation on a set of input models\n")
  889. result = result + (" transformation_list -- List all model transformations\n")
  890. result = result + (" transformation_list_full -- List all model transformations with permissions\n")
  891. result = result + (" transformation_detail -- List transformation details\n")
  892. result = result + (" transformation_between -- List all transformations between two metamodels\n")
  893. result = result + ("\n")
  894. result = result + ("Process operations\n")
  895. result = result + (" process_execute -- Execute a process model\n")
  896. result = result + ("\n")
  897. result = result + ("Model permission operations\n")
  898. result = result + (" permission_modify -- Change model permissions\n")
  899. result = result + (" permission_owner -- Change model owner\n")
  900. result = result + (" permission_group -- Change model group\n")
  901. result = result + ("\n")
  902. result = result + ("Group operations\n")
  903. result = result + (" group_create -- Create a group\n")
  904. result = result + (" group_delete -- Delete a group\n")
  905. result = result + (" group_owner_add -- Add group owner\n")
  906. result = result + (" group_owner_delete -- Remove group owner\n")
  907. result = result + (" group_join -- Add someone to your group\n")
  908. result = result + (" group_kick -- Kick someone from your group\n")
  909. result = result + (" group_list -- List all groups you are a member of\n")
  910. result = result + ("\n")
  911. if (is_admin(current_user_id)):
  912. result = result + ("Admin operations\n")
  913. result = result + (" admin_promote -- Promote a user to admin status\n")
  914. result = result + (" admin_demote -- Demote a user to normal status\n")
  915. result = result + ("\n")
  916. result = result + ("General operations\n")
  917. result = result + (" self-destruct -- Remove current user and revoke all permissions \n")
  918. result = result + (" exit -- Kill the current task, while retaining user\n")
  919. return result!
  920. String function cmd_model_add(type : String, name : String, code : String):
  921. // Model addition operation, which uses model upload commands of the compiler
  922. String location
  923. String type_id
  924. Element new_model
  925. String new_model_id
  926. type_id = get_entry_id(type)
  927. if (type_id != ""):
  928. // Type exists
  929. if (allow_read(current_user_id, type_id)):
  930. // And is readable
  931. create_folders(current_user_id, get_foldername(name))
  932. //TODO check if bottommost existing model was writable by us
  933. if (get_entry_id(name) == ""):
  934. // Model doesn't exist yet
  935. Element mm
  936. mm = get_full_model(type_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  937. if (element_eq(mm, read_root())):
  938. return "Type is not typed by formalisms/SimpleClassDiagrams: " + type!
  939. new_model = compile_model(code, mm)
  940. if (is_physical_string(new_model)):
  941. return "Compilation error: " + cast_string(new_model)!
  942. model_create(new_model, name, type_id, "Model")
  943. return "Success"!
  944. else:
  945. return "Model exists: " + name!
  946. else:
  947. return "Read permission denied to: " + type!
  948. else:
  949. return "Location not found: " + type!
  950. String function cmd_process_execute(process : String, mapping : Element):
  951. // Execute a process model until it reaches termination
  952. String process_id
  953. process_id = get_entry_id(process)
  954. if (process_id != ""):
  955. if (allow_execute(current_user_id, process_id)):
  956. Element pm
  957. pm = get_full_model(process_id, get_entry_id("formalisms/ProcessModel"))
  958. if (element_eq(pm, read_root())):
  959. return "Specified model cannot be interpreted as a ProcessModel: " + process!
  960. enact_PM(pm, mapping)
  961. return "Success"!
  962. else:
  963. return "Execute permission denied to: " + process!
  964. else:
  965. return "Location not found: " + process!
  966. String function cmd_process_signature(process : String):
  967. // Execute a process model until it reaches termination
  968. String process_id
  969. String result
  970. Element signature
  971. Element keys
  972. String key
  973. process_id = get_entry_id(process)
  974. if (process_id != ""):
  975. if (allow_execute(current_user_id, process_id)):
  976. Element pm
  977. pm = get_full_model(process_id, get_entry_id("formalisms/ProcessModel"))
  978. if (element_eq(pm, read_root())):
  979. return "Specified model cannot be interpreted as a ProcessModel: " + process!
  980. result = "Success: "
  981. signature = PM_signature(pm)
  982. keys = dict_keys(signature)
  983. while (set_len(keys) > 0):
  984. key = set_pop(keys)
  985. result = result + key + " : " + cast_string(signature[key]) + "\n"
  986. return result!
  987. else:
  988. return "Execute permission denied to model: " + process!
  989. else:
  990. return "Location not found: " + process!
  991. String function cmd_transformation_between(source_dict : String, target_dict : String):
  992. Element result
  993. Element subresult
  994. String tag
  995. String mm
  996. String mm_id
  997. Element links
  998. String link
  999. Element keys
  1000. result = allInstances(core, "Transformation")
  1001. // Iterate over all inputs
  1002. keys = dict_keys(source_dict)
  1003. while (set_len(keys) > 0):
  1004. subresult = set_create()
  1005. tag = set_pop(keys)
  1006. mm = source_dict[tag]
  1007. mm_id = get_entry_id(mm)
  1008. if (mm_id != ""):
  1009. links = allIncomingAssociationInstances(core, mm_id, "transformInput")
  1010. while (set_len(links) > 0):
  1011. link = set_pop(links)
  1012. if (value_eq(read_attribute(core, link, "name"), tag)):
  1013. // Correct tag, so make transformation a possibility
  1014. set_add(subresult, readAssociationSource(core, link))
  1015. else:
  1016. return "Location not found: " + mm!
  1017. // Got a set of subresults now, which we use to find the overlap
  1018. result = set_overlap(result, subresult)
  1019. keys = dict_keys(target_dict)
  1020. while (set_len(keys) > 0):
  1021. subresult = set_create()
  1022. tag = set_pop(keys)
  1023. mm = target_dict[tag]
  1024. mm_id = get_entry_id(mm)
  1025. if (mm_id != ""):
  1026. links = allIncomingAssociationInstances(core, mm_id, "transformOutput")
  1027. while (set_len(links) > 0):
  1028. link = set_pop(links)
  1029. if (value_eq(read_attribute(core, link, "name"), tag)):
  1030. // Correct tag, so make transformation a possibility
  1031. set_add(subresult, readAssociationSource(core, link))
  1032. else:
  1033. return "Location not found: " + mm!
  1034. // Got a set of subresults now, which we use to find the overlap
  1035. result = set_overlap(result, subresult)
  1036. String r
  1037. String transformation
  1038. r = "Success: "
  1039. while (set_len(result) > 0):
  1040. transformation = set_pop(result)
  1041. if (allow_read(current_user_id, transformation)):
  1042. r = r + string_join(full_name(transformation), "\n")
  1043. return r!
  1044. String function cmd_model_rendered(model_name : String, mapper_name : String):
  1045. Element trace_links
  1046. String rendered
  1047. String trace_link_id
  1048. String allowed_rendered
  1049. Element trace_links_2
  1050. String trace_link_2_id
  1051. allowed_rendered = "Success: "
  1052. trace_links = allOutgoingAssociationInstances(core, get_entry_id(model_name), "tracability")
  1053. while (set_len(trace_links) > 0):
  1054. trace_link_id = set_pop(trace_links)
  1055. if (value_eq(read_attribute(core, trace_link_id, "type"), "CS_perceptualized")):
  1056. rendered = readAssociationDestination(core, trace_link_id)
  1057. trace_links_2 = allOutgoingAssociationInstances(core, rendered, "tracability")
  1058. while (set_len(trace_links_2) > 0):
  1059. trace_link_2_id = set_pop(trace_links_2)
  1060. if (value_eq(read_attribute(core, readAssociationDestination(core, trace_link_2_id), "name"), mapper_name)):
  1061. if (value_eq(read_attribute(core, trace_link_2_id, "type"), "CS_mapper")):
  1062. allowed_rendered = string_join(allowed_rendered, read_attribute(core, rendered, "name")) + "\n"
  1063. return allowed_rendered!
  1064. String function cmd_model_render(model_name : String, mapper_name : String, rendered_name : String):
  1065. String model_ID
  1066. String mapper_ID
  1067. String tracability_name
  1068. Element inputs
  1069. Element output_map
  1070. Element rendered_model
  1071. Element tracability_model
  1072. Element result
  1073. Element out_links
  1074. String link
  1075. String ID_rendered_M
  1076. String ID_rendered_MM
  1077. String ID_SCD
  1078. String ID_tracability_MM
  1079. String ID_tracability_M
  1080. model_ID = get_entry_id(model_name)
  1081. if (model_ID != ""):
  1082. mapper_ID = get_entry_id(mapper_name)
  1083. if (allow_read(current_user_id, model_ID)):
  1084. if (mapper_ID != ""):
  1085. if (allow_execute(current_user_id, mapper_ID)):
  1086. // Everything is fine; start the actual operation
  1087. // Find metamodel to render to
  1088. tracability_name = "tracability/" + rendered_name
  1089. // Take the abstract syntax model and the previously rendered model
  1090. inputs = dict_create()
  1091. dict_add(inputs, "abstract", model_name)
  1092. dict_add(inputs, "rendered", rendered_name)
  1093. // Fetch the output types
  1094. output_map = dict_create()
  1095. out_links = allOutgoingAssociationInstances(core, mapper_ID, "transformOutput")
  1096. while(set_len(out_links) > 0):
  1097. link = set_pop(out_links)
  1098. dict_add(output_map, read_attribute(core, link, "name"), full_name(readAssociationDestination(core, link)))
  1099. ID_rendered_MM = get_entry_id(output_map["rendered"])
  1100. ID_SCD = get_entry_id("formalisms/SimpleClassDiagrams")
  1101. ID_tracability_MM = get_entry_id("formalisms/Tracability")
  1102. ID_tracability_M = get_entry_id(tracability_name)
  1103. ID_rendered_M = get_entry_id(rendered_name)
  1104. if (ID_rendered_M == ""):
  1105. // Instantiate
  1106. Element rendered
  1107. rendered = get_full_model(ID_rendered_MM, ID_SCD)
  1108. if (element_eq(rendered, read_root())):
  1109. return "Rendered metamodel doesn't conform to formalisms/SimpleClassDiagrams"!
  1110. rendered_model = instantiate_model(rendered)
  1111. model_create(rendered_model, rendered_name, ID_rendered_MM, "Model")
  1112. // Tracability model won't exist either
  1113. tracability_model = instantiate_model(get_full_model(ID_tracability_MM, ID_SCD))
  1114. model_create(tracability_model, tracability_name, ID_tracability_MM, "Model")
  1115. ID_rendered_M = get_entry_id(rendered_name)
  1116. ID_tracability_M = get_entry_id(tracability_name)
  1117. else:
  1118. // Read out tracability model
  1119. tracability_model = get_full_model(ID_tracability_M, ID_tracability_MM)
  1120. if (element_eq(tracability_model, read_root())):
  1121. return "Tracability model not typed by Tracability metamodel: " + tracability_name!
  1122. // Do the operation itself!
  1123. result = execute_operation(mapper_ID, inputs, tracability_model)
  1124. // Overwrite the previous rendered model
  1125. model_overwrite(result["rendered"], ID_rendered_M, ID_rendered_MM)
  1126. // Tracability updated in-place
  1127. model_overwrite(tracability_model, ID_tracability_M, ID_tracability_MM)
  1128. if (element_eq(tracability_model, read_root())):
  1129. return "Tracability model not typed by Tracability metamodel: " + tracability_name!
  1130. // Link all information in the megamodel
  1131. String tr_link
  1132. tr_link = instantiate_link(core, "tracability", "", get_entry_id(model_name), ID_rendered_M)
  1133. instantiate_attribute(core, tr_link, "type", "CS_perceptualized")
  1134. tr_link = instantiate_link(core, "tracability", "", ID_rendered_M, get_entry_id(mapper_name))
  1135. instantiate_attribute(core, tr_link, "type", "CS_mapper")
  1136. // Output the resulting model
  1137. String value
  1138. value = JSON_print(result["rendered"])
  1139. return ("Success: " + value) !
  1140. else:
  1141. return "Execute permission denied to: " + mapper_name!
  1142. else:
  1143. return "Location not found: " + mapper_name!
  1144. else:
  1145. return "Read permission denied to: " + model_name!
  1146. else:
  1147. return "Location not found: " + model_name!
  1148. Boolean function do_spawn_modify(model_name : String, write : Boolean):
  1149. output("Please edit this model before sending next input: " + model_name)
  1150. input()
  1151. return False!
  1152. Boolean function do_spawn_activity(transformation_id : String, tracability_name : String, inputs : Element, outputs : Element, output_map : Element):
  1153. Element lst
  1154. Element returnvalue
  1155. String taskname
  1156. lst = list_create()
  1157. returnvalue = set_create()
  1158. list_append(lst, returnvalue)
  1159. list_append(lst, transformation_id)
  1160. list_append(lst, tracability_name)
  1161. list_append(lst, inputs)
  1162. list_append(lst, outputs)
  1163. list_append(lst, output_map)
  1164. taskname = spawn(spawn_activity, lst)
  1165. output("Spawned activity on task: " + taskname)
  1166. while (set_len(returnvalue) == 0):
  1167. sleep(0.1)
  1168. output("Finished task: " + taskname)
  1169. return cast_boolean(set_pop(returnvalue))!
  1170. Void function spawn_activity(returnvalue : Element, transformation_id : String, tracability_name : String, inputs : Element, outputs : Element, output_map : Element):
  1171. Element result
  1172. Element keys
  1173. String key
  1174. if (read_type(core, transformation_id) == "ActionLanguage"):
  1175. output("Success: ready for AL execution")
  1176. elif (read_type(core, transformation_id) == "ManualOperation"):
  1177. output("Success: ready for MANUAL execution")
  1178. else:
  1179. output("Success: ready for MT execution")
  1180. // Do tracability
  1181. Element tracability_model
  1182. if (tracability_name != ""):
  1183. // Check if exists
  1184. if (get_entry_id(tracability_name) == ""):
  1185. // No, so create
  1186. tracability_model = instantiate_model(get_full_model(get_entry_id("formalisms/Tracability"), get_entry_id("formalisms/SimpleClassDiagrams")))
  1187. model_create(tracability_model, tracability_name, get_entry_id("formalisms/Tracability"), "Model")
  1188. else:
  1189. // Yes, so read out
  1190. tracability_model = get_full_model(get_entry_id(tracability_name), get_entry_id("formalisms/Tracability"))
  1191. else:
  1192. tracability_model = read_root()
  1193. result = execute_operation(transformation_id, inputs, tracability_model)
  1194. // Flush tracability again, just to be sure
  1195. if (tracability_name != ""):
  1196. model_overwrite(tracability_model, get_entry_id(tracability_name), get_entry_id("formalisms/Tracability"))
  1197. // Now write out the models again
  1198. if (element_eq(result, read_root())):
  1199. // Something went wrong!
  1200. set_add(returnvalue, False)
  1201. output("Failure")
  1202. else:
  1203. keys = dict_keys(outputs)
  1204. while (set_len(keys) > 0):
  1205. key = set_pop(keys)
  1206. if (get_entry_id(outputs[key]) == ""):
  1207. // New model
  1208. model_create(result[key], outputs[key], get_entry_id(output_map[key]), "Model")
  1209. else:
  1210. model_overwrite(result[key], get_entry_id(outputs[key]), get_entry_id(output_map[key]))
  1211. set_add(returnvalue, True)
  1212. output("Success")
  1213. while (other_has_output(get_taskname())):
  1214. sleep(1)
  1215. return!
  1216. String function cmd_transformation_execute(transformation_name : String, source_models : Element, target_models : Element, tracability_name : String):
  1217. // Execute a transformation, whatever type it is
  1218. // First we detect the type, so we know how to prepare for invocation
  1219. String transformation_id
  1220. String exact_type
  1221. Element sources
  1222. Element targets
  1223. String source
  1224. String target
  1225. Element inputs
  1226. Element outputs
  1227. Element output_map
  1228. Element trace_links
  1229. String target_model_name
  1230. String source_model_name
  1231. String source_model_ID
  1232. String assoc_name
  1233. transformation_id = get_entry_id(transformation_name)
  1234. if (transformation_id != ""):
  1235. if (allow_execute(current_user_id, transformation_id)):
  1236. if (is_nominal_instance(core, transformation_id, "Transformation")):
  1237. // Read out source and target links
  1238. inputs = dict_create()
  1239. sources = allOutgoingAssociationInstances(core, transformation_id, "transformInput")
  1240. while (set_len(sources) > 0):
  1241. source = set_pop(sources)
  1242. assoc_name = read_attribute(core, source, "name")
  1243. if (dict_in(source_models, assoc_name)):
  1244. source_model_name = source_models[assoc_name]
  1245. else:
  1246. return "Source model not bound: " + assoc_name!
  1247. source_model_ID = get_entry_id(source_model_name)
  1248. if (source_model_ID != ""):
  1249. if (allow_read(current_user_id, source_model_ID)):
  1250. // Check for conformance to the requested metamodel
  1251. dict_add(inputs, assoc_name, source_model_name)
  1252. continue!
  1253. else:
  1254. return "Read permission denied to: " + source_model_name!
  1255. else:
  1256. return "Location not found: " + source_model_name!
  1257. targets = allOutgoingAssociationInstances(core, transformation_id, "transformOutput")
  1258. outputs = dict_create()
  1259. output_map = dict_create()
  1260. while (set_len(targets) > 0):
  1261. target = set_pop(targets)
  1262. assoc_name = read_attribute(core, target, "name")
  1263. if (dict_in(target_models, assoc_name)):
  1264. target_model_name = target_models[assoc_name]
  1265. if (get_entry_id(target_model_name) == ""):
  1266. // Doesn't exist yet, so we can easily create
  1267. if (get_entry_id(get_foldername(target_model_name)) == ""):
  1268. return "Location not found: " + get_foldername(target_model_name)!
  1269. else:
  1270. if (allow_write(current_user_id, get_entry_id(get_foldername(target_model_name)))):
  1271. dict_add(output_map, assoc_name, full_name(readAssociationDestination(core, target)))
  1272. dict_add(outputs, assoc_name, target_model_name)
  1273. else:
  1274. return "Write permission denied to: " + get_foldername(target_model_name)!
  1275. else:
  1276. // Already exists, so we need to check for write access
  1277. if (allow_write(current_user_id, get_entry_id(target_model_name))):
  1278. dict_add(output_map, assoc_name, read_attribute(core, readAssociationDestination(core, target), "name"))
  1279. dict_add(outputs, assoc_name, target_model_name)
  1280. else:
  1281. return "Write permission denied to: " + target_model_name!
  1282. if (do_spawn_activity(transformation_id, tracability_name, inputs, outputs, output_map)):
  1283. return "Success"!
  1284. else:
  1285. return "Failure"!
  1286. else:
  1287. return "Execute permission denied to: " + transformation_name!
  1288. else:
  1289. return "Execute permission denied to: " + transformation_name!
  1290. else:
  1291. return "Location not found: " + transformation_name!
  1292. String function cmd_verify(model_name : String, metamodel_name : String):
  1293. // Check whether a model conforms to its specification (with the selected type mapping)
  1294. String model_id
  1295. String result
  1296. Element inputs
  1297. model_id = get_entry_id(model_name)
  1298. if (model_id != ""):
  1299. if (allow_read(current_user_id, model_id)):
  1300. if (get_entry_id(metamodel_name) != ""):
  1301. if (allow_read(current_user_id, get_entry_id(metamodel_name))):
  1302. Element m
  1303. m = get_full_model(get_entry_id(model_name), get_entry_id(metamodel_name))
  1304. if (element_eq(m, read_root())):
  1305. return "No conformance relation can be found between these models"!
  1306. return string_join("Success: ", conformance_scd(m))!
  1307. else:
  1308. return "Read permission denied to: " + metamodel_name!
  1309. else:
  1310. return "Location not found: " + metamodel_name!
  1311. else:
  1312. return "Read permission denied to: " + model_name!
  1313. else:
  1314. return "Location not found: " + model_name!
  1315. String function cmd_model_overwrite(model_name : String, metamodel_name : String):
  1316. // Overwrites an existing model without changing any metadata
  1317. String model_id
  1318. String type_id
  1319. Element new_model
  1320. model_id = get_entry_id(model_name)
  1321. if (model_id != ""):
  1322. if (allow_write(current_user_id, model_id)):
  1323. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1324. if (allow_read(current_user_id, type_id)):
  1325. Element mm
  1326. mm = get_full_model(get_entry_id(metamodel_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1327. if (element_eq(mm, read_root())):
  1328. return "Metamodel does not conform to formalisms/SimpleClassDiagrams: " + metamodel_name!
  1329. output("Waiting for model constructors...")
  1330. new_model = compile_model(input(), mm)
  1331. if (is_physical_string(new_model)):
  1332. return "Compilation error: " + cast_string(new_model)!
  1333. model_overwrite(new_model, model_id, get_entry_id(metamodel_name))
  1334. return "Success"!
  1335. else:
  1336. return string_join("Read permission denied to: ", full_name(type_id))!
  1337. else:
  1338. return "Write permission denied to: " + model_name!
  1339. else:
  1340. return "Location not found: " + model_name!
  1341. String function cmd_model_modify(model_name : String, metamodel_name : String):
  1342. // Model modify operation, which uses the mini_modify.alc operations, though with extensions for access control
  1343. String model_id
  1344. String type_id
  1345. model_id = get_entry_id(model_name)
  1346. if (model_id != ""):
  1347. if (allow_read(current_user_id, model_id)):
  1348. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1349. if (allow_read(current_user_id, type_id)):
  1350. Element new_model
  1351. new_model = get_full_model(model_id, get_entry_id(metamodel_name))
  1352. if (element_eq(new_model, read_root())):
  1353. return "No conformance relation can be found between these models"!
  1354. modify(new_model, allow_write(current_user_id, model_id))
  1355. if (allow_write(current_user_id, model_id)):
  1356. // Overwrite the modified model
  1357. model_overwrite(new_model, model_id, get_entry_id(metamodel_name))
  1358. return "Success"!
  1359. else:
  1360. return string_join("Read permission denied to: ", full_name(type_id))!
  1361. else:
  1362. return "Read permission denied to: " + model_name!
  1363. else:
  1364. return "Location not found: " + model_name!
  1365. Void function model_delete(model_id : String):
  1366. if (read_type(core, model_id) == "Folder"):
  1367. // Folder, so delete all containing elements as well!
  1368. Element elems
  1369. elems = allAssociationDestinations(core, model_id, "contains")
  1370. while (set_len(elems) > 0):
  1371. model_delete(set_pop(elems))
  1372. // Delete self
  1373. model_delete_element(core, model_id)
  1374. else:
  1375. // Only delete this element
  1376. model_delete_element(core, model_id)
  1377. return!
  1378. String function cmd_model_delete(model_name : String):
  1379. String model_id
  1380. model_id = get_entry_id(model_name)
  1381. if (model_id != ""):
  1382. if (allow_write(current_user_id, model_id)):
  1383. model_delete(model_id)
  1384. return "Success"!
  1385. else:
  1386. return "Write permission denied to: " + model_name!
  1387. else:
  1388. return "Location not found: " + model_name!
  1389. String function cmd_model_list(location : String):
  1390. // List all models
  1391. if (get_entry_id(location) != ""):
  1392. if (allow_read(current_user_id, get_entry_id(location))):
  1393. Element models
  1394. String result
  1395. String m
  1396. result = "Success: "
  1397. models = allAssociationDestinations(core, get_entry_id(location), "contains")
  1398. while (set_len(models) > 0):
  1399. m = set_pop(models)
  1400. if (is_nominal_instance(core, m, "Folder")):
  1401. result = result + (get_filename(read_attribute(core, m, "name")) + "/\n")
  1402. else:
  1403. result = result + (get_filename(read_attribute(core, m, "name")) + "\n")
  1404. return result!
  1405. else:
  1406. return "Read permission denied to: " + location!
  1407. else:
  1408. return "Location not found: " + location!
  1409. String function cmd_model_list_full(location : String):
  1410. // List all models with full info
  1411. if (get_entry_id(location) != ""):
  1412. if (allow_read(current_user_id, get_entry_id(location))):
  1413. Element models
  1414. String m
  1415. String permissions
  1416. String owner
  1417. String group
  1418. String name
  1419. String type
  1420. String result
  1421. result = "Success: "
  1422. models = allAssociationDestinations(core, get_entry_id(location), "contains")
  1423. while (set_len(models) > 0):
  1424. m = set_pop(models)
  1425. permissions = read_attribute(core, m, "permissions")
  1426. owner = read_attribute(core, set_pop(allAssociationDestinations(core, m, "owner")), "name")
  1427. group = read_attribute(core, set_pop(allAssociationDestinations(core, m, "group")), "name")
  1428. if (is_nominal_instance(core, m, "Folder")):
  1429. name = get_filename(read_attribute(core, m, "name")) + "/"
  1430. else:
  1431. name = get_filename(read_attribute(core, m, "name"))
  1432. result = result + permissions + " " + owner + " " + group + " " + name + "\n"
  1433. return result!
  1434. else:
  1435. return "Read permission denied to: " + location!
  1436. else:
  1437. return "Location not found: " + location!
  1438. String function cmd_transformation_add_MANUAL(source_models : Element, target_models : Element, operation_name : String):
  1439. return transformation_add(source_models, target_models, operation_name, "manual")!
  1440. String function cmd_transformation_add_AL(source_models : Element, target_models : Element, operation_name : String):
  1441. return transformation_add(source_models, target_models, operation_name, "actionlanguage")!
  1442. String function transformation_add(source_models : Element, target_models : Element, operation_name : String, operation_type : String):
  1443. // Add a manual transformation model
  1444. String model_id
  1445. Element models
  1446. Element source
  1447. Element target
  1448. String name
  1449. Element all_formalisms
  1450. Element formalism_map
  1451. Element merged_formalism
  1452. String merged_formalism_id
  1453. String source_formalism_id
  1454. String tracability_link
  1455. Element fused
  1456. Element keys
  1457. String key
  1458. Element mm
  1459. source = dict_create()
  1460. target = dict_create()
  1461. all_formalisms = set_create()
  1462. formalism_map = set_create()
  1463. fused = set_create()
  1464. keys = dict_keys(source_models)
  1465. while (set_len(keys) > 0):
  1466. key = set_pop(keys)
  1467. name = source_models[key]
  1468. model_id = get_entry_id(name)
  1469. if (model_id != ""):
  1470. if (allow_read(current_user_id, model_id)):
  1471. if (bool_not(dict_in(source, key))):
  1472. dict_add(source, key, model_id)
  1473. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1474. if (element_eq(mm, read_root())):
  1475. return "Transformation source type not in formalisms/SimpleClassDiagrams hierarchy: " + key!
  1476. if (bool_not(set_in(fused, key))):
  1477. set_add_node(formalism_map, create_tuple(key, mm))
  1478. set_add(fused, key)
  1479. if (bool_not(set_in(all_formalisms, model_id))):
  1480. set_add(all_formalisms, model_id)
  1481. else:
  1482. return "Name already selected for source: " + key!
  1483. else:
  1484. return "Read permission denied to: " + name!
  1485. else:
  1486. return "Location not found: " + name!
  1487. keys = dict_keys(target_models)
  1488. while (set_len(keys) > 0):
  1489. key = set_pop(keys)
  1490. name = target_models[key]
  1491. model_id = get_entry_id(name)
  1492. if (model_id != ""):
  1493. if (allow_read(current_user_id, model_id)):
  1494. if (bool_not(dict_in(target, key))):
  1495. dict_add(target, key, model_id)
  1496. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1497. if (element_eq(mm, read_root())):
  1498. return "Transformation target type not in formalisms/SimpleClassDiagrams hierarchy: " + key!
  1499. if (bool_not(set_in(fused, key))):
  1500. set_add_node(formalism_map, create_tuple(key, mm))
  1501. set_add(fused, key)
  1502. if (bool_not(set_in(all_formalisms, model_id))):
  1503. set_add(all_formalisms, model_id)
  1504. else:
  1505. return "Name already selected for target: " + key!
  1506. else:
  1507. return "Read permission denied to: " + name!
  1508. else:
  1509. return "Location not found: " + name!
  1510. if (get_entry_id(operation_name) == ""):
  1511. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1512. // New location is available, so write
  1513. if (dict_len(source_models) + dict_len(target_models) > 0):
  1514. merged_formalism = model_fuse(formalism_map)
  1515. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1516. do_spawn_modify("merged/" + operation_name, True)
  1517. merged_formalism = get_full_model(get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1518. if (operation_type == "manual"):
  1519. if (dict_len(source_models) + dict_len(target_models) == 0):
  1520. return "Manual activity needs at least one formalism in its input or output signature!"!
  1521. // Finished with all information, now create the model itself!
  1522. Element m
  1523. m = get_full_model(get_entry_id("formalisms/ManualOperation"), get_entry_id("formalisms/SimpleClassDiagrams"))
  1524. if (element_eq(m, read_root())):
  1525. log("Error when opening ManualOperation: no conformance relation found")
  1526. return "Error when opening ManualOperation: no conformance relation found"!
  1527. model_create(instantiate_model(m), operation_name, get_entry_id("formalisms/ManualOperation"), "ManualOperation")
  1528. model_id = get_entry_id(operation_name)
  1529. elif (operation_type == "actionlanguage"):
  1530. // Finished with all information, now create the model itself!
  1531. output("Waiting for code constructors...")
  1532. Element compiled
  1533. compiled = compile_code(input())
  1534. if (is_physical_string(compiled)):
  1535. return "Compilation error: " + cast_string(compiled)!
  1536. model_create(compiled, operation_name, get_entry_id("formalisms/ActionLanguage"), "ActionLanguage")
  1537. model_id = get_entry_id(operation_name)
  1538. if (dict_len(source_models) + dict_len(target_models) > 0):
  1539. merged_formalism_id = get_entry_id("merged/" + operation_name)
  1540. // Add tracability links at this level
  1541. while (set_len(all_formalisms) > 0):
  1542. source_formalism_id = set_pop(all_formalisms)
  1543. tracability_link = instantiate_link(core, "tracability", "", merged_formalism_id, source_formalism_id)
  1544. instantiate_attribute(core, tracability_link, "type", "merged")
  1545. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1546. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1547. // Extend metadata with info on source and target
  1548. String link
  1549. String dst
  1550. keys = dict_keys(source)
  1551. while (set_len(keys) > 0):
  1552. key = set_pop(keys)
  1553. link = instantiate_link(core, "transformInput", "", model_id, source[key])
  1554. instantiate_attribute(core, link, "name", key)
  1555. keys = dict_keys(target)
  1556. while (set_len(keys) > 0):
  1557. key = set_pop(keys)
  1558. link = instantiate_link(core, "transformOutput", "", model_id, target[key])
  1559. instantiate_attribute(core, link, "name", key)
  1560. return "Success"!
  1561. else:
  1562. return "Model exists: " + operation_name!
  1563. String function cmd_transformation_add_MT(source_models : Element, target_models : Element, operation_name : String):
  1564. // Add a model transformation model
  1565. // Just a usual model instantiation, but need to add the source and target links based on user info
  1566. String ramified_metamodel_id
  1567. Element ramified_metamodel
  1568. String model_id
  1569. Element models
  1570. Element links
  1571. String link_id
  1572. Element supported
  1573. Element source
  1574. Element target
  1575. String name
  1576. String new_model_id
  1577. String merged_link_id
  1578. Element links_merged
  1579. String merged_formalism
  1580. Element keys
  1581. String key
  1582. Element mm
  1583. Element to_ramify
  1584. String source_formalism_id
  1585. String merged_formalism_id
  1586. String tracability_link
  1587. source = dict_create()
  1588. target = dict_create()
  1589. to_ramify = set_create()
  1590. if (dict_len(source_models) + dict_len(target_models) == 0):
  1591. return "Model transformation needs at least one formalism in its input or output signature!"!
  1592. keys = dict_keys(source_models)
  1593. while (set_len(keys) > 0):
  1594. key = set_pop(keys)
  1595. name = source_models[key]
  1596. model_id = get_entry_id(name)
  1597. if (model_id != ""):
  1598. if (allow_read(current_user_id, name)):
  1599. // Check whether or not it is formalisms/SimpleClassDiagrams
  1600. if (is_typed_by(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))):
  1601. if (bool_not(dict_in(source, key))):
  1602. dict_add(source, key, model_id)
  1603. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1604. if (element_eq(mm, read_root())):
  1605. return "ModelTransformation source type not in formalisms/SimpleClassDiagrams hierarchy: " + name!
  1606. set_add_node(to_ramify, create_tuple(key, mm))
  1607. else:
  1608. return "Name was already assigned a metamodel: " + key!
  1609. else:
  1610. return "Model not supported for RAMification: " + name!
  1611. else:
  1612. return "Read permission denied to: " + name!
  1613. else:
  1614. return "Location not found: " + name!
  1615. keys = dict_keys(target_models)
  1616. while (set_len(keys) > 0):
  1617. key = set_pop(keys)
  1618. name = target_models[key]
  1619. model_id = get_entry_id(name)
  1620. if (model_id != ""):
  1621. if (allow_read(current_user_id, name)):
  1622. if (is_typed_by(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))):
  1623. if (bool_not(dict_in(target, key))):
  1624. if (dict_in(source, key)):
  1625. if (value_eq(model_id, source[key])):
  1626. dict_add(target, key, model_id)
  1627. // Don't add to to_ramify, as it is already in there!
  1628. else:
  1629. return "Name in output cannot have different type than input: " + key!
  1630. else:
  1631. dict_add(target, key, model_id)
  1632. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1633. if (element_eq(mm, read_root())):
  1634. return "ModelTransformation target type not in formalisms/SimpleClassDiagrams hierarchy: " + name!
  1635. set_add_node(to_ramify, create_tuple(key, mm))
  1636. else:
  1637. return "Name was already assigned a metamodel: " + key!
  1638. else:
  1639. return "Model not supported for RAMification: " + name!
  1640. else:
  1641. return "Read permission denied to: " + name!
  1642. else:
  1643. return "Location not found: " + name!
  1644. merged_formalism = model_fuse(to_ramify)
  1645. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1646. do_spawn_modify("merged/" + operation_name, True)
  1647. merged_formalism = get_full_model(get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1648. model_overwrite(merged_formalism, get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1649. ramified_metamodel = ramify(merged_formalism)
  1650. model_create(ramified_metamodel, "RAMified/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1651. ramified_metamodel_id = get_entry_id("RAMified/" + operation_name)
  1652. // Now use the RAMified model to create the instance
  1653. if (get_entry_id(operation_name) == ""):
  1654. String new_model
  1655. // Finished with all information, now create the model itself!
  1656. output("Waiting for model constructors...")
  1657. new_model = compile_model(input(), get_full_model(ramified_metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams")))
  1658. if (is_physical_string(new_model)):
  1659. return "Compilation error: " + cast_string(new_model)!
  1660. model_create(new_model, operation_name, ramified_metamodel_id, "ModelTransformation")
  1661. model_id = get_entry_id(operation_name)
  1662. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1663. // New location is available, so write
  1664. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1665. merged_formalism_id = get_entry_id("merged/" + operation_name)
  1666. // Add tracability links at this level
  1667. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1668. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1669. // Add tracability links at this level
  1670. tracability_link = instantiate_link(core, "tracability", "", merged_formalism_id, ramified_metamodel_id)
  1671. instantiate_attribute(core, tracability_link, "type", "RAMified")
  1672. // Extend metadata with info on source and target
  1673. String link
  1674. String dst
  1675. keys = dict_keys(source)
  1676. while (set_len(keys) > 0):
  1677. key = set_pop(keys)
  1678. dst = source[key]
  1679. link = instantiate_link(core, "transformInput", "", model_id, dst)
  1680. instantiate_attribute(core, link, "name", key)
  1681. keys = dict_keys(target)
  1682. while (set_len(keys) > 0):
  1683. key = set_pop(keys)
  1684. dst = target[key]
  1685. link = instantiate_link(core, "transformOutput", "", model_id, dst)
  1686. instantiate_attribute(core, link, "name", key)
  1687. return "Success"!
  1688. else:
  1689. return "Model exists: " + operation_name!
  1690. String function cmd_permission_modify(model_name : String, permissions : String):
  1691. Integer permission
  1692. String model_id
  1693. model_id = get_entry_id(model_name)
  1694. if (model_id != ""):
  1695. if (get_relation_to_model(current_user_id, model_id) == 0):
  1696. Boolean fail
  1697. Integer i
  1698. i = 0
  1699. if (string_len(permissions) != 3):
  1700. fail = True
  1701. while (i < 3):
  1702. permission = cast_integer(string_get(permissions, i))
  1703. if (bool_or(permission < 0, permission > 2)):
  1704. fail = True
  1705. break!
  1706. i = i + 1
  1707. if (bool_not(fail)):
  1708. unset_attribute(core, model_id, "permissions")
  1709. instantiate_attribute(core, model_id, "permissions", permissions)
  1710. return "Success"!
  1711. else:
  1712. return "Incorrect format: must be a string of three characters, with each character being a digit between 0 and 2"!
  1713. else:
  1714. return "User permission denied to: " + model_name!
  1715. else:
  1716. return "Location not found: " + model_name!
  1717. String function cmd_permission_owner(model_name : String, new_user_name : String):
  1718. String model_id
  1719. String new_user_id
  1720. model_id = get_entry_id(model_name)
  1721. if (model_id != ""):
  1722. if (bool_or(get_relation_to_model(current_user_id, model_id) == 0, is_admin(current_user_id))):
  1723. new_user_id = get_user_id(new_user_name)
  1724. if (new_user_id != ""):
  1725. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "owner")))
  1726. instantiate_link(core, "owner", "", model_id, new_user_id)
  1727. return "Success"!
  1728. else:
  1729. return "No such user: " + new_user_name!
  1730. else:
  1731. return "User permission denied to: " + model_name!
  1732. else:
  1733. return "Location not found: " + model_name!
  1734. String function cmd_permission_group(model_name : String, new_group_name : String):
  1735. String model_id
  1736. String group_id
  1737. model_id = get_entry_id(model_name)
  1738. if (model_id != ""):
  1739. if (bool_or(get_relation_to_model(current_user_id, model_id) == 0, is_admin(current_user_id))):
  1740. group_id = get_group_id(new_group_name)
  1741. if (group_id != ""):
  1742. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "group")))
  1743. instantiate_link(core, "group", "", model_id, group_id)
  1744. return "Success"!
  1745. else:
  1746. return "No such group: " + new_group_name!
  1747. else:
  1748. return "User permission denied to: " + model_name!
  1749. else:
  1750. return "Location not found: " + model_name!
  1751. String function cmd_group_create(group_name : String):
  1752. // Create a new group and become its owner
  1753. String group_id
  1754. String name
  1755. group_id = get_group_id(group_name)
  1756. if (group_id == ""):
  1757. group_id = instantiate_node(core, "Group", "")
  1758. instantiate_attribute(core, group_id, "name", group_name)
  1759. instantiate_link(core, "belongsTo", "", current_user_id, group_id)
  1760. instantiate_link(core, "owner", "", group_id, current_user_id)
  1761. return "Success"!
  1762. else:
  1763. return "Group exists: " + group_name!
  1764. String function cmd_group_delete(group_name : String):
  1765. // Delete an existing group
  1766. String group_id
  1767. group_id = get_group_id(group_name)
  1768. if (group_id != ""):
  1769. if (allow_group_modify(current_user_id, group_id)):
  1770. model_delete_element(core, group_id)
  1771. return "Success"!
  1772. else:
  1773. return "Group permission denied to: " + group_name!
  1774. else:
  1775. return "Group not found: " + group_name!
  1776. String function cmd_group_owner_add(group_name : String, other_user_name : String):
  1777. // Add an owner to your group
  1778. String group_id
  1779. String other_user_id
  1780. group_id = get_group_id(group_name)
  1781. if (group_id != ""):
  1782. if (allow_group_modify(current_user_id, group_id)):
  1783. other_user_id = get_user_id(other_user_name)
  1784. if (other_user_id != ""):
  1785. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1786. instantiate_link(core, "owner", "", group_id, other_user_id)
  1787. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1788. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1789. return "Success"!
  1790. else:
  1791. return "User is already the owner!"!
  1792. else:
  1793. return "User not found: " + other_user_name!
  1794. else:
  1795. return "Group permission denied to: " + group_name!
  1796. else:
  1797. return "Group not found: " + group_name!
  1798. String function cmd_group_owner_delete(group_name : String, other_user_name : String):
  1799. // Remove an owner from your group
  1800. String group_id
  1801. String other_user_id
  1802. group_id = get_group_id(group_name)
  1803. if (group_id != ""):
  1804. if (allow_group_modify(current_user_id, group_id)):
  1805. other_user_id = get_user_id(other_user_name)
  1806. if (other_user_id != ""):
  1807. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1808. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1809. Element overlap
  1810. overlap = set_overlap(allIncomingAssociationInstances(core, group_id, "owner"), allOutgoingAssociationInstances(core, other_user_id, "owner"))
  1811. model_delete_element(core, set_pop(overlap))
  1812. return "Success"!
  1813. else:
  1814. return "User is not an owner of the group!"!
  1815. else:
  1816. return "User is not a member of the group!"!
  1817. else:
  1818. return "User not found: " + other_user_name!
  1819. else:
  1820. return "Group permission denied to: " + group_name!
  1821. else:
  1822. return "Group not found: " + group_name!
  1823. String function cmd_group_join(group_name : String, other_user_name : String):
  1824. // Add someone to your group
  1825. String group_id
  1826. String other_user_id
  1827. group_id = get_group_id(group_name)
  1828. if (group_id != ""):
  1829. if (allow_group_modify(current_user_id, group_id)):
  1830. other_user_id = get_user_id(other_user_name)
  1831. if (other_user_id != ""):
  1832. if (set_in(allOutgoingAssociationInstances(core, other_user_id, "belongsTo"), group_id)):
  1833. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1834. return "Success"!
  1835. else:
  1836. return "User is already a member of the group!"!
  1837. else:
  1838. return "User not found: " + other_user_name!
  1839. else:
  1840. return "Group permission denied to: " + group_name!
  1841. else:
  1842. return "Group not found: " + group_name!
  1843. String function cmd_group_kick(group_name : String, other_user_name : String):
  1844. // Remove someone from your group
  1845. String group_id
  1846. String other_user_id
  1847. group_id = get_group_id(group_name)
  1848. if (group_id != ""):
  1849. if (allow_group_modify(current_user_id, group_id)):
  1850. other_user_id = get_user_id(other_user_name)
  1851. if (other_user_id != ""):
  1852. Element overlap
  1853. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1854. overlap = set_overlap(allIncomingAssociationInstances(core, group_id, "belongsTo"), allOutgoingAssociationInstances(core, other_user_id, "belongsTo"))
  1855. model_delete_element(core,set_pop(overlap))
  1856. // Check if user was an owner as well
  1857. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1858. overlap = set_overlap(allIncomingAssociationInstances(core, other_user_id, "owner"), allOutgoingAssociationInstances(core, group_id, "owner"))
  1859. model_delete_element(core, set_pop(overlap))
  1860. return "Success"!
  1861. else:
  1862. return "User is not a member of the group!"!
  1863. else:
  1864. return "User not found: " + other_user_name!
  1865. else:
  1866. return "Group permission denied to: " + group_name!
  1867. else:
  1868. return "Group not found: " + group_name!
  1869. String function cmd_group_list():
  1870. // List all groups you are a member of (and whether you are admin or not!)
  1871. Element groups
  1872. String group_id
  1873. String admin
  1874. String result
  1875. result = ""
  1876. groups = allAssociationDestinations(core, current_user_id, "belongsTo")
  1877. while (set_len(groups) > 0):
  1878. group_id = set_pop(groups)
  1879. if (set_in(allAssociationDestinations(core, group_id, "owner"), current_user_id)):
  1880. admin = " A "
  1881. else:
  1882. admin = " "
  1883. result = result + (string_join(admin, read_attribute(core, group_id, "name")) + "\n")
  1884. return result!
  1885. String function cmd_admin_promote(other_user_name : String):
  1886. // Promote a user to admin status
  1887. if (is_admin(current_user_id)):
  1888. String other_user_id
  1889. other_user_id = get_user_id(other_user_name)
  1890. if (other_user_id != ""):
  1891. unset_attribute(core, other_user_id, "admin")
  1892. instantiate_attribute(core, other_user_id, "admin", True)
  1893. return "Success"!
  1894. else:
  1895. return "User not found: " + other_user_name!
  1896. else:
  1897. return "Admin permission denied"!
  1898. String function cmd_admin_demote(other_user_name : String):
  1899. // Demote a user to normal status
  1900. if (is_admin(current_user_id)):
  1901. String other_user_id
  1902. other_user_id = get_user_id(other_user_name)
  1903. if (other_user_id != ""):
  1904. unset_attribute(core, other_user_id, "admin")
  1905. instantiate_attribute(core, other_user_id, "admin", False)
  1906. return "Success"!
  1907. else:
  1908. return "User not found: " + other_user_name!
  1909. else:
  1910. return "Admin permission denied"!
  1911. String function cmd_service_register(service_name : String):
  1912. // Active a service for this specific user
  1913. if (get_service_id(service_name) == ""):
  1914. String service
  1915. service = instantiate_node(core, "Service", "")
  1916. instantiate_attribute(core, service, "name", service_name)
  1917. instantiate_attribute(core, service, "port", get_taskname())
  1918. output("Success: " + get_taskname())
  1919. // Wait until we can stop the service
  1920. while (cast_value(input()) != "\"service_stop\""):
  1921. output("Service is running on this task: stop it by sending 'service_stop'")
  1922. model_delete_element(core, service)
  1923. // Service terminated
  1924. return "Success"!
  1925. else:
  1926. return "Service already exists: " + service_name!
  1927. String function cmd_user_password(user_name : String, new_password : String):
  1928. if (bool_or(current_user_id == get_user_id(user_name), is_admin(current_user_id))):
  1929. if (get_user_id(user_name) != ""):
  1930. instantiate_attribute(core, get_user_id(user_name), "password", hash(new_password))
  1931. return "Success"!
  1932. else:
  1933. return "No such user: " + user_name!
  1934. else:
  1935. return "User permission denied: " + user_name!
  1936. String function cmd_transformation_signature(transformation_name : String):
  1937. String model_id
  1938. model_id = get_entry_id(transformation_name)
  1939. if (model_id != ""):
  1940. if (is_nominal_instance(core, model_id, "Transformation")):
  1941. if (allow_execute(current_user_id, transformation_name)):
  1942. String result
  1943. String elem
  1944. Element inputs
  1945. Element outputs
  1946. result = "Success: "
  1947. inputs = allOutgoingAssociationInstances(core, model_id, "transformInput")
  1948. while (set_len(inputs) > 0):
  1949. elem = set_pop(inputs)
  1950. result = string_join(string_join(string_join(string_join(result + "I ", read_attribute(core, elem, "name")), " "), full_name(readAssociationDestination(core, elem))), "\n")
  1951. outputs = allOutgoingAssociationInstances(core, model_id, "transformOutput")
  1952. while (set_len(outputs) > 0):
  1953. elem = set_pop(outputs)
  1954. result = string_join(string_join(string_join(string_join(result + "O ", read_attribute(core, elem, "name")), " "), full_name(readAssociationDestination(core, elem))), "\n")
  1955. return result!
  1956. else:
  1957. return "Execute permission denied to: " + transformation_name!
  1958. else:
  1959. return "Model is not an operation: " + transformation_name!
  1960. else:
  1961. return "No such operation: " + transformation_name!
  1962. String function cmd_model_types(model_name : String):
  1963. if (get_entry_id(model_name) != ""):
  1964. String model_id
  1965. model_id = get_entry_id(model_name)
  1966. Element types
  1967. String type
  1968. String result
  1969. result = "Success: "
  1970. types = allAssociationDestinations(core, model_id, "instanceOf")
  1971. while (set_len(types) > 0):
  1972. type = set_pop(types)
  1973. result = string_join(result, full_name(type) + "\n")
  1974. return result!
  1975. else:
  1976. return "No such model: " + model_name!
  1977. String function cmd_folder_create(folder_name : String):
  1978. if (get_entry_id(folder_name) == ""):
  1979. if (element_neq(create_folders(current_user_id, folder_name), read_root())):
  1980. return "Success"!
  1981. else:
  1982. return "Write permission denied to: " + folder_name!
  1983. else:
  1984. return "Folder alreay exists: " + folder_name!
  1985. String function cmd_conformance_add(model_name : String, metamodel_name : String):
  1986. // Create a new instanceOf relation now
  1987. String instance_of
  1988. instance_of = instantiate_link(core, "instanceOf", "", get_entry_id(model_name), get_entry_id(metamodel_name))
  1989. return "Success"!
  1990. Void function user_function_skip_init(user_id : String):
  1991. String cmd
  1992. String result
  1993. current_user_id = user_id
  1994. caches = dict_create()
  1995. dict_add_fast(caches, "models", dict_create())
  1996. dict_add_fast(caches, "users", dict_create())
  1997. dict_add_fast(caches, "full_name", dict_create())
  1998. // Find root element
  1999. Element elems
  2000. String elem
  2001. elems = allInstances(core, "Folder")
  2002. while (set_len(elems) > 0):
  2003. elem = set_pop(elems)
  2004. if (value_eq(read_attribute(core, elem, "name"), "")):
  2005. if (set_len(allIncomingAssociationInstances(core, elem, "contains")) == 0):
  2006. dict_add_fast(caches, "root", elem)
  2007. break!
  2008. output("Welcome to the Model Management Interface v2.0!")
  2009. output("Use the 'help' command for a list of possible commands")
  2010. while (True):
  2011. cmd = input()
  2012. if (cmd == "help"):
  2013. output(cmd_help())
  2014. elif (cmd == "model_add"):
  2015. output(cmd_model_add(single_input("Model type?"), single_input("Model name?"), single_input("Model textual representation?")))
  2016. elif (cmd == "process_execute"):
  2017. output(cmd_process_execute(single_input("Process to execute?"), dict_input("Model bindings to use?")))
  2018. elif (cmd == "process_signature"):
  2019. output(cmd_process_signature(single_input("Process to execute?")))
  2020. elif (cmd == "transformation_between"):
  2021. output(cmd_transformation_between(dict_input("Source signature?"), dict_input("Target signature?")))
  2022. elif (cmd == "model_render"):
  2023. output(cmd_model_render(single_input("Model name?"), single_input("Mapper name?"), single_input("Rendered name?")))
  2024. elif (cmd == "model_rendered"):
  2025. output(cmd_model_rendered(single_input("Model name?"), single_input("Mapper name?")))
  2026. elif (cmd == "transformation_execute"):
  2027. output(cmd_transformation_execute(single_input("Transformation name?"), dict_input("Source models?"), dict_input("Target models?"), single_input("Tracability model?")))
  2028. elif (cmd == "verify"):
  2029. result = cmd_verify(single_input("Model name?"), single_input("Metamodel name?"))
  2030. if (result != ""):
  2031. output(result)
  2032. elif (cmd == "model_overwrite"):
  2033. output(cmd_model_overwrite(single_input("Model name?"), single_input("Metamodel name?")))
  2034. elif (cmd == "model_modify"):
  2035. output(cmd_model_modify(single_input("Model name?"), single_input("Metamodel name?")))
  2036. elif (cmd == "model_delete"):
  2037. output(cmd_model_delete(single_input("Model name?")))
  2038. elif (cmd == "model_list"):
  2039. output(cmd_model_list(single_input("Location?")))
  2040. elif (cmd == "model_list_full"):
  2041. output(cmd_model_list_full(single_input("Location?")))
  2042. elif (cmd == "transformation_add_MANUAL"):
  2043. output(cmd_transformation_add_MANUAL(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  2044. elif (cmd == "transformation_add_AL"):
  2045. output(cmd_transformation_add_AL(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  2046. elif (cmd == "transformation_add_MT"):
  2047. output(cmd_transformation_add_MT(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  2048. elif (cmd == "permission_modify"):
  2049. output(cmd_permission_modify(single_input("Model name?"), single_input("Permissions?")))
  2050. elif (cmd == "permission_owner"):
  2051. output(cmd_permission_owner(single_input("Model name?"), single_input("New owning user?")))
  2052. elif (cmd == "permission_group"):
  2053. output(cmd_permission_group(single_input("Model name?"), single_input("New owning group?")))
  2054. elif (cmd == "group_create"):
  2055. output(cmd_group_create(single_input("New group name?")))
  2056. elif (cmd == "group_delete"):
  2057. output(cmd_group_delete(single_input("Group name?")))
  2058. elif (cmd == "group_owner_add"):
  2059. output(cmd_group_owner_add(single_input("Group name?"), single_input("User name?")))
  2060. elif (cmd == "group_owner_delete"):
  2061. output(cmd_group_owner_delete(single_input("Group name?"), single_input("User name?")))
  2062. elif (cmd == "group_join"):
  2063. output(cmd_group_join(single_input("Group name?"), single_input("User name?")))
  2064. elif (cmd == "group_kick"):
  2065. output(cmd_group_kick(single_input("Group name?"), single_input("User name?")))
  2066. elif (cmd == "group_list"):
  2067. output(cmd_group_list())
  2068. elif (cmd == "admin_promote"):
  2069. output(cmd_admin_promote(single_input("User name?")))
  2070. elif (cmd == "admin_demote"):
  2071. output(cmd_admin_demote(single_input("User name?")))
  2072. elif (cmd == "service_register"):
  2073. output(cmd_service_register(single_input("Service name?")))
  2074. elif (cmd == "user_password"):
  2075. output(cmd_user_password(single_input("User name?"), single_input("New password?")))
  2076. elif (cmd == "transformation_read_signature"):
  2077. output(cmd_transformation_signature(single_input("Transformation name?")))
  2078. elif (cmd == "verbose"):
  2079. set_verbose(True)
  2080. elif (cmd == "quiet"):
  2081. set_verbose(False)
  2082. elif (cmd == "self-destruct"):
  2083. // Delete user from Core Formalism
  2084. model_delete_element(core, user_id)
  2085. return !
  2086. elif (cmd == "user_logout"):
  2087. // TODO
  2088. cmd = "FAIL"
  2089. elif (cmd == "exit"):
  2090. // Exit by actually removing the user and decoupling it from all of its models
  2091. // Restarting with the same user name will NOT grant you access to anything of the previous user with that same name
  2092. // as the current user will have been deleted
  2093. output("Success")
  2094. sleep(5)
  2095. return !
  2096. elif (cmd == "folder_create"):
  2097. output(cmd_folder_create(single_input("Folder name?")))
  2098. elif (cmd == "add_conformance"):
  2099. output(cmd_conformance_add(single_input("Model name?"), single_input("Metamodel name?")))
  2100. elif (cmd == "remove_conformance"):
  2101. // TODO
  2102. cmd = "FAIL"
  2103. elif (cmd == "user_name"):
  2104. // TODO
  2105. cmd = "FAIL"
  2106. elif (cmd == "service_poll"):
  2107. // TODO
  2108. cmd = "FAIL"
  2109. elif (cmd == "model_types"):
  2110. output(cmd_model_types(single_input("Model name?")))
  2111. else:
  2112. output("Unknown command: " + cmd)
  2113. // We never get here!
  2114. return !