core_algorithm.alc 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499
  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. if (element_eq(result, read_root())):
  700. // Something went wrong!
  701. output("Failure")
  702. return False!
  703. else:
  704. // Check if we have to store traceability information
  705. if (element_neq(output_traceability_name, read_root())):
  706. // Yes, so store it
  707. // Note that we have overwritten the previous input traceability model, which is why it was a copy
  708. model_overwrite(input_traceability_model, get_entry_id(output_traceability_name), get_entry_id(output_traceability_type))
  709. keys = dict_keys(outputs)
  710. while (set_len(keys) > 0):
  711. key = set_pop(keys)
  712. if (get_entry_id(output_map[key]) == ""):
  713. // New model
  714. model_create(result[key], output_map[key], get_entry_id(outputs[key]), "Model")
  715. else:
  716. model_overwrite(result[key], get_entry_id(output_map[key]), get_entry_id(outputs[key]))
  717. output("Success")
  718. return True!
  719. Element function PM_signature(pm : Element):
  720. Element all_data
  721. Element result
  722. String entry
  723. result = dict_create()
  724. all_data = allInstances(pm, "Data")
  725. while (set_len(all_data) > 0):
  726. entry = set_pop(all_data)
  727. dict_add(result, cast_string(read_attribute(pm, entry, "name")), cast_string(read_attribute(pm, entry, "type")))
  728. return result!
  729. Void function enact_PM_activity(activity_to_task : Element, task_to_result : Element, pm : Element, element : String, mapping : Element):
  730. Boolean result
  731. pm_tasks = activity_to_task
  732. set_add(activity_to_task[element], get_taskname())
  733. result = enact_action(pm, element, mapping)
  734. dict_add_fast(task_to_result, get_taskname(), result)
  735. while (other_has_output(get_taskname())):
  736. sleep(1)
  737. return!
  738. Void function enact_PM(pm : Element, mapping : Element):
  739. Element worklist
  740. String element
  741. String type
  742. Boolean result
  743. Element tuple
  744. Element counters
  745. Element join_nodes
  746. Element exec_nodes
  747. Element keys
  748. String key
  749. output("Success")
  750. // For all entries in the signature, not in the mapping, we add a mock location
  751. Element signature
  752. String mock_location
  753. Element mock_locations
  754. mock_locations = set_create()
  755. signature = PM_signature(pm)
  756. keys = dict_keys(signature)
  757. while (set_len(keys) > 0):
  758. key = set_pop(keys)
  759. if (bool_not(dict_in(mapping, key))):
  760. // Add mock location
  761. mock_location = ""
  762. while (get_entry_id(mock_location) != ""):
  763. mock_location = ".tmp/" + random_string(10)
  764. dict_add(mapping, key, mock_location)
  765. cmd_model_add(signature[key], mapping[key], "")
  766. set_add(mock_locations, mock_location)
  767. // Initialize Join counters
  768. counters = dict_create()
  769. join_nodes = allInstances(pm, "Join")
  770. while (set_len(join_nodes) > 0):
  771. dict_add(counters, set_pop(join_nodes), 0)
  772. // Initialize activity to task dictionary with empty sets
  773. Element activity_to_task
  774. Element task_to_activity
  775. Element task_to_result
  776. activity_to_task = dict_create()
  777. task_to_activity = dict_create()
  778. task_to_result = dict_create()
  779. exec_nodes = allInstances(pm, "Exec")
  780. while (set_len(exec_nodes) > 0):
  781. dict_add(activity_to_task, set_pop(exec_nodes), set_create())
  782. // Create the worklist with the Start instance as first element
  783. worklist = set_create()
  784. set_add(worklist, set_pop(allInstances(pm, "Start")))
  785. // Keep on iterating until we reach finish
  786. while (True):
  787. // Check if there are PM elements to expand
  788. if (set_len(worklist) > 0):
  789. // There is something we can do, so do it!
  790. element = set_pop(worklist)
  791. // Find the type (to see what to do with it)
  792. // this does not yet yield the type of transformation, if it is an Execution
  793. type = read_type(pm, element)
  794. // Some types have nothing to do, such as start and fork
  795. // Therefore, they are not mentioned in the following conditional
  796. if (type == "Finish"):
  797. // We have finished, so terminate
  798. break!
  799. elif (type == "Join"):
  800. // Only do this if all dependencies are fullfilled
  801. // So add to the counter of this Join
  802. dict_overwrite(counters, element, integer_addition(counters[element], 1))
  803. // Now check whether we have enough tokens to execute the Join itself
  804. Integer required
  805. Integer got
  806. required = set_len(allIncomingAssociationInstances(pm, element, "Next")) + set_len(allIncomingAssociationInstances(pm, element, "Else"))
  807. got = counters[element]
  808. if (got == required):
  809. // Reset counter to 0
  810. dict_overwrite(counters, element, 0)
  811. // And continue
  812. else:
  813. // We haven't gotten all yet, so we wait (i.e., continue without adding Next link to worklist)
  814. continue!
  815. elif (type == "Exec"):
  816. // Execute a transformation
  817. // This the difficult part!
  818. Element args
  819. String taskname
  820. args = list_create()
  821. list_append(args, activity_to_task)
  822. list_append(args, task_to_result)
  823. list_append(args, pm)
  824. list_append(args, element)
  825. list_append(args, mapping)
  826. taskname = spawn(enact_PM_activity, args)
  827. output(taskname + " : " + cast_string(read_attribute(pm, element, "name")))
  828. dict_add(task_to_activity, taskname, element)
  829. continue!
  830. // We have finished the execution, so add all outgoing edges to the worklist
  831. Element all_next
  832. all_next = allAssociationDestinations(pm, element, "Next")
  833. String next
  834. while (set_len(all_next) > 0):
  835. next = set_pop(all_next)
  836. set_add(worklist, next)
  837. else:
  838. // No new tasks to spawn, so go and check on all running activities
  839. if (dict_len(task_to_result) > 0):
  840. // There are outputs!
  841. Element keys
  842. String task
  843. keys = dict_keys(task_to_result)
  844. while (set_len(keys) > 0):
  845. task = set_pop(keys)
  846. result = task_to_result[task]
  847. Element all_next
  848. all_next = allAssociationDestinations(pm, task_to_activity[task], "Next")
  849. String next
  850. while (set_len(all_next) > 0):
  851. next = set_pop(all_next)
  852. if (read_type(pm, next) == "Decision"):
  853. // Got decision node, so expand immediately
  854. if (result):
  855. set_add(worklist, set_pop(allAssociationDestinations(pm, next, "Then")))
  856. else:
  857. set_add(worklist, set_pop(allAssociationDestinations(pm, next, "Else")))
  858. else:
  859. // Other node, so just append for further processing
  860. set_add(worklist, next)
  861. set_remove(activity_to_task[task_to_activity[task]], task)
  862. dict_delete(task_to_result, task)
  863. dict_delete(task_to_activity, task)
  864. else:
  865. // No finished activities either, so we sleep for some time
  866. sleep(0.1)
  867. // Remove all mock locations again
  868. while (set_len(mock_locations) > 0):
  869. model_delete(get_entry_id(set_pop(mock_locations)))
  870. return !
  871. String function cmd_help():
  872. String result
  873. result = ""
  874. result = result + ("Model operations\n")
  875. result = result + (" model_add -- Add a new model\n")
  876. result = result + (" model_modify -- Modify an existing model\n")
  877. result = result + (" model_list -- List all models\n")
  878. result = result + (" model_list_full -- List all models with full info\n")
  879. result = result + (" model_overwrite -- Overwrites a model with an uploaded model, leaving all metadata\n")
  880. result = result + (" model_render -- Render a given model with a specified mapper\n")
  881. result = result + (" verify -- Check whether a model conforms to its metamodel\n")
  882. result = result + ("\n")
  883. result = result + ("Transformation-specific operations\n")
  884. result = result + (" transformation_add_MT -- Initialize a new model transformation\n")
  885. result = result + (" transformation_add_AL -- Initialize a new action language transformation\n")
  886. result = result + (" transformation_add_MANUAL -- Initialize a new manual transformation\n")
  887. result = result + (" transformation_execute -- Execute a transformation on a set of input models\n")
  888. result = result + (" transformation_list -- List all model transformations\n")
  889. result = result + (" transformation_list_full -- List all model transformations with permissions\n")
  890. result = result + (" transformation_detail -- List transformation details\n")
  891. result = result + (" transformation_between -- List all transformations between two metamodels\n")
  892. result = result + ("\n")
  893. result = result + ("Process operations\n")
  894. result = result + (" process_execute -- Execute a process model\n")
  895. result = result + ("\n")
  896. result = result + ("Model permission operations\n")
  897. result = result + (" permission_modify -- Change model permissions\n")
  898. result = result + (" permission_owner -- Change model owner\n")
  899. result = result + (" permission_group -- Change model group\n")
  900. result = result + ("\n")
  901. result = result + ("Group operations\n")
  902. result = result + (" group_create -- Create a group\n")
  903. result = result + (" group_delete -- Delete a group\n")
  904. result = result + (" group_owner_add -- Add group owner\n")
  905. result = result + (" group_owner_delete -- Remove group owner\n")
  906. result = result + (" group_join -- Add someone to your group\n")
  907. result = result + (" group_kick -- Kick someone from your group\n")
  908. result = result + (" group_list -- List all groups you are a member of\n")
  909. result = result + ("\n")
  910. if (is_admin(current_user_id)):
  911. result = result + ("Admin operations\n")
  912. result = result + (" admin_promote -- Promote a user to admin status\n")
  913. result = result + (" admin_demote -- Demote a user to normal status\n")
  914. result = result + ("\n")
  915. result = result + ("General operations\n")
  916. result = result + (" self-destruct -- Remove current user and revoke all permissions \n")
  917. result = result + (" exit -- Kill the current task, while retaining user\n")
  918. return result!
  919. String function cmd_model_move(source : String, target : String):
  920. String source_id
  921. source_id = get_entry_id(source)
  922. if (source_id != ""):
  923. if (get_entry_id(target) == ""):
  924. // Create folders on path to the target
  925. create_folders(current_user_id, get_foldername(target))
  926. // Change location, first the name
  927. instantiate_attribute(core, source_id, "name", target)
  928. // Now the folder links
  929. Element links
  930. links = allIncomingAssociationInstances(core, "contains", source_id)
  931. while (set_len(links) > 0):
  932. model_delete_element(core, set_pop(links))
  933. instantiate_link(core, "contains", "", get_entry_id(get_foldername(target)), source_id)
  934. // Flush caches
  935. dict_add(caches["models"], target, caches["models"][source])
  936. dict_delete(caches["models"], source)
  937. else:
  938. return "Model exists: " + target!
  939. else:
  940. return "Model does not exist: " + source!
  941. String function cmd_model_add(type : String, name : String, code : String):
  942. // Model addition operation, which uses model upload commands of the compiler
  943. String location
  944. String type_id
  945. Element new_model
  946. String new_model_id
  947. type_id = get_entry_id(type)
  948. if (type_id != ""):
  949. // Type exists
  950. if (allow_read(current_user_id, type_id)):
  951. // And is readable
  952. create_folders(current_user_id, get_foldername(name))
  953. //TODO check if bottommost existing model was writable by us
  954. if (get_entry_id(name) == ""):
  955. // Model doesn't exist yet
  956. Element mm
  957. mm = get_full_model(type_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  958. if (element_eq(mm, read_root())):
  959. return "Type is not typed by formalisms/SimpleClassDiagrams: " + type!
  960. new_model = compile_model(code, mm)
  961. if (is_physical_string(new_model)):
  962. return "Compilation error: " + cast_string(new_model)!
  963. model_create(new_model, name, type_id, "Model")
  964. return "Success"!
  965. else:
  966. return "Model exists: " + name!
  967. else:
  968. return "Read permission denied to: " + type!
  969. else:
  970. return "Location not found: " + type!
  971. String function cmd_process_execute(process : String, mapping : Element):
  972. // Execute a process model until it reaches termination
  973. String process_id
  974. process_id = get_entry_id(process)
  975. if (process_id != ""):
  976. if (allow_execute(current_user_id, process_id)):
  977. Element pm
  978. pm = get_full_model(process_id, get_entry_id("formalisms/ProcessModel"))
  979. if (element_eq(pm, read_root())):
  980. return "Specified model cannot be interpreted as a ProcessModel: " + process!
  981. enact_PM(pm, mapping)
  982. return "Success"!
  983. else:
  984. return "Execute permission denied to: " + process!
  985. else:
  986. return "Location not found: " + process!
  987. String function cmd_process_signature(process : String):
  988. // Execute a process model until it reaches termination
  989. String process_id
  990. String result
  991. Element signature
  992. Element keys
  993. String key
  994. process_id = get_entry_id(process)
  995. if (process_id != ""):
  996. if (allow_execute(current_user_id, process_id)):
  997. Element pm
  998. pm = get_full_model(process_id, get_entry_id("formalisms/ProcessModel"))
  999. if (element_eq(pm, read_root())):
  1000. return "Specified model cannot be interpreted as a ProcessModel: " + process!
  1001. result = "Success: "
  1002. signature = PM_signature(pm)
  1003. keys = dict_keys(signature)
  1004. while (set_len(keys) > 0):
  1005. key = set_pop(keys)
  1006. result = result + key + " : " + cast_string(signature[key]) + "\n"
  1007. return result!
  1008. else:
  1009. return "Execute permission denied to model: " + process!
  1010. else:
  1011. return "Location not found: " + process!
  1012. String function cmd_transformation_between(source_dict : String, target_dict : String):
  1013. Element result
  1014. Element subresult
  1015. String tag
  1016. String mm
  1017. String mm_id
  1018. Element links
  1019. String link
  1020. Element keys
  1021. result = allInstances(core, "Transformation")
  1022. // Iterate over all inputs
  1023. keys = dict_keys(source_dict)
  1024. while (set_len(keys) > 0):
  1025. subresult = set_create()
  1026. tag = set_pop(keys)
  1027. mm = source_dict[tag]
  1028. mm_id = get_entry_id(mm)
  1029. if (mm_id != ""):
  1030. links = allIncomingAssociationInstances(core, mm_id, "transformInput")
  1031. while (set_len(links) > 0):
  1032. link = set_pop(links)
  1033. if (value_eq(read_attribute(core, link, "name"), tag)):
  1034. // Correct tag, so make transformation a possibility
  1035. set_add(subresult, readAssociationSource(core, link))
  1036. else:
  1037. return "Location not found: " + mm!
  1038. // Got a set of subresults now, which we use to find the overlap
  1039. result = set_overlap(result, subresult)
  1040. keys = dict_keys(target_dict)
  1041. while (set_len(keys) > 0):
  1042. subresult = set_create()
  1043. tag = set_pop(keys)
  1044. mm = target_dict[tag]
  1045. mm_id = get_entry_id(mm)
  1046. if (mm_id != ""):
  1047. links = allIncomingAssociationInstances(core, mm_id, "transformOutput")
  1048. while (set_len(links) > 0):
  1049. link = set_pop(links)
  1050. if (value_eq(read_attribute(core, link, "name"), tag)):
  1051. // Correct tag, so make transformation a possibility
  1052. set_add(subresult, readAssociationSource(core, link))
  1053. else:
  1054. return "Location not found: " + mm!
  1055. // Got a set of subresults now, which we use to find the overlap
  1056. result = set_overlap(result, subresult)
  1057. String r
  1058. String transformation
  1059. r = "Success: "
  1060. while (set_len(result) > 0):
  1061. transformation = set_pop(result)
  1062. if (allow_read(current_user_id, transformation)):
  1063. r = r + string_join(full_name(transformation), "\n")
  1064. return r!
  1065. String function cmd_model_rendered(model_name : String, mapper_name : String):
  1066. Element trace_links
  1067. String rendered
  1068. String trace_link_id
  1069. String allowed_rendered
  1070. Element trace_links_2
  1071. String trace_link_2_id
  1072. allowed_rendered = "Success: "
  1073. trace_links = allOutgoingAssociationInstances(core, get_entry_id(model_name), "tracability")
  1074. while (set_len(trace_links) > 0):
  1075. trace_link_id = set_pop(trace_links)
  1076. if (value_eq(read_attribute(core, trace_link_id, "type"), "CS_perceptualized")):
  1077. rendered = readAssociationDestination(core, trace_link_id)
  1078. trace_links_2 = allOutgoingAssociationInstances(core, rendered, "tracability")
  1079. while (set_len(trace_links_2) > 0):
  1080. trace_link_2_id = set_pop(trace_links_2)
  1081. if (value_eq(read_attribute(core, readAssociationDestination(core, trace_link_2_id), "name"), mapper_name)):
  1082. if (value_eq(read_attribute(core, trace_link_2_id, "type"), "CS_mapper")):
  1083. allowed_rendered = string_join(allowed_rendered, read_attribute(core, rendered, "name")) + "\n"
  1084. return allowed_rendered!
  1085. String function cmd_model_render(model_name : String, mapper_name : String, rendered_name : String):
  1086. String model_ID
  1087. String mapper_ID
  1088. String tracability_name
  1089. Element inputs
  1090. Element output_map
  1091. Element rendered_model
  1092. Element tracability_model
  1093. Element result
  1094. Element out_links
  1095. String link
  1096. String ID_rendered_M
  1097. String ID_rendered_MM
  1098. String ID_SCD
  1099. String ID_tracability_MM
  1100. String ID_tracability_M
  1101. model_ID = get_entry_id(model_name)
  1102. if (model_ID != ""):
  1103. mapper_ID = get_entry_id(mapper_name)
  1104. if (allow_read(current_user_id, model_ID)):
  1105. if (mapper_ID != ""):
  1106. if (allow_execute(current_user_id, mapper_ID)):
  1107. // Everything is fine; start the actual operation
  1108. // Find metamodel to render to
  1109. tracability_name = "tracability/" + rendered_name
  1110. // Take the abstract syntax model and the previously rendered model
  1111. inputs = dict_create()
  1112. dict_add(inputs, "abstract", model_name)
  1113. dict_add(inputs, "rendered", rendered_name)
  1114. // Fetch the output types
  1115. output_map = dict_create()
  1116. out_links = allOutgoingAssociationInstances(core, mapper_ID, "transformOutput")
  1117. while(set_len(out_links) > 0):
  1118. link = set_pop(out_links)
  1119. dict_add(output_map, read_attribute(core, link, "name"), full_name(readAssociationDestination(core, link)))
  1120. ID_rendered_MM = get_entry_id(output_map["rendered"])
  1121. ID_SCD = get_entry_id("formalisms/SimpleClassDiagrams")
  1122. ID_tracability_MM = get_entry_id("formalisms/Tracability")
  1123. ID_tracability_M = get_entry_id(tracability_name)
  1124. ID_rendered_M = get_entry_id(rendered_name)
  1125. if (ID_rendered_M == ""):
  1126. // Instantiate
  1127. Element rendered
  1128. rendered = get_full_model(ID_rendered_MM, ID_SCD)
  1129. if (element_eq(rendered, read_root())):
  1130. return "Rendered metamodel doesn't conform to formalisms/SimpleClassDiagrams"!
  1131. rendered_model = instantiate_model(rendered)
  1132. model_create(rendered_model, rendered_name, ID_rendered_MM, "Model")
  1133. // Tracability model won't exist either
  1134. tracability_model = instantiate_model(get_full_model(ID_tracability_MM, ID_SCD))
  1135. model_create(tracability_model, tracability_name, ID_tracability_MM, "Model")
  1136. ID_rendered_M = get_entry_id(rendered_name)
  1137. ID_tracability_M = get_entry_id(tracability_name)
  1138. else:
  1139. // Read out tracability model
  1140. tracability_model = get_full_model(ID_tracability_M, ID_tracability_MM)
  1141. if (element_eq(tracability_model, read_root())):
  1142. return "Tracability model not typed by Tracability metamodel: " + tracability_name!
  1143. // Do the operation itself!
  1144. result = execute_operation(mapper_ID, inputs, tracability_model)
  1145. // Overwrite the previous rendered model
  1146. model_overwrite(result["rendered"], ID_rendered_M, ID_rendered_MM)
  1147. // Tracability updated in-place
  1148. model_overwrite(tracability_model, ID_tracability_M, ID_tracability_MM)
  1149. if (element_eq(tracability_model, read_root())):
  1150. return "Tracability model not typed by Tracability metamodel: " + tracability_name!
  1151. // Link all information in the megamodel
  1152. String tr_link
  1153. tr_link = instantiate_link(core, "tracability", "", get_entry_id(model_name), ID_rendered_M)
  1154. instantiate_attribute(core, tr_link, "type", "CS_perceptualized")
  1155. tr_link = instantiate_link(core, "tracability", "", ID_rendered_M, get_entry_id(mapper_name))
  1156. instantiate_attribute(core, tr_link, "type", "CS_mapper")
  1157. // Output the resulting model
  1158. String value
  1159. value = JSON_print(result["rendered"])
  1160. return ("Success: " + value) !
  1161. else:
  1162. return "Execute permission denied to: " + mapper_name!
  1163. else:
  1164. return "Location not found: " + mapper_name!
  1165. else:
  1166. return "Read permission denied to: " + model_name!
  1167. else:
  1168. return "Location not found: " + model_name!
  1169. Boolean function do_spawn_modify(model_name : String, write : Boolean):
  1170. output("Please edit this model before sending next input: " + model_name)
  1171. input()
  1172. return False!
  1173. Boolean function do_spawn_activity(transformation_id : String, tracability_name : String, inputs : Element, outputs : Element, output_map : Element):
  1174. Element lst
  1175. Element returnvalue
  1176. String taskname
  1177. lst = list_create()
  1178. returnvalue = set_create()
  1179. list_append(lst, returnvalue)
  1180. list_append(lst, transformation_id)
  1181. list_append(lst, tracability_name)
  1182. list_append(lst, inputs)
  1183. list_append(lst, outputs)
  1184. list_append(lst, output_map)
  1185. taskname = spawn(spawn_activity, lst)
  1186. output("Spawned activity on task: " + taskname)
  1187. while (set_len(returnvalue) == 0):
  1188. sleep(0.1)
  1189. output("Finished task: " + taskname)
  1190. return cast_boolean(set_pop(returnvalue))!
  1191. Void function spawn_activity(returnvalue : Element, transformation_id : String, tracability_name : String, inputs : Element, outputs : Element, output_map : Element):
  1192. Element result
  1193. Element keys
  1194. String key
  1195. if (read_type(core, transformation_id) == "ActionLanguage"):
  1196. output("Success: ready for AL execution")
  1197. elif (read_type(core, transformation_id) == "ManualOperation"):
  1198. output("Success: ready for MANUAL execution")
  1199. else:
  1200. output("Success: ready for MT execution")
  1201. // Do tracability
  1202. Element tracability_model
  1203. if (tracability_name != ""):
  1204. // Check if exists
  1205. if (get_entry_id(tracability_name) == ""):
  1206. // No, so create
  1207. tracability_model = instantiate_model(get_full_model(get_entry_id("formalisms/Tracability"), get_entry_id("formalisms/SimpleClassDiagrams")))
  1208. model_create(tracability_model, tracability_name, get_entry_id("formalisms/Tracability"), "Model")
  1209. else:
  1210. // Yes, so read out
  1211. tracability_model = get_full_model(get_entry_id(tracability_name), get_entry_id("formalisms/Tracability"))
  1212. else:
  1213. tracability_model = read_root()
  1214. result = execute_operation(transformation_id, inputs, tracability_model)
  1215. // Flush tracability again, just to be sure
  1216. if (tracability_name != ""):
  1217. model_overwrite(tracability_model, get_entry_id(tracability_name), get_entry_id("formalisms/Tracability"))
  1218. // Now write out the models again
  1219. if (element_eq(result, read_root())):
  1220. // Something went wrong!
  1221. set_add(returnvalue, False)
  1222. output("Failure")
  1223. else:
  1224. keys = dict_keys(outputs)
  1225. while (set_len(keys) > 0):
  1226. key = set_pop(keys)
  1227. if (get_entry_id(outputs[key]) == ""):
  1228. // New model
  1229. model_create(result[key], outputs[key], get_entry_id(output_map[key]), "Model")
  1230. else:
  1231. model_overwrite(result[key], get_entry_id(outputs[key]), get_entry_id(output_map[key]))
  1232. set_add(returnvalue, True)
  1233. output("Success")
  1234. while (other_has_output(get_taskname())):
  1235. sleep(1)
  1236. return!
  1237. String function cmd_transformation_execute(transformation_name : String, source_models : Element, target_models : Element, tracability_name : String):
  1238. // Execute a transformation, whatever type it is
  1239. // First we detect the type, so we know how to prepare for invocation
  1240. String transformation_id
  1241. String exact_type
  1242. Element sources
  1243. Element targets
  1244. String source
  1245. String target
  1246. Element inputs
  1247. Element outputs
  1248. Element output_map
  1249. Element trace_links
  1250. String target_model_name
  1251. String source_model_name
  1252. String source_model_ID
  1253. String assoc_name
  1254. transformation_id = get_entry_id(transformation_name)
  1255. if (transformation_id != ""):
  1256. if (allow_execute(current_user_id, transformation_id)):
  1257. if (is_nominal_instance(core, transformation_id, "Transformation")):
  1258. // Read out source and target links
  1259. inputs = dict_create()
  1260. sources = allOutgoingAssociationInstances(core, transformation_id, "transformInput")
  1261. while (set_len(sources) > 0):
  1262. source = set_pop(sources)
  1263. assoc_name = read_attribute(core, source, "name")
  1264. if (dict_in(source_models, assoc_name)):
  1265. source_model_name = source_models[assoc_name]
  1266. else:
  1267. return "Source model not bound: " + assoc_name!
  1268. source_model_ID = get_entry_id(source_model_name)
  1269. if (source_model_ID != ""):
  1270. if (allow_read(current_user_id, source_model_ID)):
  1271. // Check for conformance to the requested metamodel
  1272. dict_add(inputs, assoc_name, source_model_name)
  1273. continue!
  1274. else:
  1275. return "Read permission denied to: " + source_model_name!
  1276. else:
  1277. return "Location not found: " + source_model_name!
  1278. targets = allOutgoingAssociationInstances(core, transformation_id, "transformOutput")
  1279. outputs = dict_create()
  1280. output_map = dict_create()
  1281. while (set_len(targets) > 0):
  1282. target = set_pop(targets)
  1283. assoc_name = read_attribute(core, target, "name")
  1284. if (dict_in(target_models, assoc_name)):
  1285. target_model_name = target_models[assoc_name]
  1286. if (get_entry_id(target_model_name) == ""):
  1287. // Doesn't exist yet, so we can easily create
  1288. if (get_entry_id(get_foldername(target_model_name)) == ""):
  1289. return "Location not found: " + get_foldername(target_model_name)!
  1290. else:
  1291. if (allow_write(current_user_id, get_entry_id(get_foldername(target_model_name)))):
  1292. dict_add(output_map, assoc_name, full_name(readAssociationDestination(core, target)))
  1293. dict_add(outputs, assoc_name, target_model_name)
  1294. else:
  1295. return "Write permission denied to: " + get_foldername(target_model_name)!
  1296. else:
  1297. // Already exists, so we need to check for write access
  1298. if (allow_write(current_user_id, get_entry_id(target_model_name))):
  1299. dict_add(output_map, assoc_name, read_attribute(core, readAssociationDestination(core, target), "name"))
  1300. dict_add(outputs, assoc_name, target_model_name)
  1301. else:
  1302. return "Write permission denied to: " + target_model_name!
  1303. if (do_spawn_activity(transformation_id, tracability_name, inputs, outputs, output_map)):
  1304. return "Success"!
  1305. else:
  1306. return "Failure"!
  1307. else:
  1308. return "Execute permission denied to: " + transformation_name!
  1309. else:
  1310. return "Execute permission denied to: " + transformation_name!
  1311. else:
  1312. return "Location not found: " + transformation_name!
  1313. String function cmd_verify(model_name : String, metamodel_name : String):
  1314. // Check whether a model conforms to its specification (with the selected type mapping)
  1315. String model_id
  1316. String result
  1317. Element inputs
  1318. model_id = get_entry_id(model_name)
  1319. if (model_id != ""):
  1320. if (allow_read(current_user_id, model_id)):
  1321. if (get_entry_id(metamodel_name) != ""):
  1322. if (allow_read(current_user_id, get_entry_id(metamodel_name))):
  1323. Element m
  1324. m = get_full_model(get_entry_id(model_name), get_entry_id(metamodel_name))
  1325. if (element_eq(m, read_root())):
  1326. return "No conformance relation can be found between these models"!
  1327. return string_join("Success: ", conformance_scd(m))!
  1328. else:
  1329. return "Read permission denied to: " + metamodel_name!
  1330. else:
  1331. return "Location not found: " + metamodel_name!
  1332. else:
  1333. return "Read permission denied to: " + model_name!
  1334. else:
  1335. return "Location not found: " + model_name!
  1336. String function cmd_model_overwrite(model_name : String, metamodel_name : String):
  1337. // Overwrites an existing model without changing any metadata
  1338. String model_id
  1339. String type_id
  1340. Element new_model
  1341. model_id = get_entry_id(model_name)
  1342. if (model_id != ""):
  1343. if (allow_write(current_user_id, model_id)):
  1344. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1345. if (allow_read(current_user_id, type_id)):
  1346. Element mm
  1347. mm = get_full_model(get_entry_id(metamodel_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1348. if (element_eq(mm, read_root())):
  1349. return "Metamodel does not conform to formalisms/SimpleClassDiagrams: " + metamodel_name!
  1350. output("Waiting for model constructors...")
  1351. new_model = compile_model(input(), mm)
  1352. if (is_physical_string(new_model)):
  1353. return "Compilation error: " + cast_string(new_model)!
  1354. model_overwrite(new_model, model_id, get_entry_id(metamodel_name))
  1355. return "Success"!
  1356. else:
  1357. return string_join("Read permission denied to: ", full_name(type_id))!
  1358. else:
  1359. return "Write permission denied to: " + model_name!
  1360. else:
  1361. return "Location not found: " + model_name!
  1362. String function cmd_model_modify(model_name : String, metamodel_name : String):
  1363. // Model modify operation, which uses the mini_modify.alc operations, though with extensions for access control
  1364. String model_id
  1365. String type_id
  1366. model_id = get_entry_id(model_name)
  1367. if (model_id != ""):
  1368. if (allow_read(current_user_id, model_id)):
  1369. type_id = set_pop(allAssociationDestinations(core, model_id, "instanceOf"))
  1370. if (allow_read(current_user_id, type_id)):
  1371. Element new_model
  1372. new_model = get_full_model(model_id, get_entry_id(metamodel_name))
  1373. if (element_eq(new_model, read_root())):
  1374. return "No conformance relation can be found between these models"!
  1375. modify(new_model, allow_write(current_user_id, model_id))
  1376. if (allow_write(current_user_id, model_id)):
  1377. // Overwrite the modified model
  1378. model_overwrite(new_model, model_id, get_entry_id(metamodel_name))
  1379. return "Success"!
  1380. else:
  1381. return string_join("Read permission denied to: ", full_name(type_id))!
  1382. else:
  1383. return "Read permission denied to: " + model_name!
  1384. else:
  1385. return "Location not found: " + model_name!
  1386. Void function model_delete(model_id : String):
  1387. if (read_type(core, model_id) == "Folder"):
  1388. // Folder, so delete all containing elements as well!
  1389. Element elems
  1390. elems = allAssociationDestinations(core, model_id, "contains")
  1391. while (set_len(elems) > 0):
  1392. model_delete(set_pop(elems))
  1393. // Delete self
  1394. model_delete_element(core, model_id)
  1395. else:
  1396. // Only delete this element
  1397. model_delete_element(core, model_id)
  1398. return!
  1399. String function cmd_model_delete(model_name : String):
  1400. String model_id
  1401. model_id = get_entry_id(model_name)
  1402. if (model_id != ""):
  1403. if (allow_write(current_user_id, model_id)):
  1404. model_delete(model_id)
  1405. return "Success"!
  1406. else:
  1407. return "Write permission denied to: " + model_name!
  1408. else:
  1409. return "Location not found: " + model_name!
  1410. String function cmd_model_list(location : String):
  1411. // List all models
  1412. if (get_entry_id(location) != ""):
  1413. if (allow_read(current_user_id, get_entry_id(location))):
  1414. Element models
  1415. String result
  1416. String m
  1417. result = "Success: "
  1418. models = allAssociationDestinations(core, get_entry_id(location), "contains")
  1419. while (set_len(models) > 0):
  1420. m = set_pop(models)
  1421. if (is_nominal_instance(core, m, "Folder")):
  1422. result = result + (get_filename(read_attribute(core, m, "name")) + "/\n")
  1423. else:
  1424. result = result + (get_filename(read_attribute(core, m, "name")) + "\n")
  1425. return result!
  1426. else:
  1427. return "Read permission denied to: " + location!
  1428. else:
  1429. return "Location not found: " + location!
  1430. String function cmd_model_list_full(location : String):
  1431. // List all models with full info
  1432. if (get_entry_id(location) != ""):
  1433. if (allow_read(current_user_id, get_entry_id(location))):
  1434. Element models
  1435. String m
  1436. String permissions
  1437. String owner
  1438. String group
  1439. String name
  1440. String type
  1441. String result
  1442. result = "Success: "
  1443. models = allAssociationDestinations(core, get_entry_id(location), "contains")
  1444. while (set_len(models) > 0):
  1445. m = set_pop(models)
  1446. permissions = read_attribute(core, m, "permissions")
  1447. owner = read_attribute(core, set_pop(allAssociationDestinations(core, m, "owner")), "name")
  1448. group = read_attribute(core, set_pop(allAssociationDestinations(core, m, "group")), "name")
  1449. if (is_nominal_instance(core, m, "Folder")):
  1450. name = get_filename(read_attribute(core, m, "name")) + "/"
  1451. else:
  1452. name = get_filename(read_attribute(core, m, "name"))
  1453. result = result + permissions + " " + owner + " " + group + " " + name + "\n"
  1454. return result!
  1455. else:
  1456. return "Read permission denied to: " + location!
  1457. else:
  1458. return "Location not found: " + location!
  1459. String function cmd_transformation_add_MANUAL(source_models : Element, target_models : Element, operation_name : String):
  1460. return transformation_add(source_models, target_models, operation_name, "manual")!
  1461. String function cmd_transformation_add_AL(source_models : Element, target_models : Element, operation_name : String):
  1462. return transformation_add(source_models, target_models, operation_name, "actionlanguage")!
  1463. String function transformation_add(source_models : Element, target_models : Element, operation_name : String, operation_type : String):
  1464. // Add a manual transformation model
  1465. String model_id
  1466. Element models
  1467. Element source
  1468. Element target
  1469. String name
  1470. Element all_formalisms
  1471. Element formalism_map
  1472. Element merged_formalism
  1473. String merged_formalism_id
  1474. String source_formalism_id
  1475. String tracability_link
  1476. Element fused
  1477. Element keys
  1478. String key
  1479. Element mm
  1480. source = dict_create()
  1481. target = dict_create()
  1482. all_formalisms = set_create()
  1483. formalism_map = set_create()
  1484. fused = set_create()
  1485. keys = dict_keys(source_models)
  1486. while (set_len(keys) > 0):
  1487. key = set_pop(keys)
  1488. name = source_models[key]
  1489. model_id = get_entry_id(name)
  1490. if (model_id != ""):
  1491. if (allow_read(current_user_id, model_id)):
  1492. if (bool_not(dict_in(source, key))):
  1493. dict_add(source, key, model_id)
  1494. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1495. if (element_eq(mm, read_root())):
  1496. return "Transformation source type not in formalisms/SimpleClassDiagrams hierarchy: " + key!
  1497. if (bool_not(set_in(fused, key))):
  1498. set_add_node(formalism_map, create_tuple(key, mm))
  1499. set_add(fused, key)
  1500. if (bool_not(set_in(all_formalisms, model_id))):
  1501. set_add(all_formalisms, model_id)
  1502. else:
  1503. return "Name already selected for source: " + key!
  1504. else:
  1505. return "Read permission denied to: " + name!
  1506. else:
  1507. return "Location not found: " + name!
  1508. keys = dict_keys(target_models)
  1509. while (set_len(keys) > 0):
  1510. key = set_pop(keys)
  1511. name = target_models[key]
  1512. model_id = get_entry_id(name)
  1513. if (model_id != ""):
  1514. if (allow_read(current_user_id, model_id)):
  1515. if (bool_not(dict_in(target, key))):
  1516. dict_add(target, key, model_id)
  1517. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1518. if (element_eq(mm, read_root())):
  1519. return "Transformation target type not in formalisms/SimpleClassDiagrams hierarchy: " + key!
  1520. if (bool_not(set_in(fused, key))):
  1521. set_add_node(formalism_map, create_tuple(key, mm))
  1522. set_add(fused, key)
  1523. if (bool_not(set_in(all_formalisms, model_id))):
  1524. set_add(all_formalisms, model_id)
  1525. else:
  1526. return "Name already selected for target: " + key!
  1527. else:
  1528. return "Read permission denied to: " + name!
  1529. else:
  1530. return "Location not found: " + name!
  1531. if (get_entry_id(operation_name) == ""):
  1532. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1533. // New location is available, so write
  1534. if (dict_len(source_models) + dict_len(target_models) > 0):
  1535. merged_formalism = model_fuse(formalism_map)
  1536. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1537. do_spawn_modify("merged/" + operation_name, True)
  1538. merged_formalism = get_full_model(get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1539. if (operation_type == "manual"):
  1540. if (dict_len(source_models) + dict_len(target_models) == 0):
  1541. return "Manual activity needs at least one formalism in its input or output signature!"!
  1542. // Finished with all information, now create the model itself!
  1543. Element m
  1544. m = get_full_model(get_entry_id("formalisms/ManualOperation"), get_entry_id("formalisms/SimpleClassDiagrams"))
  1545. if (element_eq(m, read_root())):
  1546. log("Error when opening ManualOperation: no conformance relation found")
  1547. return "Error when opening ManualOperation: no conformance relation found"!
  1548. model_create(instantiate_model(m), operation_name, get_entry_id("formalisms/ManualOperation"), "ManualOperation")
  1549. model_id = get_entry_id(operation_name)
  1550. elif (operation_type == "actionlanguage"):
  1551. // Finished with all information, now create the model itself!
  1552. output("Waiting for code constructors...")
  1553. Element compiled
  1554. compiled = compile_code(input())
  1555. if (is_physical_string(compiled)):
  1556. return "Compilation error: " + cast_string(compiled)!
  1557. model_create(compiled, operation_name, get_entry_id("formalisms/ActionLanguage"), "ActionLanguage")
  1558. model_id = get_entry_id(operation_name)
  1559. if (dict_len(source_models) + dict_len(target_models) > 0):
  1560. merged_formalism_id = get_entry_id("merged/" + operation_name)
  1561. // Add tracability links at this level
  1562. while (set_len(all_formalisms) > 0):
  1563. source_formalism_id = set_pop(all_formalisms)
  1564. tracability_link = instantiate_link(core, "tracability", "", merged_formalism_id, source_formalism_id)
  1565. instantiate_attribute(core, tracability_link, "type", "merged")
  1566. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1567. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1568. // Extend metadata with info on source and target
  1569. String link
  1570. String dst
  1571. keys = dict_keys(source)
  1572. while (set_len(keys) > 0):
  1573. key = set_pop(keys)
  1574. link = instantiate_link(core, "transformInput", "", model_id, source[key])
  1575. instantiate_attribute(core, link, "name", key)
  1576. keys = dict_keys(target)
  1577. while (set_len(keys) > 0):
  1578. key = set_pop(keys)
  1579. link = instantiate_link(core, "transformOutput", "", model_id, target[key])
  1580. instantiate_attribute(core, link, "name", key)
  1581. return "Success"!
  1582. else:
  1583. return "Model exists: " + operation_name!
  1584. String function cmd_transformation_add_MT(source_models : Element, target_models : Element, operation_name : String):
  1585. // Add a model transformation model
  1586. // Just a usual model instantiation, but need to add the source and target links based on user info
  1587. String ramified_metamodel_id
  1588. Element ramified_metamodel
  1589. String model_id
  1590. Element models
  1591. Element links
  1592. String link_id
  1593. Element supported
  1594. Element source
  1595. Element target
  1596. String name
  1597. String new_model_id
  1598. String merged_link_id
  1599. Element links_merged
  1600. String merged_formalism
  1601. Element keys
  1602. String key
  1603. Element mm
  1604. Element to_ramify
  1605. String source_formalism_id
  1606. String merged_formalism_id
  1607. String tracability_link
  1608. source = dict_create()
  1609. target = dict_create()
  1610. to_ramify = set_create()
  1611. if (dict_len(source_models) + dict_len(target_models) == 0):
  1612. return "Model transformation needs at least one formalism in its input or output signature!"!
  1613. keys = dict_keys(source_models)
  1614. while (set_len(keys) > 0):
  1615. key = set_pop(keys)
  1616. name = source_models[key]
  1617. model_id = get_entry_id(name)
  1618. if (model_id != ""):
  1619. if (allow_read(current_user_id, name)):
  1620. // Check whether or not it is formalisms/SimpleClassDiagrams
  1621. if (is_typed_by(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))):
  1622. if (bool_not(dict_in(source, key))):
  1623. dict_add(source, key, model_id)
  1624. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1625. if (element_eq(mm, read_root())):
  1626. return "ModelTransformation source type not in formalisms/SimpleClassDiagrams hierarchy: " + name!
  1627. set_add_node(to_ramify, create_tuple(key, mm))
  1628. else:
  1629. return "Name was already assigned a metamodel: " + key!
  1630. else:
  1631. return "Model not supported for RAMification: " + name!
  1632. else:
  1633. return "Read permission denied to: " + name!
  1634. else:
  1635. return "Location not found: " + name!
  1636. keys = dict_keys(target_models)
  1637. while (set_len(keys) > 0):
  1638. key = set_pop(keys)
  1639. name = target_models[key]
  1640. model_id = get_entry_id(name)
  1641. if (model_id != ""):
  1642. if (allow_read(current_user_id, name)):
  1643. if (is_typed_by(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))):
  1644. if (bool_not(dict_in(target, key))):
  1645. if (dict_in(source, key)):
  1646. if (value_eq(model_id, source[key])):
  1647. dict_add(target, key, model_id)
  1648. // Don't add to to_ramify, as it is already in there!
  1649. else:
  1650. return "Name in output cannot have different type than input: " + key!
  1651. else:
  1652. dict_add(target, key, model_id)
  1653. mm = get_full_model(model_id, get_entry_id("formalisms/SimpleClassDiagrams"))
  1654. if (element_eq(mm, read_root())):
  1655. return "ModelTransformation target type not in formalisms/SimpleClassDiagrams hierarchy: " + name!
  1656. set_add_node(to_ramify, create_tuple(key, mm))
  1657. else:
  1658. return "Name was already assigned a metamodel: " + key!
  1659. else:
  1660. return "Model not supported for RAMification: " + name!
  1661. else:
  1662. return "Read permission denied to: " + name!
  1663. else:
  1664. return "Location not found: " + name!
  1665. merged_formalism = model_fuse(to_ramify)
  1666. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1667. do_spawn_modify("merged/" + operation_name, True)
  1668. merged_formalism = get_full_model(get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1669. model_overwrite(merged_formalism, get_entry_id("merged/" + operation_name), get_entry_id("formalisms/SimpleClassDiagrams"))
  1670. ramified_metamodel = ramify(merged_formalism)
  1671. model_create(ramified_metamodel, "RAMified/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1672. ramified_metamodel_id = get_entry_id("RAMified/" + operation_name)
  1673. // Now use the RAMified model to create the instance
  1674. if (get_entry_id(operation_name) == ""):
  1675. String new_model
  1676. // Finished with all information, now create the model itself!
  1677. output("Waiting for model constructors...")
  1678. new_model = compile_model(input(), get_full_model(ramified_metamodel_id, get_entry_id("formalisms/SimpleClassDiagrams")))
  1679. if (is_physical_string(new_model)):
  1680. return "Compilation error: " + cast_string(new_model)!
  1681. model_create(new_model, operation_name, ramified_metamodel_id, "ModelTransformation")
  1682. model_id = get_entry_id(operation_name)
  1683. // Write out a merged metamodel containing all these models: this is the MM for the manual operation
  1684. // New location is available, so write
  1685. model_create(merged_formalism, "merged/" + operation_name, get_entry_id("formalisms/SimpleClassDiagrams"), "Model")
  1686. merged_formalism_id = get_entry_id("merged/" + operation_name)
  1687. // Add tracability links at this level
  1688. tracability_link = instantiate_link(core, "tracability", "", model_id, merged_formalism_id)
  1689. instantiate_attribute(core, tracability_link, "type", "operatesOn")
  1690. // Add tracability links at this level
  1691. tracability_link = instantiate_link(core, "tracability", "", merged_formalism_id, ramified_metamodel_id)
  1692. instantiate_attribute(core, tracability_link, "type", "RAMified")
  1693. // Extend metadata with info on source and target
  1694. String link
  1695. String dst
  1696. keys = dict_keys(source)
  1697. while (set_len(keys) > 0):
  1698. key = set_pop(keys)
  1699. dst = source[key]
  1700. link = instantiate_link(core, "transformInput", "", model_id, dst)
  1701. instantiate_attribute(core, link, "name", key)
  1702. keys = dict_keys(target)
  1703. while (set_len(keys) > 0):
  1704. key = set_pop(keys)
  1705. dst = target[key]
  1706. link = instantiate_link(core, "transformOutput", "", model_id, dst)
  1707. instantiate_attribute(core, link, "name", key)
  1708. return "Success"!
  1709. else:
  1710. return "Model exists: " + operation_name!
  1711. String function cmd_permission_modify(model_name : String, permissions : String):
  1712. Integer permission
  1713. String model_id
  1714. model_id = get_entry_id(model_name)
  1715. if (model_id != ""):
  1716. if (get_relation_to_model(current_user_id, model_id) == 0):
  1717. Boolean fail
  1718. Integer i
  1719. i = 0
  1720. if (string_len(permissions) != 3):
  1721. fail = True
  1722. while (i < 3):
  1723. permission = cast_integer(string_get(permissions, i))
  1724. if (bool_or(permission < 0, permission > 2)):
  1725. fail = True
  1726. break!
  1727. i = i + 1
  1728. if (bool_not(fail)):
  1729. unset_attribute(core, model_id, "permissions")
  1730. instantiate_attribute(core, model_id, "permissions", permissions)
  1731. return "Success"!
  1732. else:
  1733. return "Incorrect format: must be a string of three characters, with each character being a digit between 0 and 2"!
  1734. else:
  1735. return "User permission denied to: " + model_name!
  1736. else:
  1737. return "Location not found: " + model_name!
  1738. String function cmd_permission_owner(model_name : String, new_user_name : String):
  1739. String model_id
  1740. String new_user_id
  1741. model_id = get_entry_id(model_name)
  1742. if (model_id != ""):
  1743. if (bool_or(get_relation_to_model(current_user_id, model_id) == 0, is_admin(current_user_id))):
  1744. new_user_id = get_user_id(new_user_name)
  1745. if (new_user_id != ""):
  1746. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "owner")))
  1747. instantiate_link(core, "owner", "", model_id, new_user_id)
  1748. return "Success"!
  1749. else:
  1750. return "No such user: " + new_user_name!
  1751. else:
  1752. return "User permission denied to: " + model_name!
  1753. else:
  1754. return "Location not found: " + model_name!
  1755. String function cmd_permission_group(model_name : String, new_group_name : String):
  1756. String model_id
  1757. String group_id
  1758. model_id = get_entry_id(model_name)
  1759. if (model_id != ""):
  1760. if (bool_or(get_relation_to_model(current_user_id, model_id) == 0, is_admin(current_user_id))):
  1761. group_id = get_group_id(new_group_name)
  1762. if (group_id != ""):
  1763. model_delete_element(core, set_pop(allOutgoingAssociationInstances(core, model_id, "group")))
  1764. instantiate_link(core, "group", "", model_id, group_id)
  1765. return "Success"!
  1766. else:
  1767. return "No such group: " + new_group_name!
  1768. else:
  1769. return "User permission denied to: " + model_name!
  1770. else:
  1771. return "Location not found: " + model_name!
  1772. String function cmd_group_create(group_name : String):
  1773. // Create a new group and become its owner
  1774. String group_id
  1775. String name
  1776. group_id = get_group_id(group_name)
  1777. if (group_id == ""):
  1778. group_id = instantiate_node(core, "Group", "")
  1779. instantiate_attribute(core, group_id, "name", group_name)
  1780. instantiate_link(core, "belongsTo", "", current_user_id, group_id)
  1781. instantiate_link(core, "owner", "", group_id, current_user_id)
  1782. return "Success"!
  1783. else:
  1784. return "Group exists: " + group_name!
  1785. String function cmd_group_delete(group_name : String):
  1786. // Delete an existing group
  1787. String group_id
  1788. group_id = get_group_id(group_name)
  1789. if (group_id != ""):
  1790. if (allow_group_modify(current_user_id, group_id)):
  1791. model_delete_element(core, group_id)
  1792. return "Success"!
  1793. else:
  1794. return "Group permission denied to: " + group_name!
  1795. else:
  1796. return "Group not found: " + group_name!
  1797. String function cmd_group_owner_add(group_name : String, other_user_name : String):
  1798. // Add an owner to your group
  1799. String group_id
  1800. String other_user_id
  1801. group_id = get_group_id(group_name)
  1802. if (group_id != ""):
  1803. if (allow_group_modify(current_user_id, group_id)):
  1804. other_user_id = get_user_id(other_user_name)
  1805. if (other_user_id != ""):
  1806. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1807. instantiate_link(core, "owner", "", group_id, other_user_id)
  1808. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1809. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1810. return "Success"!
  1811. else:
  1812. return "User is already the owner!"!
  1813. else:
  1814. return "User not found: " + other_user_name!
  1815. else:
  1816. return "Group permission denied to: " + group_name!
  1817. else:
  1818. return "Group not found: " + group_name!
  1819. String function cmd_group_owner_delete(group_name : String, other_user_name : String):
  1820. // Remove an owner from your group
  1821. String group_id
  1822. String other_user_id
  1823. group_id = get_group_id(group_name)
  1824. if (group_id != ""):
  1825. if (allow_group_modify(current_user_id, group_id)):
  1826. other_user_id = get_user_id(other_user_name)
  1827. if (other_user_id != ""):
  1828. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1829. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1830. Element overlap
  1831. overlap = set_overlap(allIncomingAssociationInstances(core, group_id, "owner"), allOutgoingAssociationInstances(core, other_user_id, "owner"))
  1832. model_delete_element(core, set_pop(overlap))
  1833. return "Success"!
  1834. else:
  1835. return "User is not an owner of the group!"!
  1836. else:
  1837. return "User is not a member of the group!"!
  1838. else:
  1839. return "User not found: " + other_user_name!
  1840. else:
  1841. return "Group permission denied to: " + group_name!
  1842. else:
  1843. return "Group not found: " + group_name!
  1844. String function cmd_group_join(group_name : String, other_user_name : String):
  1845. // Add someone to your group
  1846. String group_id
  1847. String other_user_id
  1848. group_id = get_group_id(group_name)
  1849. if (group_id != ""):
  1850. if (allow_group_modify(current_user_id, group_id)):
  1851. other_user_id = get_user_id(other_user_name)
  1852. if (other_user_id != ""):
  1853. if (set_in(allOutgoingAssociationInstances(core, other_user_id, "belongsTo"), group_id)):
  1854. instantiate_link(core, "belongsTo", "", other_user_id, group_id)
  1855. return "Success"!
  1856. else:
  1857. return "User is already a member of the group!"!
  1858. else:
  1859. return "User not found: " + other_user_name!
  1860. else:
  1861. return "Group permission denied to: " + group_name!
  1862. else:
  1863. return "Group not found: " + group_name!
  1864. String function cmd_group_kick(group_name : String, other_user_name : String):
  1865. // Remove someone from your group
  1866. String group_id
  1867. String other_user_id
  1868. group_id = get_group_id(group_name)
  1869. if (group_id != ""):
  1870. if (allow_group_modify(current_user_id, group_id)):
  1871. other_user_id = get_user_id(other_user_name)
  1872. if (other_user_id != ""):
  1873. Element overlap
  1874. if (set_in(allAssociationDestinations(core, other_user_id, "belongsTo"), group_id)):
  1875. overlap = set_overlap(allIncomingAssociationInstances(core, group_id, "belongsTo"), allOutgoingAssociationInstances(core, other_user_id, "belongsTo"))
  1876. model_delete_element(core,set_pop(overlap))
  1877. // Check if user was an owner as well
  1878. if (set_in(allAssociationDestinations(core, group_id, "owner"), other_user_id)):
  1879. overlap = set_overlap(allIncomingAssociationInstances(core, other_user_id, "owner"), allOutgoingAssociationInstances(core, group_id, "owner"))
  1880. model_delete_element(core, set_pop(overlap))
  1881. return "Success"!
  1882. else:
  1883. return "User is not a member of the group!"!
  1884. else:
  1885. return "User not found: " + other_user_name!
  1886. else:
  1887. return "Group permission denied to: " + group_name!
  1888. else:
  1889. return "Group not found: " + group_name!
  1890. String function cmd_group_list():
  1891. // List all groups you are a member of (and whether you are admin or not!)
  1892. Element groups
  1893. String group_id
  1894. String admin
  1895. String result
  1896. result = ""
  1897. groups = allAssociationDestinations(core, current_user_id, "belongsTo")
  1898. while (set_len(groups) > 0):
  1899. group_id = set_pop(groups)
  1900. if (set_in(allAssociationDestinations(core, group_id, "owner"), current_user_id)):
  1901. admin = " A "
  1902. else:
  1903. admin = " "
  1904. result = result + (string_join(admin, read_attribute(core, group_id, "name")) + "\n")
  1905. return result!
  1906. String function cmd_admin_promote(other_user_name : String):
  1907. // Promote a user to admin status
  1908. if (is_admin(current_user_id)):
  1909. String other_user_id
  1910. other_user_id = get_user_id(other_user_name)
  1911. if (other_user_id != ""):
  1912. unset_attribute(core, other_user_id, "admin")
  1913. instantiate_attribute(core, other_user_id, "admin", True)
  1914. return "Success"!
  1915. else:
  1916. return "User not found: " + other_user_name!
  1917. else:
  1918. return "Admin permission denied"!
  1919. String function cmd_admin_demote(other_user_name : String):
  1920. // Demote a user to normal status
  1921. if (is_admin(current_user_id)):
  1922. String other_user_id
  1923. other_user_id = get_user_id(other_user_name)
  1924. if (other_user_id != ""):
  1925. unset_attribute(core, other_user_id, "admin")
  1926. instantiate_attribute(core, other_user_id, "admin", False)
  1927. return "Success"!
  1928. else:
  1929. return "User not found: " + other_user_name!
  1930. else:
  1931. return "Admin permission denied"!
  1932. String function cmd_service_register(service_name : String):
  1933. // Active a service for this specific user
  1934. if (get_service_id(service_name) == ""):
  1935. String service
  1936. service = instantiate_node(core, "Service", "")
  1937. instantiate_attribute(core, service, "name", service_name)
  1938. instantiate_attribute(core, service, "port", get_taskname())
  1939. output("Success: " + get_taskname())
  1940. // Wait until we can stop the service
  1941. while (cast_value(input()) != "\"service_stop\""):
  1942. output("Service is running on this task: stop it by sending 'service_stop'")
  1943. model_delete_element(core, service)
  1944. // Service terminated
  1945. return "Success"!
  1946. else:
  1947. return "Service already exists: " + service_name!
  1948. String function cmd_user_password(user_name : String, new_password : String):
  1949. if (bool_or(current_user_id == get_user_id(user_name), is_admin(current_user_id))):
  1950. if (get_user_id(user_name) != ""):
  1951. instantiate_attribute(core, get_user_id(user_name), "password", hash(new_password))
  1952. return "Success"!
  1953. else:
  1954. return "No such user: " + user_name!
  1955. else:
  1956. return "User permission denied: " + user_name!
  1957. String function cmd_transformation_signature(transformation_name : String):
  1958. String model_id
  1959. model_id = get_entry_id(transformation_name)
  1960. if (model_id != ""):
  1961. if (is_nominal_instance(core, model_id, "Transformation")):
  1962. if (allow_execute(current_user_id, transformation_name)):
  1963. String result
  1964. String elem
  1965. Element inputs
  1966. Element outputs
  1967. result = "Success: "
  1968. inputs = allOutgoingAssociationInstances(core, model_id, "transformInput")
  1969. while (set_len(inputs) > 0):
  1970. elem = set_pop(inputs)
  1971. result = string_join(string_join(string_join(string_join(result + "I ", read_attribute(core, elem, "name")), " "), full_name(readAssociationDestination(core, elem))), "\n")
  1972. outputs = allOutgoingAssociationInstances(core, model_id, "transformOutput")
  1973. while (set_len(outputs) > 0):
  1974. elem = set_pop(outputs)
  1975. result = string_join(string_join(string_join(string_join(result + "O ", read_attribute(core, elem, "name")), " "), full_name(readAssociationDestination(core, elem))), "\n")
  1976. return result!
  1977. else:
  1978. return "Execute permission denied to: " + transformation_name!
  1979. else:
  1980. return "Model is not an operation: " + transformation_name!
  1981. else:
  1982. return "No such operation: " + transformation_name!
  1983. String function cmd_model_types(model_name : String):
  1984. if (get_entry_id(model_name) != ""):
  1985. String model_id
  1986. model_id = get_entry_id(model_name)
  1987. Element types
  1988. String type
  1989. String result
  1990. result = "Success: "
  1991. types = allAssociationDestinations(core, model_id, "instanceOf")
  1992. while (set_len(types) > 0):
  1993. type = set_pop(types)
  1994. result = string_join(result, full_name(type) + "\n")
  1995. return result!
  1996. else:
  1997. return "No such model: " + model_name!
  1998. String function cmd_folder_create(folder_name : String):
  1999. if (get_entry_id(folder_name) == ""):
  2000. if (element_neq(create_folders(current_user_id, folder_name), read_root())):
  2001. return "Success"!
  2002. else:
  2003. return "Write permission denied to: " + folder_name!
  2004. else:
  2005. return "Folder alreay exists: " + folder_name!
  2006. String function cmd_conformance_add(model_name : String, metamodel_name : String):
  2007. // Create a new instanceOf relation now
  2008. String instance_of
  2009. instance_of = instantiate_link(core, "instanceOf", "", get_entry_id(model_name), get_entry_id(metamodel_name))
  2010. return "Success"!
  2011. Void function user_function_skip_init(user_id : String):
  2012. String cmd
  2013. String result
  2014. current_user_id = user_id
  2015. caches = dict_create()
  2016. dict_add_fast(caches, "models", dict_create())
  2017. dict_add_fast(caches, "users", dict_create())
  2018. dict_add_fast(caches, "full_name", dict_create())
  2019. // Find root element
  2020. Element elems
  2021. String elem
  2022. elems = allInstances(core, "Folder")
  2023. while (set_len(elems) > 0):
  2024. elem = set_pop(elems)
  2025. if (value_eq(read_attribute(core, elem, "name"), "")):
  2026. if (set_len(allIncomingAssociationInstances(core, elem, "contains")) == 0):
  2027. dict_add_fast(caches, "root", elem)
  2028. break!
  2029. output("Welcome to the Model Management Interface v2.0!")
  2030. output("Use the 'help' command for a list of possible commands")
  2031. while (True):
  2032. cmd = input()
  2033. if (cmd == "help"):
  2034. output(cmd_help())
  2035. elif (cmd == "model_add"):
  2036. output(cmd_model_add(single_input("Model type?"), single_input("Model name?"), single_input("Model textual representation?")))
  2037. elif (cmd == "model_move"):
  2038. output(cmd_model_move(single_input("Model name?"), single_input("New location?")))
  2039. elif (cmd == "process_execute"):
  2040. output(cmd_process_execute(single_input("Process to execute?"), dict_input("Model bindings to use?")))
  2041. elif (cmd == "process_signature"):
  2042. output(cmd_process_signature(single_input("Process to execute?")))
  2043. elif (cmd == "transformation_between"):
  2044. output(cmd_transformation_between(dict_input("Source signature?"), dict_input("Target signature?")))
  2045. elif (cmd == "model_render"):
  2046. output(cmd_model_render(single_input("Model name?"), single_input("Mapper name?"), single_input("Rendered name?")))
  2047. elif (cmd == "model_rendered"):
  2048. output(cmd_model_rendered(single_input("Model name?"), single_input("Mapper name?")))
  2049. elif (cmd == "transformation_execute"):
  2050. output(cmd_transformation_execute(single_input("Transformation name?"), dict_input("Source models?"), dict_input("Target models?"), single_input("Tracability model?")))
  2051. elif (cmd == "verify"):
  2052. result = cmd_verify(single_input("Model name?"), single_input("Metamodel name?"))
  2053. if (result != ""):
  2054. output(result)
  2055. elif (cmd == "model_overwrite"):
  2056. output(cmd_model_overwrite(single_input("Model name?"), single_input("Metamodel name?")))
  2057. elif (cmd == "model_modify"):
  2058. output(cmd_model_modify(single_input("Model name?"), single_input("Metamodel name?")))
  2059. elif (cmd == "model_delete"):
  2060. output(cmd_model_delete(single_input("Model name?")))
  2061. elif (cmd == "model_list"):
  2062. output(cmd_model_list(single_input("Location?")))
  2063. elif (cmd == "model_list_full"):
  2064. output(cmd_model_list_full(single_input("Location?")))
  2065. elif (cmd == "transformation_add_MANUAL"):
  2066. output(cmd_transformation_add_MANUAL(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  2067. elif (cmd == "transformation_add_AL"):
  2068. output(cmd_transformation_add_AL(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  2069. elif (cmd == "transformation_add_MT"):
  2070. output(cmd_transformation_add_MT(dict_input("Source models?"), dict_input("Target models?"), single_input("Operation name?")))
  2071. elif (cmd == "permission_modify"):
  2072. output(cmd_permission_modify(single_input("Model name?"), single_input("Permissions?")))
  2073. elif (cmd == "permission_owner"):
  2074. output(cmd_permission_owner(single_input("Model name?"), single_input("New owning user?")))
  2075. elif (cmd == "permission_group"):
  2076. output(cmd_permission_group(single_input("Model name?"), single_input("New owning group?")))
  2077. elif (cmd == "group_create"):
  2078. output(cmd_group_create(single_input("New group name?")))
  2079. elif (cmd == "group_delete"):
  2080. output(cmd_group_delete(single_input("Group name?")))
  2081. elif (cmd == "group_owner_add"):
  2082. output(cmd_group_owner_add(single_input("Group name?"), single_input("User name?")))
  2083. elif (cmd == "group_owner_delete"):
  2084. output(cmd_group_owner_delete(single_input("Group name?"), single_input("User name?")))
  2085. elif (cmd == "group_join"):
  2086. output(cmd_group_join(single_input("Group name?"), single_input("User name?")))
  2087. elif (cmd == "group_kick"):
  2088. output(cmd_group_kick(single_input("Group name?"), single_input("User name?")))
  2089. elif (cmd == "group_list"):
  2090. output(cmd_group_list())
  2091. elif (cmd == "admin_promote"):
  2092. output(cmd_admin_promote(single_input("User name?")))
  2093. elif (cmd == "admin_demote"):
  2094. output(cmd_admin_demote(single_input("User name?")))
  2095. elif (cmd == "service_register"):
  2096. output(cmd_service_register(single_input("Service name?")))
  2097. elif (cmd == "user_password"):
  2098. output(cmd_user_password(single_input("User name?"), single_input("New password?")))
  2099. elif (cmd == "transformation_read_signature"):
  2100. output(cmd_transformation_signature(single_input("Transformation name?")))
  2101. elif (cmd == "verbose"):
  2102. set_verbose(True)
  2103. elif (cmd == "quiet"):
  2104. set_verbose(False)
  2105. elif (cmd == "self-destruct"):
  2106. // Delete user from Core Formalism
  2107. model_delete_element(core, user_id)
  2108. return !
  2109. elif (cmd == "user_logout"):
  2110. // TODO
  2111. cmd = "FAIL"
  2112. elif (cmd == "exit"):
  2113. // Exit by actually removing the user and decoupling it from all of its models
  2114. // Restarting with the same user name will NOT grant you access to anything of the previous user with that same name
  2115. // as the current user will have been deleted
  2116. output("Success")
  2117. sleep(5)
  2118. return !
  2119. elif (cmd == "folder_create"):
  2120. output(cmd_folder_create(single_input("Folder name?")))
  2121. elif (cmd == "add_conformance"):
  2122. output(cmd_conformance_add(single_input("Model name?"), single_input("Metamodel name?")))
  2123. elif (cmd == "remove_conformance"):
  2124. // TODO
  2125. cmd = "FAIL"
  2126. elif (cmd == "user_name"):
  2127. // TODO
  2128. cmd = "FAIL"
  2129. elif (cmd == "service_poll"):
  2130. // TODO
  2131. cmd = "FAIL"
  2132. elif (cmd == "model_types"):
  2133. output(cmd_model_types(single_input("Model name?")))
  2134. else:
  2135. output("Unknown command: " + cmd)
  2136. // We never get here!
  2137. return !