1 #
   2 # Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # Setup make rules for creating an RMI compilation.
  27 #
  28 # Parameter 1 is the name of the rule. This name is used as variable prefix,
  29 # and the targets generated are listed in a variable by that name.
  30 #
  31 # Remaining parameters are named arguments. These include:
  32 #   CLASSES:=List of classes to generate stubs for
  33 #   CLASSES_DIR:=Directory where to look for classes
  34 #   STUB_CLASSES_DIR:=Directory in where to put stub classes
  35 #   RUN_V11:=Set to run rmic with -v1.1
  36 #   RUN_V12:=Set to run rmic with -v1.2
  37 #   RUN_IIOP:=Set to run rmic with -iiop
  38 #   RUN_IIOP_STDPKG:=Set to run rmic with -iiop -standardPackage
  39 #   KEEP_GENERATED:=Set to keep generated sources around
  40 define SetupRMICompilation
  41   $(if $(16),$(error Internal makefile error: Too many arguments to SetupRMICompilation, please update RMICompilation.gmk))
  42   $(call EvalDebugWrapper,$(strip $1),$(call SetupRMICompilationInner,$(strip $1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15)))
  43 endef
  44 
  45 define SetupRMICompilationInner
  46   $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $(strip $($i)),$1_$(strip $($i)))$(NEWLINE))
  47   $(call LogSetupMacroEntry,SetupRMICompilation($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
  48   $(if $(16),$(error Internal makefile error: Too many arguments to SetupRMICompilation, please update RMICompilation.gmk))
  49 
  50   $1_DEP_FILE := $$($1_STUB_CLASSES_DIR)/_the.$1_rmic.generated
  51 
  52   $1_CLASSES_SLASH := $$(subst .,/,$$($1_CLASSES))
  53   $1_CLASS_FILES := $$(addprefix $$($1_CLASSES_DIR)/,$$(addsuffix .class,$$($1_CLASSES_SLASH)))
  54   $1_STUB_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Stub.class,$$($1_CLASSES_SLASH)))
  55   $1_TARGETS := $$($1_STUB_FILES)
  56   $1_ARGS :=
  57   ifneq (,$$($1_RUN_V11))
  58     $1_SKEL_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Skel.class,$$($1_CLASSES_SLASH)))
  59     $1_TARGETS += $$($1_SKEL_FILES)
  60     $1_ARGS += -v1.1
  61   endif
  62   ifneq (,$$($1_RUN_V12))
  63     $1_ARGS += -v1.2
  64   endif
  65 
  66   $1_TIE_BASE_FILES := $$(foreach f,$$($1_CLASSES_SLASH),$$(dir $$f)_$$(notdir $$f))
  67   $1_TIE_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/org/omg/stub/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
  68   $1_TIE_STDPKG_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
  69 
  70   ifneq (,$$($1_RUN_IIOP))
  71     $1_TARGETS += $$($1_TIE_FILES)
  72     $1_ARGS += -iiop -emitPermissionCheck
  73   endif
  74   ifneq (,$$($1_RUN_IIOP_STDPKG))
  75     $1_TARGETS += $$($1_TIE_STDPKG_FILES)
  76     $1_ARGS2 := -iiop -emitPermissionCheck -standardPackage
  77   endif
  78 
  79   ifneq (,$$($1_KEEP_GENERATED))
  80     $1_ARGS += -keepgenerated
  81     $1_TARGETS += $$(subst .class,.java,$$($1_TARGETS))
  82   endif
  83 
  84   $1_DOLLAR_SAFE_CLASSES := $$(subst $$$$,\$$$$,$$($1_CLASSES))
  85 
  86   $$($1_TARGETS): $$($1_DEP_FILE) $$($1_CLASS_FILES)
  87 
  88   $$($1_DEP_FILE): $$($1_CLASS_FILES)
  89         $(MKDIR) -p $$($1_STUB_CLASSES_DIR)
  90         $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS) for $$($1_DOLLAR_SAFE_CLASSES) && \
  91         $(RMIC) $$($1_ARGS) -classpath "$$($1_CLASSES_DIR)" \
  92             -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
  93         if [ "x$$($1_ARGS2)" != "x" ]; then \
  94           $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS2) for $$($1_DOLLAR_SAFE_CLASSES) && \
  95           $(RMIC) $$($1_ARGS2) -classpath "$$($1_CLASSES_DIR)" \
  96               -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
  97         fi;
  98         $(TOUCH) $$@
  99 
 100 
 101   $1 := $$($1_TARGETS) $$($1_DEP_FILE)
 102 
 103 endef