mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
111027b902
Parsing the new format of the Comfig.ini file.
151 lines
4.5 KiB
C++
151 lines
4.5 KiB
C++
#include "stdafx.h"
|
|
#include "globals.h"
|
|
#include "ib.h"
|
|
#include "comp.h"
|
|
|
|
#define MAX_SIZE 1024
|
|
|
|
extern CString rootPath;
|
|
extern CString configName;
|
|
extern CString configPath;
|
|
extern CString workspacePath;
|
|
extern CString cdPath;
|
|
extern CString tempPath;
|
|
extern CString iniSrcPath;
|
|
extern CString iniDstPath;
|
|
extern CString scriptPath;
|
|
extern CString nscpxpiPath;
|
|
|
|
extern COMPONENT Components[100];
|
|
extern int numComponents;
|
|
extern CString compString;
|
|
|
|
extern "C" __declspec(dllexport)
|
|
int BuildComponentList(COMPONENT *comps, CString compString, int& compNum, CString iniSrcPath,int invisibleCount)
|
|
{
|
|
CString configcompString[50];
|
|
compNum=0;
|
|
|
|
configcompString[0]="XPCOM";
|
|
configcompString[1]="Navigator";
|
|
configcompString[2]="Java";
|
|
configcompString[3]="MailNews";
|
|
configcompString[4]="Instant Messenger";
|
|
configcompString[5]="QFA";
|
|
configcompString[6]="PSM";
|
|
configcompString[7]="Spell Checker";
|
|
configcompString[8]="AOL Art";
|
|
configcompString[9]="Net2Phone";
|
|
configcompString[10]="Flash";
|
|
configcompString[11]="Uninstaller";
|
|
configcompString[12]="AOD";
|
|
configcompString[13]="RealPlayer";
|
|
configcompString[14]="US English Profile Defaults";
|
|
configcompString[15]="HP Printer Plugin";
|
|
configcompString[16]="Classic Skin";
|
|
configcompString[17]="En US lang pack";
|
|
configcompString[18]="US region pack";
|
|
configcompString[19]=" ";
|
|
|
|
int arrayindex=compNum;
|
|
compString = configcompString[compNum];
|
|
CString invNum = compString;
|
|
|
|
// Get all the component info from each component section
|
|
CString component;
|
|
char archive[MAX_SIZE];
|
|
char name[MAX_SIZE];
|
|
char desc[MAX_SIZE];
|
|
char attr[MAX_SIZE];
|
|
|
|
component.Format("Component %s", compString);
|
|
|
|
GetPrivateProfileString(component, "Archive", "", archive, MAX_SIZE, iniSrcPath);
|
|
while (*archive)
|
|
{
|
|
GetPrivateProfileString(component, "Description Short", "",
|
|
name, MAX_SIZE, iniSrcPath);
|
|
GetPrivateProfileString(component, "Description Long", "",
|
|
desc, MAX_SIZE, iniSrcPath);
|
|
GetPrivateProfileString(component, "Attributes", "",
|
|
attr, MAX_SIZE, iniSrcPath);
|
|
|
|
comps[compNum].archive = CString(archive);
|
|
comps[compNum].compname = component;
|
|
comps[compNum].name = CString(name);
|
|
comps[compNum].desc = CString(desc);
|
|
comps[compNum].selected = (strstr(attr, "SELECTED") != NULL);
|
|
comps[compNum].invisible = (strstr(attr, "INVISIBLE") != NULL);
|
|
comps[compNum].launchapp = (strstr(attr, "LAUNCHAPP") != NULL);
|
|
comps[compNum].additional = (strstr(attr, "ADDITIONAL") != NULL);
|
|
|
|
if (!(comps[compNum].selected && comps[compNum].invisible && invisibleCount))
|
|
{
|
|
compNum++;
|
|
compString = configcompString[compNum];
|
|
arrayindex++;
|
|
invNum = configcompString[arrayindex];
|
|
component.Format("Component %s", invNum);
|
|
}
|
|
else
|
|
{
|
|
arrayindex++;
|
|
invNum=configcompString[arrayindex];
|
|
component.Format("Component %s", invNum);
|
|
}
|
|
GetPrivateProfileString(component, "Archive", "", archive, MAX_SIZE, iniSrcPath);
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
extern "C" __declspec(dllexport)
|
|
int GenerateComponentList(CString parms, WIDGET *curWidget)
|
|
{
|
|
rootPath = GetGlobal("Root");
|
|
configName = GetGlobal("CustomizationList");
|
|
configPath = rootPath + "Configs\\" + configName;
|
|
workspacePath = configPath + "\\Workspace";
|
|
nscpxpiPath;
|
|
if (SearchPath(workspacePath, "NSCPXPI", NULL, 0, NULL, NULL))
|
|
nscpxpiPath = workspacePath + "\\NSCPXPI";
|
|
else
|
|
nscpxpiPath = rootPath + "NSCPXPI";
|
|
iniSrcPath = nscpxpiPath + "\\config.ini";
|
|
|
|
BuildComponentList(Components, compString, numComponents, iniSrcPath, 1);
|
|
|
|
int i;
|
|
CString WidgetValue("");
|
|
for (i=0; i<numComponents; i++)
|
|
{
|
|
curWidget->options.name[i] = new char[strlen(Components[i].compname)+1];
|
|
strcpy(curWidget->options.name[i], Components[i].compname);
|
|
|
|
curWidget->options.value[i] = new char[strlen(Components[i].name)+1];
|
|
strcpy(curWidget->options.value[i], Components[i].name);
|
|
|
|
curWidget->optDesc.name[i] = new char[strlen(Components[i].compname)+1];
|
|
strcpy(curWidget->optDesc.name[i], Components[i].compname);
|
|
|
|
curWidget->optDesc.value[i] = new char[strlen(Components[i].desc)+1];
|
|
strcpy(curWidget->optDesc.value[i], Components[i].desc);
|
|
|
|
// INVISIBLE just means not selected, let user decide whether to
|
|
// include them again. SELECTED components get checkmarks.
|
|
if (Components[i].selected)
|
|
{
|
|
WidgetValue += ",";
|
|
WidgetValue += Components[i].name;
|
|
}
|
|
}
|
|
|
|
curWidget->numOfOptions = numComponents;
|
|
curWidget->numOfOptDesc = numComponents;
|
|
|
|
if (curWidget->value.IsEmpty())
|
|
curWidget->value = WidgetValue;
|
|
|
|
return TRUE;
|
|
}
|