core_algorithm.alc 90 KB

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