Added documentation for web socket client
[yangtools.git] / code-generator / binding-generator-impl / src / main / java / org / opendaylight / yangtools / sal / binding / generator / impl / ModuleInfoBackedContext.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.sal.binding.generator.impl;
9
10 import java.io.IOException;
11 import java.io.InputStream;
12 import java.lang.ref.WeakReference;
13 import java.util.Set;
14 import java.util.concurrent.ConcurrentHashMap;
15 import java.util.concurrent.ConcurrentMap;
16
17 import org.opendaylight.yangtools.concepts.AbstractObjectRegistration;
18 import org.opendaylight.yangtools.concepts.ObjectRegistration;
19 import org.opendaylight.yangtools.sal.binding.generator.util.ClassLoaderUtils;
20 import org.opendaylight.yangtools.yang.binding.YangModuleInfo;
21 import org.opendaylight.yangtools.yang.binding.util.BindingReflections;
22 import org.opendaylight.yangtools.yang.model.api.Module;
23 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
24 import org.opendaylight.yangtools.yang.model.util.repo.AdvancedSchemaSourceProvider;
25 import org.opendaylight.yangtools.yang.model.util.repo.SourceIdentifier;
26 import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 import com.google.common.base.Optional;
31 import com.google.common.collect.ImmutableList;
32 import com.google.common.collect.ImmutableSet;
33
34 public class ModuleInfoBackedContext extends GeneratedClassLoadingStrategy //
35         implements //
36         AdvancedSchemaSourceProvider<InputStream> {
37
38     private ModuleInfoBackedContext(GeneratedClassLoadingStrategy loadingStrategy) {
39         this.backingLoadingStrategy = loadingStrategy;
40     }
41
42     public static ModuleInfoBackedContext create() {
43         return new ModuleInfoBackedContext(getTCCLClassLoadingStrategy());
44     }
45
46     public static ModuleInfoBackedContext create(GeneratedClassLoadingStrategy loadingStrategy) {
47         return new ModuleInfoBackedContext(loadingStrategy);
48     }
49
50     private static final Logger LOG = LoggerFactory.getLogger(ModuleInfoBackedContext.class);
51
52     private final ConcurrentMap<String, WeakReference<ClassLoader>> packageNameToClassLoader = new ConcurrentHashMap<>();
53     private final ConcurrentMap<SourceIdentifier, YangModuleInfo> sourceIdentifierToModuleInfo = new ConcurrentHashMap<>();
54
55     private final GeneratedClassLoadingStrategy backingLoadingStrategy;
56
57     @Override
58     public Class<?> loadClass(String fullyQualifiedName) throws ClassNotFoundException {
59         String modulePackageName = BindingReflections.getModelRootPackageName(fullyQualifiedName);
60
61         WeakReference<ClassLoader> classLoaderRef = packageNameToClassLoader.get(modulePackageName);
62         ClassLoader classloader = null;
63         if (classLoaderRef != null && (classloader = classLoaderRef.get()) != null) {
64             return ClassLoaderUtils.loadClass(classloader, fullyQualifiedName);
65         }
66         if (backingLoadingStrategy == null) {
67             throw new ClassNotFoundException(fullyQualifiedName);
68         }
69         Class<?> cls = backingLoadingStrategy.loadClass(fullyQualifiedName);
70         if (BindingReflections.isBindingClass(cls)) {
71             boolean newModule = resolveModuleInfo(cls);
72             if (newModule) {
73                 recreateSchemaContext();
74             }
75         }
76         return cls;
77     }
78
79
80     private synchronized Optional<SchemaContext> recreateSchemaContext() {
81         try {
82             ImmutableList<InputStream> streams = getAvailableStreams();
83             YangParserImpl parser = new YangParserImpl();
84             Set<Module> modules = parser.parseYangModelsFromStreams(streams);
85             SchemaContext schemaContext = parser.resolveSchemaContext(modules);
86             return Optional.of(schemaContext);
87         } catch (IOException e) {
88             LOG.error("Schema was not recreated.",e);
89         }
90         return Optional.absent();
91     }
92
93     // TODO finish schema parsing and expose as SchemaService
94     // Unite with current SchemaService
95     // Implement remove ModuleInfo to update SchemaContext
96
97     public synchronized Optional<SchemaContext> tryToCreateSchemaContext() {
98         return recreateSchemaContext();
99     }
100
101     private ImmutableList<InputStream> getAvailableStreams() throws IOException {
102         ImmutableSet<YangModuleInfo> moduleInfos = ImmutableSet.copyOf(sourceIdentifierToModuleInfo.values());
103
104         ImmutableList.Builder<InputStream> sourceStreams = ImmutableList.<InputStream> builder();
105         for (YangModuleInfo moduleInfo : moduleInfos) {
106             sourceStreams.add(moduleInfo.getModuleSourceStream());
107         }
108         return sourceStreams.build();
109     }
110
111     private boolean resolveModuleInfo(Class<?> cls) {
112         try {
113             return resolveModuleInfo(BindingReflections.getModuleInfo(cls));
114         } catch (Exception e) {
115             throw new IllegalStateException(e);
116         }
117     }
118
119     private boolean resolveModuleInfo(YangModuleInfo moduleInfo) {
120
121         SourceIdentifier identifier = sourceIdentifierFrom(moduleInfo);
122         YangModuleInfo previous = sourceIdentifierToModuleInfo.putIfAbsent(identifier, moduleInfo);
123         ClassLoader moduleClassLoader = moduleInfo.getClass().getClassLoader();
124         if (previous == null) {
125             String modulePackageName = moduleInfo.getClass().getPackage().getName();
126             packageNameToClassLoader.putIfAbsent(modulePackageName, new WeakReference<ClassLoader>(moduleClassLoader));
127
128             for (YangModuleInfo importedInfo : moduleInfo.getImportedModules()) {
129                 resolveModuleInfo(importedInfo);
130             }
131         } else {
132             return false;
133         }
134         return true;
135     }
136
137     private SourceIdentifier sourceIdentifierFrom(YangModuleInfo moduleInfo) {
138         return SourceIdentifier.create(moduleInfo.getName(), Optional.of(moduleInfo.getRevision()));
139     }
140
141     public void addModuleInfos(Iterable<? extends YangModuleInfo> moduleInfos) {
142         for (YangModuleInfo yangModuleInfo : moduleInfos) {
143             registerModuleInfo(yangModuleInfo);
144         }
145     }
146
147     public ObjectRegistration<YangModuleInfo> registerModuleInfo(YangModuleInfo yangModuleInfo) {
148         YangModuleInfoRegistration registration = new YangModuleInfoRegistration(yangModuleInfo, this);
149
150         resolveModuleInfo(yangModuleInfo);
151
152         return registration;
153     }
154
155     @Override
156     public Optional<InputStream> getSchemaSource(SourceIdentifier sourceIdentifier) {
157         YangModuleInfo info = sourceIdentifierToModuleInfo.get(sourceIdentifier);
158         if (info == null) {
159             return Optional.absent();
160         }
161         try {
162             return Optional.of(info.getModuleSourceStream());
163         } catch (IOException e) {
164             return Optional.absent();
165         }
166     }
167
168     @Override
169     public Optional<InputStream> getSchemaSource(String moduleName, Optional<String> revision) {
170         return getSchemaSource(SourceIdentifier.create(moduleName, revision));
171     }
172
173     private static class YangModuleInfoRegistration extends AbstractObjectRegistration<YangModuleInfo> {
174
175         private final ModuleInfoBackedContext context;
176
177         public YangModuleInfoRegistration(YangModuleInfo instance, ModuleInfoBackedContext context) {
178             super(instance);
179             this.context = context;
180         }
181
182         @Override
183         protected void removeRegistration() {
184             context.remove(this);
185         }
186
187     }
188
189     private void remove(YangModuleInfoRegistration registration) {
190         // FIXME implement
191     }
192 }