1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at 10# 11# http://www.apache.org/licenses/LICENSE-2.0 12# 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. 19# 20#************************************************************** 21 22# Builds the Java dialog component example of the SDK. 23 24PRJ=../../../.. 25SETTINGS=$(PRJ)/settings 26 27include $(SETTINGS)/settings.mk 28include $(SETTINGS)/std.mk 29include $(SETTINGS)/dk.mk 30 31# Define non-platform/compiler specific settings 32 33# we use the sample directory name dor separating this example 34# from others in the output directory 35SAMPLE_NAME=DialogComponentSample 36SAMPLE_CLASS_OUT=$(OUT_CLASS)/$(SAMPLE_NAME) 37SAMPLE_GEN_OUT=$(OUT_MISC)/$(SAMPLE_NAME) 38 39COMP_NAME=DialogComponent 40COMP_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(COMP_NAME) 41COMP_GEN_OUT=$(SAMPLE_GEN_OUT)/$(COMP_NAME) 42COMP_RDB_NAME=$(COMP_NAME).uno.rdb 43COMP_RDB=$(COMP_GEN_OUT)/$(COMP_RDB_NAME) 44COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT) 45COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)") 46COMP_JAR_NAME=$(COMP_NAME).uno.jar 47COMP_JAR=$(SAMPLE_CLASS_OUT)/$(COMP_JAR_NAME) 48COMP_JAR_MANIFEST=$(COMP_GEN_OUT)/$(COMP_NAME).uno.Manifest 49COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml 50COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)java_$(COMP_NAME)_register_component.flag 51COMP_COMPONENTS=$(COMP_NAME).components 52 53IDLFILES = XTestDialogHandler.idl \ 54 TestDialogHandler.idl 55 56# normally the idl file should be stored in a directory tree fitting the module structure, 57# for the example we know the module structure 58PACKAGE = com/sun/star/test 59#PACKAGE = org/openoffice 60 61COMP_JAVAFILES = DialogComponent.java 62COMP_CLASSFILES = $(patsubst %.java,$(COMP_CLASS_OUT)/%.class,$(COMP_JAVAFILES)) 63 64GEN_CLASSFILES = $(patsubst %.idl,$(SAMPLE_CLASS_OUT)/$(PACKAGE)/%.class,$(IDLFILES)) 65GEN_TYPELIST = $(subst /,.,$(patsubst %.idl,-T$(PACKAGE)/% ,$(IDLFILES))) 66GEN_URDFILES = $(patsubst %.idl,$(SAMPLE_GEN_OUT)/%.urd,$(IDLFILES)) 67 68# the generated types are necessary for the component and the application jar 69GEN_CLASSFILENAMES = $(subst $(SAMPLE_CLASS_OUT)/,,$(GEN_CLASSFILES)) 70 71SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\ 72 $(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT)\ 73 $(PATH_SEPARATOR)$(COMP_CLASS_OUT)\ 74 $(PATH_SEPARATOR)$(APP1_CLASS_OUT)) 75 76 77# Targets 78.PHONY: ALL 79ALL : DialogComponentExample 80 81include $(SETTINGS)/stdtarget.mk 82 83$(COMP_GEN_OUT)/%.Manifest : 84 -$(MKDIR) $(subst /,$(PS),$(@D)) 85 @echo UNO-Type-Path: $(basename $(notdir $*)).uno.jar> $@ 86 @echo RegistrationClassName: $(basename $*)>> $@ 87 88$(SAMPLE_GEN_OUT)/%.urd : %.idl 89 -$(MKDIR) $(subst /,$(PS),$(@D)) 90 $(IDLC) -C -I. -I$(IDL_DIR) -O$(SAMPLE_GEN_OUT) $< 91 92$(COMP_GEN_OUT)/%.rdb : $(GEN_URDFILES) 93 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 94 -$(MKDIR) $(subst /,$(PS),$(@D)) 95 $(REGMERGE) $@ /UCR $(GEN_URDFILES) 96 97$(GEN_CLASSFILES) : $(COMP_RDB) 98 -$(MKDIR) $(subst /,$(PS),$(@D)) 99 $(JAVAMAKER) -BUCR -nD $(GEN_TYPELIST) -O$(SAMPLE_CLASS_OUT) $(COMP_RDB) -X$(URE_TYPES) -X$(OFFICE_TYPES) 100 101# component as well as application are dependent from the generated types 102# rule for component class files 103$(COMP_CLASS_OUT)/%.class : %.java $(GEN_CLASSFILES) 104 -$(MKDIR) $(subst /,$(PS),$(@D)) 105 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(COMP_CLASS_OUT) $< 106 107# rule for component jar file 108$(COMP_JAR) : $(COMP_JAR_MANIFEST) $(COMP_CLASSFILES) 109 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 110 -$(MKDIR) $(subst /,$(PS),$(@D)) 111 $(SDK_JAR) cvfm $@ $< -C $(COMP_CLASS_OUT) . 112 +cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_JAR) uvf $(@F) $(GEN_CLASSFILENAMES) 113 114# rule for component package manifest 115$(COMP_GEN_OUT)/%/manifest.xml : 116 -$(MKDIR) $(subst /,$(PS),$(@D)) 117 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@ 118 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@ 119 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@ 120 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-typelibrary;type=RDB$(QM)" >> $@ 121 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(SAMPLE_GEN_OUT)/,,$(@D))).uno.rdb$(QM)"/$(CSEP) >> $@ 122 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@ 123 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_COMPONENTS)$(QM)"/$(CSEP)>> $@ 124 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@ 125 126# rule for component package file 127$(COMP_PACKAGE) : $(COMP_RDB) $(COMP_JAR) $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS) 128 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 129 -$(MKDIR) $(subst /,$(PS),$(@D)) 130 $(SDK_ZIP) $@ $(COMP_COMPONENTS) 131 cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../../bin/$(@F) $(COMP_RDB_NAME) 132 cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_JAR_NAME) 133 cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml 134 135$(COMP_REGISTERFLAG) : $(COMP_PACKAGE) 136ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES" 137 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@)) 138 -$(MKDIR) $(subst /,$(PS),$(@D)) 139 $(DEPLOYTOOL) $(COMP_PACKAGE_URL) 140 @echo flagged > $(subst /,$(PS),$@) 141else 142 @echo -------------------------------------------------------------------------------- 143 @echo If you want to install your component automatically, please set the environment 144 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only 145 @echo possible if no office instance is running. 146 @echo -------------------------------------------------------------------------------- 147endif 148 149DialogComponentExample : $(COMP_REGISTERFLAG) 150# TODO: adapt 151 @echo -------------------------------------------------------------------------------- 152 @echo The PropTest was installed if SDK_AUTO_DEPLOYMENT = YES. 153 @echo Load the "$(QM)PropertySet.odt$(QM)" document to see how this component works. You can 154 @echo use this component inside your office installation, see the example description. 155 @echo - 156 @echo $(MAKE) DialogComponent.odt.load 157 @echo -------------------------------------------------------------------------------- 158 159DialogComponent.odt.load : $(COMP_REGISTERFLAG) 160 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@) 161 162.PHONY: clean 163clean : 164 -$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) 165 -$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT)) 166 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL))) 167