su4sml/src/codegen/componentuml_cartridge.sml

180 lines
8.5 KiB
Standard ML
Raw Normal View History

(*****************************************************************************
2016-10-23 23:35:11 +00:00
* su4sml --- an SML repository for managing (Secure)UML/OCL models
* http://projects.brucker.ch/su4sml/
*
* componentuml_cartridge.sml ---
* This file is part of su4sml.
*
* Copyright (c) 2005-2007, ETH Zurich, Switzerland
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* * Neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
******************************************************************************)
(* $Id$ *)
functor ComponentUML_Cartridge(S : BASE_CARTRIDGE) : DESIGN_LANGUAGE_CARTRIDGE =
struct
structure SuperCart = SecureUML_Cartridge(structure SuperCart=S; structure D=ComponentUML)
structure Design = SuperCart.Security.Design
(* TODO: fill out *)
type environment = { curPermissionList : SuperCart.Security.Permission list option,
curPermission : SuperCart.Security.Permission option,
curEntity : Rep.Classifier option,
extension : SuperCart.environment}
type Model = SuperCart.Model
(* unpack : environment -> SuperCart.environment *)
fun unpack (env : environment) = #extension env
(* pack : environment -> SuperCart.environment -> environment *)
fun pack (env: environment) (new_env : SuperCart.environment) =
{ curPermissionList = #curPermissionList env,
curPermission = #curPermission env,
curEntity = #curEntity env,
extension = new_env}
fun initEnv model = { curPermissionList = NONE,
curPermission = NONE,
curEntity = NONE,
extension = SuperCart.initEnv model}
(* fun getModel (env : environment) = SuperCart.getModel (unpack env) *)
fun curClassifier (env:environment) = SuperCart.curClassifier (unpack env)
fun curAttribute (env:environment) = SuperCart.curAttribute (unpack env)
fun curOperation (env:environment) = SuperCart.curOperation (unpack env)
fun curArgument (env:environment) = SuperCart.curArgument (unpack env)
fun curAssociationEnd (env:environment) = SuperCart.curAssociationEnd (unpack env)
fun curClassifier' (env:environment) = valOf (SuperCart.curClassifier (unpack env))
(**
* compute the atomic actions that are possible on the currently "active"
* resource.
* Maybe sme of this should be moved to component_uml.sml...
*)
fun atomic_actions_from_context env =
if Option.isSome (curAttribute env) then
let fun make_action s =
ComponentUML.SimpleAction (s, ComponentUMLResource.EntityAttribute
(Option.valOf (curAttribute env)))
in [make_action "read", make_action "update"] end
else if Option.isSome (curOperation env) then
let fun make_action s =
ComponentUML.SimpleAction (s, ComponentUMLResource.EntityMethod
(Option.valOf (curOperation env)))
in [make_action "execute"] end
else if Option.isSome (curClassifier env) then
let fun make_action s =
ComponentUML.SimpleAction (s, ComponentUMLResource.Entity
(Option.valOf (curClassifier env)))
in [make_action "create", make_action "delete"] end
else raise Fail "no current resource"
(* FIXME: i also need a function composite_actions_from_context *)
(* FIX *)
fun permissions_for_action env act =
List.filter (fn x => SuperCart.Security.permission_includes_action x act)
(SuperCart.PermissionSet (unpack env))
(********** ADDING/MODIFYING VARIABLE SUBSTITUTIONS *****************************************)
(* lookup environment -> string -> string
* might override some lookup entries of the base cartridge
*)
fun lookup (env:environment) "permission_name" =
(case #curPermission env of
SOME x => #name x
| NONE => SuperCart.lookup (unpack env) "permission_name")
| lookup env "entity_name" =
(case #curEntity env
of SOME s => Rep.short_name_of s
| NONE => SuperCart.lookup (unpack env) "classifier_name")
| lookup env s = SuperCart.lookup (unpack env) s
(********** ADDING IF-CONDITION TYPE *****************************************)
(** no cartridge specific predicates are defined (yet). *)
fun test env "first_permission" =
(case #curPermission env of
SOME x => x = hd (Option.valOf (#curPermissionList env))
| NONE => SuperCart.test (unpack env) "first_permission" )
| test env "last_permission" =
(case #curPermission env of
SOME x => x = List.last (Option.valOf (#curPermissionList env))
| NONE => SuperCart.test (unpack env) "first_permission" )
| test env s = SuperCart.test (unpack env) s
(********** ADDING FOREACH TYPE **********************************************)
fun foreach_permission env name =
let val action = Option.valOf (List.find (fn x => ComponentUML.action_type_of x = name)
(atomic_actions_from_context env))
handle Option => Logger.error ("error in finding action "^name)
val permissions = permissions_for_action env action
fun env_from_list_item c = { curPermissionList = SOME permissions,
curPermission = SOME c,
curEntity = #curEntity env,
extension = #extension env} : environment
in
List.map env_from_list_item permissions
end
fun foreach_entity (env:environment) =
let val cls = map (pack env) (SuperCart.foreach "classifier_list" (unpack env))
in
List.filter (fn x => ListEq.includes (Rep.stereotypes_of (curClassifier' x))
"compuml.entity") cls
end
(* let val entities = List.filter (fn x => ListEq.includes (Rep.stereotypes_of x) "compuml.entity" )
(#1 (#model (#extension env)))
fun env_from_list_item c = { curPermissionList = #curPermissionList env,
curPermission = #curPermission env,
curEntity = SOME c,
extension = #extension env}:environment
in
List.map env_from_list_item entities
end*)
fun foreach "readPermission_list" env = foreach_permission env "read"
| foreach "updatePermission_list" env = foreach_permission env "update"
| foreach "createPermission_list" env = foreach_permission env "create"
| foreach "deletePermission_list" env = foreach_permission env "delete"
| foreach "executePermission_list" env = foreach_permission env "execute"
| foreach "entity_list" env = foreach_entity env
| foreach listType env = map (pack env) (SuperCart.foreach listType (unpack env))
end