blob: 523efc99a1a32454d6e360e3d05bcf499cb8d2b7 [file] [log] [blame]
Jack Jansen42218ce1997-01-31 16:15:11 +00001/***********************************************************
2Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
16
17While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE OF THIS SOFTWARE.
29
30******************************************************************/
31
Jack Jansen2e4679d1995-02-13 11:39:17 +000032/*
Jack Jansen5bd85d91996-08-23 15:45:26 +000033** Shared library initialization code.
34**
35** This code calls the MetroWerks shared-library initialization code
36** and performs one extra step: it remembers the FSSpec of the file
37** we are loaded from, so we can later call PyMac_AddLibResources to
38** add the file to our resource file chain.
39**
40** This file is needed for PythonCore and for any dynamically loaded
41** module that has interesting resources in its .slb file.
42** Use by replacing __initialize in the "CFM preferences" init field
43** by __initialize_with_resources.
Jack Jansen2e4679d1995-02-13 11:39:17 +000044*/
45
Jack Jansen3089b7e1997-05-07 15:48:01 +000046#include <Types.h>
Jack Jansen2e4679d1995-02-13 11:39:17 +000047#include <Quickdraw.h>
48#include <SegLoad.h>
Jack Jansenc5873011997-02-24 13:59:38 +000049#include <CodeFragments.h>
Jack Jansen2e4679d1995-02-13 11:39:17 +000050#include <Files.h>
51#include <Resources.h>
52
Jack Jansen5bdbabd2000-07-24 19:52:52 +000053/* Defined in the MSL runtime: */
54extern void __initialize(void);
55
56/* Defined either in macglue.c or in a MPW library: */
57extern pascal int PLstrcmp(unsigned char *, unsigned char *);
58
Guido van Rossum7c496ec1995-02-20 23:44:43 +000059/*
60** Variables passed from shared lib initialization to PyMac_AddLibResources.
61*/
62static int library_fss_valid;
63static FSSpec library_fss;
64
Jack Jansen2e4679d1995-02-13 11:39:17 +000065/*
66** Routine called upon fragment load. We attempt to save the FSSpec from which we're
67** loaded. We always return noErr (we just continue without the resources).
68*/
Guido van Rossum7c496ec1995-02-20 23:44:43 +000069OSErr pascal
Jack Jansen3089b7e1997-05-07 15:48:01 +000070__initialize_with_resources(CFragInitBlockPtr data)
Jack Jansen2e4679d1995-02-13 11:39:17 +000071{
Jack Jansen9ff06ce1996-08-19 11:17:33 +000072 /* Call the MW runtime's initialization routine */
73 __initialize();
Jack Jansen8ab11481996-02-29 16:10:32 +000074
Guido van Rossum7c496ec1995-02-20 23:44:43 +000075 if ( data == nil ) return noErr;
Jack Jansen3089b7e1997-05-07 15:48:01 +000076 if ( data->fragLocator.where == kDataForkCFragLocator ) {
Jack Jansen2e4679d1995-02-13 11:39:17 +000077 library_fss = *data->fragLocator.u.onDisk.fileSpec;
78 library_fss_valid = 1;
Jack Jansen3089b7e1997-05-07 15:48:01 +000079 } else if ( data->fragLocator.where == kResourceCFragLocator ) {
Jack Jansen2e4679d1995-02-13 11:39:17 +000080 library_fss = *data->fragLocator.u.inSegs.fileSpec;
81 library_fss_valid = 1;
82 }
83 return noErr;
84}
85
86/*
Jack Jansen2e6445c1998-07-31 09:37:02 +000087** compare two FSSpecs, return true if equal, false if different
88** XXX where could this function live? (jvr)
89*/
90
91static int
92FSpCompare(FSSpec *fss1, FSSpec *fss2) {
93 if (fss1->vRefNum != fss2->vRefNum)
94 return 0;
95 if (fss1->parID != fss2->parID)
96 return 0;
97 return !PLstrcmp(fss1->name, fss2->name);
98}
99
100/* XXX can't include "macglue.h" somehow (jvr) */
101extern FSSpec PyMac_ApplicationFSSpec; /* Application location (from macargv.c) */
102
103/*
Jack Jansen2e4679d1995-02-13 11:39:17 +0000104** Insert the library resources into the search path. Put them after
105** the resources from the application (which we assume is the current
106** resource file). Again, we ignore errors.
107*/
108void
109PyMac_AddLibResources()
110{
Jack Jansen2e6445c1998-07-31 09:37:02 +0000111 if ( !library_fss_valid || FSpCompare(&library_fss, &PyMac_ApplicationFSSpec))
Jack Jansen2e4679d1995-02-13 11:39:17 +0000112 return;
Jack Jansen83f45401995-10-09 23:25:32 +0000113 (void)FSpOpenResFile(&library_fss, fsRdPerm);
Jack Jansen2e4679d1995-02-13 11:39:17 +0000114}
Guido van Rossum7c496ec1995-02-20 23:44:43 +0000115
Jack Jansen3089b7e1997-05-07 15:48:01 +0000116/*
117** Dummy main() program to keep linker happy: we want to
118** use the MW AppRuntime in our shared library (better than building
119** custom runtime libraries as we did before) but AppRuntime
120** expects a main program. Note that it
121*/
122
123#pragma export off
124int
125main(int argc, char **argv) {
126 DebugStr("\pCannot happen: PythonCore dummy main called!");
127}
128#pragma export reset