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 OfficeDevFilter example of the Developers Guide.
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
66SAMPLE_NAME=OfficeDevAsciiFilterExample
67SAMPLE_CLASS_OUT = $(OUT_CLASS)/$(SAMPLE_NAME)
68SAMPLE_GEN_OUT = $(OUT_MISC)/$(SAMPLE_NAME)
69
70COMP_NAME=SampleFilter
71COMP_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(COMP_NAME)
72COMP_PACKAGE = $(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
73COMP_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
74COMP_JAR_NAME = $(COMP_NAME).uno.jar
75COMP_JAR = $(SAMPLE_CLASS_OUT)/$(COMP_JAR_NAME)
76COMP_MANIFESTFILE = $(SAMPLE_GEN_OUT)/$(COMP_NAME).uno.Manifest
77COMP_UNOPKG_MANIFEST = $(SAMPLE_GEN_OUT)/$(COMP_NAME)/META-INF/manifest.xml
78COMP_REGISTERFLAG = $(SAMPLE_GEN_OUT)/devguide_$(COMP_NAME)_component.flag
79COMP_COMPONENTS=$(COMP_NAME).components
80
81# often the java files are structured in a hierarchy similar to the package,
82# for the example we know the package
83PACKAGE = OfficeDev/samples/Filter
84
85COMP_JAVAFILES  = \
86		   FilterOptions.java \
87		   AsciiReplaceFilter.java
88
89COMP_CLASSFILES = $(patsubst %.java,$(COMP_CLASS_OUT)/$(PACKAGE)/%.class,$(COMP_JAVAFILES))
90
91SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
92		$(PATH_SEPARATOR)$(COMP_CLASS_OUT))
93
94
95# Targets
96.PHONY: ALL
97ALL : $(SAMPLE_NAME)
98
99include $(SETTINGS)/stdtarget.mk
100
101$(SAMPLE_GEN_OUT)/%.Manifest :
102	-$(MKDIR) $(subst /,$(PS),$(@D))
103	@echo RegistrationClassName: $(subst /,.,$(PACKAGE)).AsciiReplaceFilter> $@
104
105$(COMP_CLASSFILES) : $(COMP_JAVAFILES)
106	-$(MKDIR) $(subst /,$(PS),$(@D))
107	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(COMP_CLASS_OUT) $(COMP_JAVAFILES)
108
109# rule for component jar file
110$(COMP_JAR) : $(COMP_MANIFESTFILE) $(COMP_CLASSFILES)
111	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
112	-$(MKDIR) $(subst /,$(PS),$(@D))
113	$(SDK_JAR) cvfm $@ $< -C $(COMP_CLASS_OUT) .
114
115# rule for component package manifest
116$(SAMPLE_GEN_OUT)/%/manifest.xml :
117	-$(MKDIR) $(subst /,$(PS),$(@D))
118	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
119	@echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@
120	@echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
121	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
122	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)TypeDetection.xcu$(QM)"/$(CSEP) >> $@
123	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@
124	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(COMP_COMPONENTS)$(QM)"/$(CSEP)>> $@
125	@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
126
127# rule for component package file
128$(COMP_PACKAGE) : $(COMP_JAR) TypeDetection.xcu $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS)
129	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
130	-$(MKDIR) $(subst /,$(PS),$(@D))
131	$(SDK_ZIP) $@ TypeDetection.xcu
132	$(SDK_ZIP) -u $@ $(COMP_COMPONENTS)
133	cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) $(<F)
134	cd $(subst /,$(PS),$(SAMPLE_GEN_OUT)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
135
136$(COMP_REGISTERFLAG) : $(COMP_PACKAGE)
137ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
138	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
139	-$(MKDIR) $(subst /,$(PS),$(@D))
140	$(DEPLOYTOOL) $(COMP_PACKAGE_URL)
141	@echo flagged > $(subst /,$(PS),$@)
142else
143	@echo --------------------------------------------------------------------------------
144	@echo  If you want to install your component automatically, please set the environment
145	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
146	@echo  possible if no office instance is running.
147	@echo --------------------------------------------------------------------------------
148endif
149
150$(SAMPLE_NAME) : $(COMP_REGISTERFLAG)
151	@echo --------------------------------------------------------------------------------
152	@echo The "$(QM)$(COMP_NAME)$(QM)" Java component was installed if SDK_AUTO_DEPLOYMENT = YES.
153	@echo You can use the "$(QM)ASCII Replace$(QM)" filter in your office installation, see the
154	@echo example description.
155	@echo --------------------------------------------------------------------------------
156
157.PHONY: clean
158clean :
159	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT))
160	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
161	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
162