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#*************************************************************************
23#
24#  The Contents of this file are made available subject to the terms of
25#  the BSD license.
26#
27#  Copyright 2000, 2010 Oracle and/or its affiliates.
28#  All rights reserved.
29#
30#  Redistribution and use in source and binary forms, with or without
31#  modification, are permitted provided that the following conditions
32#  are met:
33#  1. Redistributions of source code must retain the above copyright
34#     notice, this list of conditions and the following disclaimer.
35#  2. Redistributions in binary form must reproduce the above copyright
36#     notice, this list of conditions and the following disclaimer in the
37#     documentation and/or other materials provided with the distribution.
38#  3. Neither the name of Sun Microsystems, Inc. nor the names of its
39#     contributors may be used to endorse or promote products derived
40#     from this software without specific prior written permission.
41#
42#  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43#  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44#  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
45#  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
46#  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
47#  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
48#  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
49#  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
50#  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
51#  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
52#  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54#**************************************************************************
55
56# Builds the ProtoclHandlerAddon Java component example of the SDK.
57
58PRJ=../../../../..
59SETTINGS=$(PRJ)/settings
60
61include $(SETTINGS)/settings.mk
62include $(SETTINGS)/std.mk
63include $(SETTINGS)/dk.mk
64
65# Define non-platform/compiler specific settings
66COMP_NAME=ProtocolHandlerAddon_java
67OUT_COMP_CLASS=$(OUT_CLASS)/$(COMP_NAME)
68OUT_COMP_MISC=$(OUT_MISC)/$(COMP_NAME)
69COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
70COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
71COMP_JAR_NAME=$(COMP_NAME).uno.jar
72COMP_JAR=$(OUT_CLASS)/$(COMP_JAR_NAME)
73COMP_MANIFESTFILE=$(OUT_COMP_CLASS)/$(COMP_NAME).uno.Manifest
74COMP_UNOPKG_MANIFEST = $(OUT_COMP_CLASS)/$(COMP_NAME)/META-INF/manifest.xml
75COMP_COMPONENTS=$(COMP_NAME).components
76
77REGISTERFLAG=$(OUT_COMP_MISC)$(PS)java_$(COMP_NAME)_register_component.flag
78
79JAVAFILES  = ProtocolHandlerAddon.java
80
81CLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(JAVAFILES))
82
83SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
84		$(PATH_SEPARATOR)$(OUT_COMP_CLASS))
85
86
87# Targets
88.PHONY: ALL
89ALL : DevGuideProtocolHandlerAddon
90
91include $(SETTINGS)/stdtarget.mk
92
93$(OUT_COMP_CLASS)/%.Manifest :
94	-$(MKDIR) $(subst /,$(PS),$(@D))
95	@echo RegistrationClassName: ProtocolHandlerAddon> $@
96
97$(CLASSFILES) : $(JAVAFILES)
98	-$(MKDIR) $(subst /,$(PS),$(@D))
99	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $(JAVAFILES)
100
101# rule for component jar file
102$(COMP_JAR) : $(COMP_MANIFESTFILE) $(CLASSFILES)
103	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
104	-$(MKDIR) $(subst /,$(PS),$(@D))
105	$(SDK_JAR) cvfm $@ $< -C $(OUT_COMP_CLASS) .
106
107# rule for component package manifest
108$(OUT_COMP_CLASS)/%/manifest.xml :
109	-$(MKDIR) $(subst /,$(PS),$(@D))
110	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
111	@echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@
112	@echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
113	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
114	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)Addons.xcu$(QM)"/$(CSEP) >> $@
115	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
116	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ProtocolHandler.xcu$(QM)"/$(CSEP) >> $@
117	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@
118	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(COMP_COMPONENTS)$(QM)"/$(CSEP)>> $@
119	@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
120
121# rule for component package file
122$(COMP_PACKAGE) : $(COMP_JAR) Addons.xcu ProtocolHandler.xcu $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS)
123	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
124	-$(MKDIR) $(subst /,$(PS),$(@D))
125	-$(MKDIR) $(subst /,$(PS),$(OUT_COMP_MISC))
126	$(COPY) $(subst /,$(PS),$<) $(subst /,$(PS),$(OUT_COMP_MISC))
127	cd $(subst /,$(PS),$(OUT_COMP_MISC)) && $(SDK_ZIP) ../../bin/$(@F) $(<F)
128	$(SDK_ZIP) -u $@ Addons.xcu ProtocolHandler.xcu $(COMP_COMPONENTS)
129	cd $(subst /,$(PS),$(OUT_COMP_CLASS)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
130
131$(REGISTERFLAG) : $(COMP_PACKAGE)
132ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
133	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
134	-$(MKDIR) $(subst /,$(PS),$(@D))
135	$(DEPLOYTOOL) $(COMP_PACKAGE_URL)
136	@echo flagged > $(subst /,$(PS),$@)
137else
138	@echo --------------------------------------------------------------------------------
139	@echo  If you want to install your component automatically, please set the environment
140	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
141	@echo  possible if no office instance is running.
142	@echo --------------------------------------------------------------------------------
143endif
144
145DevGuideProtocolHandlerAddon : $(REGISTERFLAG)
146	@echo --------------------------------------------------------------------------------
147	@echo The "$(QM)ProtocolHandler$(QM)" addon component was installed if SDK_AUTO_DEPLOYMENT = YES.
148	@echo You can use this component inside your office installation, see the example
149	@echo description.
150	@echo --------------------------------------------------------------------------------
151
152%.run: $(OUT_COMP_CLASS)/%.class
153	$SDJ_JAVA) -classpath "$(SDK_CLASSPATH)" $(basename $@)
154
155.PHONY: clean
156clean :
157	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS))
158	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_MISC))
159	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
160	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_JAR)))
161