core_algorithm.alc 88 KB

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