blob: ad0dbe974119776f9a0d75a6dac93dd96d5a457d [file] [log] [blame]
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
TRUSTED_TOML="cmake/tomls/Cargo.sgx_trusted_lib.toml"
UNTRUSTED_TOML="cmake/tomls/Cargo.sgx_untrusted_app.toml"
TOML_DEST="Cargo.toml"
TRUSTED_LOCK="third_party/crates-sgx/Cargo.lock"
UNTRUSTED_LOCK="third_party/crates-io/Cargo.lock"
LOCK_DEST="Cargo.lock"
TRUSTED_CONFIG="third_party/crates-sgx/config"
UNTRUSTED_CONFIG="third_party/crates-io/config"
CONFIG_DEST=".cargo/config"
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
teaclave_root=${script_dir}/..
copy() {
# $1: TOML
# $2: LOCK
# $3: CONFIG
mkdir ${teaclave_root}/.cargo
cp $1 ${teaclave_root}/${TOML_DEST}
cp $2 ${teaclave_root}/${LOCK_DEST}
cp $3 ${teaclave_root}/${CONFIG_DEST}
}
clean() {
# clean the IDE helper files for Rust
rm ${teaclave_root}/${TOML_DEST}
rm ${teaclave_root}/${LOCK_DEST}
rm ${teaclave_root}/${CONFIG_DEST}
rm -r ${teaclave_root}/.cargo
}
main() {
if [ $1 = "trusted" ]; then
clean 2>/dev/null
copy $TRUSTED_TOML $TRUSTED_LOCK $TRUSTED_CONFIG
sed -i '/directory = "vendor"/c\directory = "third_party/crates-sgx/vendor"' ${teaclave_root}/${CONFIG_DEST}
elif [ $1 = "untrusted" ]; then
clean 2>/dev/null
copy $UNTRUSTED_TOML $UNTRUSTED_LOCK $UNTRUSTED_CONFIG
sed -i '/directory = "vendor"/c\directory = "third_party/crates-io/vendor"' ${teaclave_root}/${CONFIG_DEST}
elif [ $1 = "clean" ]; then
clean
else
echo "Usage: ./ide.sh <trusted|untrusted|clean>"
return 1
fi
return 0
}
main $*