core_algorithm.alc 91 KB

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