PluginsManager.cs
Description du code
PluginsManager.cs est un fichier du projet BrolDev.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.
Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.
Code source ou contenu du fichier
Code c# (PluginsManager.cs) (123 lignes)
using System.Collections.Generic; using System.IO; using be.gaudry.model.enums; namespace be.gaudry.model.config { public class PluginsManager { #region declarations private Dictionary<PLUGIN, Plugin> plugins; private bool brolexplorerPlgAvailable, photobrolPlgAvailable, renamerPlgAvailable, zipPlgAvailable, brolFilePropertiesAvailable, brolExifAvailable; #endregion #region singleton static PluginsManager instance = null; private PluginsManager() { brolexplorerPlgAvailable = plugAvailable("BrolExplorer.dll", PLUGIN.explorer); photobrolPlgAvailable = plugAvailable("PhotoBrol.dll", PLUGIN.photo); renamerPlgAvailable = plugAvailable("BrolRenamer.exe", PLUGIN.renamer); zipPlgAvailable = plugAvailable("BrolZip.exe", PLUGIN.zip); brolFilePropertiesAvailable = plugAvailable("BrolFilePropertiesViewer.exe", PLUGIN.metadata); brolExifAvailable = plugAvailable("BrolExifEditor.exe", PLUGIN.exif); plugAvailable("BrolFileStats.exe", PLUGIN.stats); } public static PluginsManager Instance { get { lock (padlock) { if (instance == null) { } return instance; } } } #endregion #region private methods /// <summary> /// Test if a plugin is available for bibliobrol /// if it is available, add it in the plugins list /// </summary> /// <param name="plugName"></param> /// <returns></returns> private bool plugAvailable(string plugName, PLUGIN plugin) { if (File.Exists(plugName)) { return true; } return false; } #endregion #region static methods /* public static Plugin addPlugin(string plugName) { Plugin p = null; if (File.Exists(plugName)) { p = new Plugin("", plugName); instance.plugins.Add(plugName,p); } return p; }*/ public static Plugin getPlugin(PLUGIN plugin) { if (Instance.plugins.ContainsKey(plugin)) { return Instance.plugins[plugin]; } return null; } public static int Count { get { return Instance.plugins.Count; } } /// <summary> /// Get true if bibliobrol can use brolexplorer plugin /// </summary> public static bool BrolExplorerPlugAvailable { get { return Instance.brolexplorerPlgAvailable; } } /// <summary> /// Get true if bibliobrol can use photobrol plugin /// </summary> public static bool PhotoBrolPlugAvailable { get { return Instance.photobrolPlgAvailable; } } public static List<Plugin> Plugins { get { foreach (KeyValuePair<PLUGIN, Plugin> kvp in Instance.plugins) { plugins.Add(kvp.Value); } return plugins; } } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1732360220 23/11/2024 12:10:20 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 16/10/2009, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cs-broldev-source-rf-model/config/PluginsManager.cs.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.