core_algorithm.alc 91 KB

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