Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id BCE2C200CB6 for ; Wed, 24 May 2017 23:34:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id BBD1D160BEA; Wed, 24 May 2017 21:34:15 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id DDFC1160BEB for ; Wed, 24 May 2017 23:34:14 +0200 (CEST) Received: (qmail 89471 invoked by uid 500); 24 May 2017 21:34:13 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 87873 invoked by uid 99); 24 May 2017 21:34:12 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 May 2017 21:34:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 68AFEE3AA4; Wed, 24 May 2017 21:34:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: scnakandala@apache.org To: commits@airavata.apache.org Date: Wed, 24 May 2017 21:34:39 -0000 Message-Id: <98c15d3f8b314b17b1e5c78503ba9cef@git.apache.org> In-Reply-To: <0c70da5d11144474a0b0d30c186b3100@git.apache.org> References: <0c70da5d11144474a0b0d30c186b3100@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [29/61] [abbrv] airavata git commit: Add generation of PHP Profile Service stubs to script archived-at: Wed, 24 May 2017 21:34:15 -0000 Add generation of PHP Profile Service stubs to script Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/3f404315 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/3f404315 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/3f404315 Branch: refs/heads/master Commit: 3f404315179fb61591123d6f133f4db5d157a876 Parents: 0710b1c Author: Marcus Christie Authored: Thu May 4 14:43:26 2017 -0400 Committer: Marcus Christie Committed: Thu May 4 14:43:26 2017 -0400 ---------------------------------------------------------------------- thrift-interface-descriptions/generate-thrift-stubs.sh | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/3f404315/thrift-interface-descriptions/generate-thrift-stubs.sh ---------------------------------------------------------------------- diff --git a/thrift-interface-descriptions/generate-thrift-stubs.sh b/thrift-interface-descriptions/generate-thrift-stubs.sh index fe968f0..d78d9d5 100755 --- a/thrift-interface-descriptions/generate-thrift-stubs.sh +++ b/thrift-interface-descriptions/generate-thrift-stubs.sh @@ -73,6 +73,7 @@ DATAMODEL_THRIFT_FILE='data-models/airavata_data_models.thrift' APP_CATALOG_THRIFT_FILE='data-models/app-catalog-models/app_catalog_models.thrift' RESOURCE_CATALOG_THRIFT_FILE='data-models/resource-catalog-models/resource_catalog_models.thrift' WORKFLOW_THRIFT_FILE='data-models/workflow-models/workflow_data_model.thrift' +PROFILE_SERVICE_THRIFT_FILE='service-cpis/profile-service/profile-service-cpi.thrift' DATAMODEL_SRC_DIR='../airavata-api/airavata-data-models/src/main/java' JAVA_API_SDK_DIR='../airavata-api/airavata-api-stubs/src/main/java' @@ -220,6 +221,7 @@ generate_php_stubs() { $THRIFT_EXEC ${THRIFT_ARGS} --gen php:autoload ${APP_CATALOG_THRIFT_FILE} || fail unable to generate PHP thrift classes $THRIFT_EXEC ${THRIFT_ARGS} --gen php:autoload ${RESOURCE_CATALOG_THRIFT_FILE} || fail unable to generate PHP thrift classes $THRIFT_EXEC ${THRIFT_ARGS} --gen php:autoload ${AIRAVATA_API_THRIFT_FILE} || fail unable to generate PHP thrift classes + $THRIFT_EXEC ${THRIFT_ARGS} --gen php:autoload ${PROFILE_SERVICE_THRIFT_FILE} || fail unable to generate PHP thrift classes # For the generated java classes add the ASF V2 License header ## TODO Write PHP license parser