"wrappers/vscode:/vscode.git/clone" did not exist on "928caf609583912da958e68f7969ad6b99b96d30"
AmoebaSerializationProxyRegistration.cpp 6.98 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* -------------------------------------------------------------------------- *
 *                                OpenMMAmoeba                                *
 * -------------------------------------------------------------------------- *
 * This is part of the OpenMM molecular simulation toolkit originating from   *
 * Simbios, the NIH National Center for Physics-Based Simulation of           *
 * Biological Structures at Stanford, funded under the NIH Roadmap for        *
 * Medical Research, grant U54 GM072970. See https://simtk.org.               *
 *                                                                            *
 * Portions copyright (c) 2010 Stanford University and the Authors.           *
 * Authors: Peter Eastman                                                     *
 * Contributors:                                                              *
 *                                                                            *
 * Permission is hereby granted, free of charge, to any person obtaining a    *
 * copy of this software and associated documentation files (the "Software"), *
 * to deal in the Software without restriction, including without limitation  *
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,   *
 * and/or sell copies of the Software, and to permit persons to whom the      *
 * Software is furnished to do so, subject to the following conditions:       *
 *                                                                            *
 * The above copyright notice and this permission notice shall be included in *
 * all copies or substantial portions of the Software.                        *
 *                                                                            *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   *
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    *
 * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,    *
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR      *
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE  *
 * USE OR OTHER DEALINGS IN THE SOFTWARE.                                     *
 * -------------------------------------------------------------------------- */

#ifdef WIN32
#include <windows.h>
#include <sstream>
#else
#include <dlfcn.h>
#include <dirent.h>
#include <cstdlib>
#endif

#include "openmm/OpenMMException.h"
42
43

#include "openmm/AmoebaGeneralizedKirkwoodForce.h"
44
45
46
#include "openmm/AmoebaHarmonicBondForce.h"
#include "openmm/AmoebaHarmonicAngleForce.h"
#include "openmm/AmoebaHarmonicInPlaneAngleForce.h"
47
#include "openmm/AmoebaMultipoleForce.h"
48
49
#include "openmm/AmoebaOutOfPlaneBendForce.h"
#include "openmm/AmoebaPiTorsionForce.h"
50
#include "openmm/AmoebaStretchBendForce.h"
51
#include "openmm/AmoebaTorsionForce.h"
52
53
#include "openmm/AmoebaTorsionTorsionForce.h"
#include "openmm/AmoebaUreyBradleyForce.h"
Mark Friedrichs's avatar
Mark Friedrichs committed
54
#include "openmm/AmoebaVdwForce.h"
55
#include "openmm/AmoebaWcaDispersionForce.h"
56
57

#include "openmm/serialization/SerializationProxy.h"
58
59

#include "openmm/serialization/AmoebaGeneralizedKirkwoodForceProxy.h"
60
61
62
#include "openmm/serialization/AmoebaHarmonicBondForceProxy.h"
#include "openmm/serialization/AmoebaHarmonicAngleForceProxy.h"
#include "openmm/serialization/AmoebaHarmonicInPlaneAngleForceProxy.h"
63
#include "openmm/serialization/AmoebaMultipoleForceProxy.h"
64
65
#include "openmm/serialization/AmoebaOutOfPlaneBendForceProxy.h"
#include "openmm/serialization/AmoebaPiTorsionForceProxy.h"
66
#include "openmm/serialization/AmoebaStretchBendForceProxy.h"
67
#include "openmm/serialization/AmoebaTorsionForceProxy.h"
68
69
#include "openmm/serialization/AmoebaTorsionTorsionForceProxy.h"
#include "openmm/serialization/AmoebaUreyBradleyForceProxy.h"
Mark Friedrichs's avatar
Mark Friedrichs committed
70
#include "openmm/serialization/AmoebaVdwForceProxy.h"
71
#include "openmm/serialization/AmoebaWcaDispersionForceProxy.h"
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

#if defined(WIN32)
    #include <windows.h>
    extern "C" void registerAmoebaSerializationProxies();
    BOOL WINAPI DllMain(HANDLE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved) {
        if (ul_reason_for_call == DLL_PROCESS_ATTACH)
            registerAmoebaSerializationProxies();
        return TRUE;
    }
#else
    extern "C" void __attribute__((constructor)) registerAmoebaSerializationProxies();
#endif

using namespace OpenMM;

extern "C" void registerAmoebaSerializationProxies() {

    // force libOpenMMSerialization to load before libOpenMMSerialization
    // required in order guarantee initialization of
    //    map<const string, const SerializationProxy*> SerializationProxy::proxiesByType;
    //    map<const string, const SerializationProxy*> SerializationProxy::proxiesByName;

    // is there a cleaner solution?

    std::string file = "libOpenMMSerialization.so";
#ifdef WIN32
    // Tell Windows not to bother the user with ugly error boxes.
    const UINT oldErrorMode = SetErrorMode(SEM_FAILCRITICALERRORS);
    HMODULE handle = LoadLibrary(file.c_str());
    SetErrorMode(oldErrorMode); // Restore previous error mode.
    if (handle == NULL) {
103
104
        std::string message;
        std::stringstream(message) << "Error loading library " << file << ": " << GetLastError();
105
106
107
108
109
110
111
112
113
        throw OpenMMException(message);
    }   
#else
    void *handle = dlopen(file.c_str(), RTLD_LAZY | RTLD_GLOBAL);
    if (handle == NULL)
        throw OpenMMException("Error loading library "+file+": "+dlerror());

#endif

114
115
116
117
118
119
120
121
122
123
124
125
126
    SerializationProxy::registerProxy(typeid(AmoebaGeneralizedKirkwoodForce),         new AmoebaGeneralizedKirkwoodForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaHarmonicBondForce),                new AmoebaHarmonicBondForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaHarmonicAngleForce),               new AmoebaHarmonicAngleForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaHarmonicInPlaneAngleForce),        new AmoebaHarmonicInPlaneAngleForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaMultipoleForce),                   new AmoebaMultipoleForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaOutOfPlaneBendForce),              new AmoebaOutOfPlaneBendForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaPiTorsionForce),                   new AmoebaPiTorsionForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaStretchBendForce),                 new AmoebaStretchBendForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaTorsionForce),                     new AmoebaTorsionForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaTorsionTorsionForce),              new AmoebaTorsionTorsionForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaUreyBradleyForce),                 new AmoebaUreyBradleyForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaVdwForce),                         new AmoebaVdwForceProxy());
    SerializationProxy::registerProxy(typeid(AmoebaWcaDispersionForce),               new AmoebaWcaDispersionForceProxy());
127
}