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 Minimal component example of the SDK.
23 
24 PRJ=../../..
25 SETTINGS=$(PRJ)/settings
26 
27 include $(SETTINGS)/settings.mk
28 include $(SETTINGS)/std.mk
29 include $(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
35 SAMPLE_NAME=MinimalComponent
36 SAMPLE_CLASS_OUT=$(OUT_CLASS)/$(SAMPLE_NAME)
37 SAMPLE_GEN_OUT=$(OUT_MISC)/$(SAMPLE_NAME)
38 
39 COMP_NAME=MinimalComponent
40 COMP_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(COMP_NAME)
41 COMP_GEN_OUT=$(SAMPLE_GEN_OUT)/$(COMP_NAME)
42 COMP_RDB_NAME=$(COMP_NAME).uno.rdb
43 COMP_RDB=$(COMP_GEN_OUT)/$(COMP_RDB_NAME)
44 COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
45 COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
46 COMP_JAR_NAME=$(COMP_NAME).uno.jar
47 COMP_JAR=$(SAMPLE_CLASS_OUT)/$(COMP_JAR_NAME)
48 COMP_JAR_MANIFEST=$(COMP_GEN_OUT)/$(COMP_NAME).uno.Manifest
49 COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml
50 COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)java_$(COMP_NAME)_register_component.flag
51 COMP_COMPONENTS=$(COMP_NAME).components
52 
53 APP1_NAME=TestMinimalComponent
54 APP1_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(APP1_NAME)
55 APP1_GEN_OUT=$(SAMPLE_GEN_OUT)/$(APP1_NAME)
56 APP1_JAR=$(SAMPLE_CLASS_OUT)/$(APP1_NAME).jar
57 APP1_JAR_MANIFEST=$(APP1_GEN_OUT)/$(APP1_NAME).mf
58 
59 IDLFILES = MinimalComponent.idl
60 
61 # normally the idl file should be stored in a directory tree fitting the module structure,
62 # for the example we know the module structure
63 PACKAGE = org/openoffice
64 
65 COMP_JAVAFILES  = MinimalComponent.java
66 COMP_CLASSFILES = $(patsubst %.java,$(COMP_CLASS_OUT)/%.class,$(COMP_JAVAFILES))
67 
68 GEN_CLASSFILES = $(patsubst %.idl,$(SAMPLE_CLASS_OUT)/$(PACKAGE)/%.class,$(IDLFILES))
69 GEN_TYPELIST = $(subst /,.,$(patsubst %.idl,-T$(PACKAGE)/% ,$(IDLFILES)))
70 GEN_URDFILES = $(patsubst %.idl,$(SAMPLE_GEN_OUT)/%.urd,$(IDLFILES))
71 
72 # the generated types are necessary for the component and the application jar
73 GEN_CLASSFILENAMES = $(subst $(SAMPLE_CLASS_OUT)/,,$(GEN_CLASSFILES))
74 
75 SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
76 		$(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT)\
77 		$(PATH_SEPARATOR)$(COMP_CLASS_OUT)\
78 		$(PATH_SEPARATOR)$(APP1_CLASS_OUT))
79 
80 
81 # Targets
82 .PHONY: ALL
83 ALL : JavaMinimalComponentExample
84 
85 include $(SETTINGS)/stdtarget.mk
86 
87 $(COMP_GEN_OUT)/%.Manifest :
88 	-$(MKDIR) $(subst /,$(PS),$(@D))
89 	@echo UNO-Type-Path: $(basename $*).uno.jar> $@
90 	@echo RegistrationClassName: $(basename $*)>> $@
91 
92 $(SAMPLE_GEN_OUT)/%.urd : %.idl
93 	-$(MKDIR) $(subst /,$(PS),$(@D))
94 	$(IDLC) -C -I. -I$(IDL_DIR) -O$(SAMPLE_GEN_OUT) $<
95 
96 $(COMP_GEN_OUT)/%.rdb : $(GEN_URDFILES)
97 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
98 	-$(MKDIR) $(subst /,$(PS),$(@D))
99 	$(REGMERGE) $@ /UCR $(GEN_URDFILES)
100 
101 $(GEN_CLASSFILES) : $(COMP_RDB)
102 	-$(MKDIR) $(subst /,$(PS),$(@D))
103 	$(JAVAMAKER) -BUCR -nD $(GEN_TYPELIST) -O$(SAMPLE_CLASS_OUT) $(COMP_RDB) -X$(URE_TYPES) -X$(OFFICE_TYPES)
104 
105 # component as well as application are dependent from the generated types
106 # rule for component class files
107 $(COMP_CLASS_OUT)/%.class : %.java $(GEN_CLASSFILES)
108 	-$(MKDIR) $(subst /,$(PS),$(@D))
109 	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(COMP_CLASS_OUT) $<
110 
111 # rule for example application class files
112 $(APP1_CLASS_OUT)/%.class : %.java $(GEN_CLASSFILES)
113 	-$(MKDIR) $(subst /,$(PS),$(@D))
114 	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(APP1_CLASS_OUT) $<
115 
116 # rule for client/example application manifest file
117 $(APP1_GEN_OUT)/%.mf :
118 	-$(MKDIR) $(subst /,$(PS),$(@D))
119 	@echo Main-Class: com.sun.star.lib.loader.Loader> $@
120 	$(ECHOLINE)>> $@
121 	@echo Name: com/sun/star/lib/loader/Loader.class>> $@
122 	@echo Application-Class: $*>> $@
123 
124 # rule for client/example application jar file
125 $(APP1_JAR) : $(APP1_JAR_MANIFEST) $(APP1_CLASS_OUT)/$(APP1_NAME).class $(GEN_CLASSFILES)
126 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
127 	-$(MKDIR) $(subst /,$(PS),$(@D))
128 	$(SDK_JAR) cvfm $@  $< -C $(APP1_CLASS_OUT) .
129 	+cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_JAR) uvf $(@F) $(GEN_CLASSFILENAMES)
130 	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
131 
132 # rule for component jar file
133 $(COMP_JAR) : $(COMP_JAR_MANIFEST) $(COMP_CLASSFILES)
134 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
135 	-$(MKDIR) $(subst /,$(PS),$(@D))
136 	$(SDK_JAR) cvfm $@  $< -C $(COMP_CLASS_OUT) .
137 	+cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_JAR) uvf $(@F) $(GEN_CLASSFILENAMES)
138 
139 # rule for component package manifest
140 $(COMP_GEN_OUT)/%/manifest.xml :
141 	-$(MKDIR) $(subst /,$(PS),$(@D))
142 	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
143 	@echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP)>> $@
144 	@echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP)>> $@
145 	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-typelibrary;type=RDB$(QM)">> $@
146 	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(SAMPLE_GEN_OUT)/,,$(@D))).uno.rdb$(QM)"/$(CSEP)>> $@
147 	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@
148 	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP)>> $@
149 	@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
150 
151 # rule for component package file
152 $(COMP_PACKAGE) : $(COMP_RDB) $(COMP_JAR) $(COMP_UNOPKG_MANIFEST) $(COMP_NAME).components
153 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
154 	-$(MKDIR) $(subst /,$(PS),$(@D))
155 	$(SDK_ZIP) $@ $(COMP_NAME).components
156 	cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../../bin/$(@F) $(COMP_RDB_NAME)
157 	cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_JAR_NAME)
158 	cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
159 
160 $(COMP_REGISTERFLAG) : $(COMP_PACKAGE)
161 ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
162 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
163 	-$(MKDIR) $(subst /,$(PS),$(@D))
164 	$(DEPLOYTOOL) $(COMP_PACKAGE_URL)
165 	@echo flagged > $(subst /,$(PS),$@)
166 else
167 	@echo --------------------------------------------------------------------------------
168 	@echo  If you want to install your component automatically, please set the environment
169 	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
170 	@echo  possible if no office instance is running.
171 	@echo --------------------------------------------------------------------------------
172 endif
173 
174 JavaMinimalComponentExample : $(COMP_REGISTERFLAG) $(APP1_JAR)
175 	@echo --------------------------------------------------------------------------------
176 	@echo Please use the following command to execute the example!
177 	@echo -
178 	@echo $(MAKE) $(APP1_NAME).run
179 	@echo ------
180 	@echo The $(COMP_NAME) component was installed if SDK_AUTO_DEPLOYMENT = YES.
181 	@echo You can use this component inside your office installation, see the example
182 	@echo description.
183 	@echo --------------------------------------------------------------------------------
184 
185 %.run: $(SAMPLE_CLASS_OUT)/%.jar
186 	$(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $<
187 
188 .PHONY: clean
189 clean :
190 	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT))
191 	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
192 	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
193