blob: 5c9d0e93f9f5b3899e49640557e2a5debeb007da [file] [log] [blame]
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <string.h>
#include <stdlib.h>
#include "Charmonizer/Core/SharedLib.h"
#include "Charmonizer/Core/Compiler.h"
#include "Charmonizer/Core/Util.h"
#include "Charmonizer/Core/OperatingSystem.h"
struct chaz_SharedLib {
char *name;
char *version;
char *major_version;
};
static char*
S_build_filename(chaz_SharedLib *lib, const char *version, const char *ext);
static const char*
S_get_prefix(void);
chaz_SharedLib*
chaz_SharedLib_new(const char *name, const char *version,
const char *major_version) {
chaz_SharedLib *lib = (chaz_SharedLib*)malloc(sizeof(chaz_SharedLib));
lib->name = chaz_Util_strdup(name);
lib->version = chaz_Util_strdup(version);
lib->major_version = chaz_Util_strdup(major_version);
return lib;
}
void
chaz_SharedLib_destroy(chaz_SharedLib *lib) {
free(lib->name);
free(lib->version);
free(lib->major_version);
free(lib);
}
const char*
chaz_SharedLib_get_name(chaz_SharedLib *lib) {
return lib->name;
}
const char*
chaz_SharedLib_get_version(chaz_SharedLib *lib) {
return lib->version;
}
const char*
chaz_SharedLib_get_major_version(chaz_SharedLib *lib) {
return lib->major_version;
}
char*
chaz_SharedLib_filename(chaz_SharedLib *lib) {
const char *shlib_ext = chaz_OS_shared_lib_ext();
if (strcmp(shlib_ext, ".dll") == 0) {
return S_build_filename(lib, lib->major_version, shlib_ext);
}
else {
return S_build_filename(lib, lib->version, shlib_ext);
}
}
char*
chaz_SharedLib_major_version_filename(chaz_SharedLib *lib) {
const char *shlib_ext = chaz_OS_shared_lib_ext();
return S_build_filename(lib, lib->major_version, shlib_ext);
}
char*
chaz_SharedLib_no_version_filename(chaz_SharedLib *lib) {
const char *prefix = S_get_prefix();
const char *shlib_ext = chaz_OS_shared_lib_ext();
return chaz_Util_join("", prefix, lib->name, shlib_ext, NULL);
}
char*
chaz_SharedLib_implib_filename(chaz_SharedLib *lib) {
return S_build_filename(lib, lib->major_version, ".lib");
}
char*
chaz_SharedLib_export_filename(chaz_SharedLib *lib) {
return S_build_filename(lib, lib->major_version, ".exp");
}
static char*
S_build_filename(chaz_SharedLib *lib, const char *version, const char *ext) {
const char *prefix = S_get_prefix();
const char *shlib_ext = chaz_OS_shared_lib_ext();
if (strcmp(shlib_ext, ".dll") == 0) {
return chaz_Util_join("", prefix, lib->name, "-", version, ext, NULL);
}
else if (strcmp(shlib_ext, ".dylib") == 0) {
return chaz_Util_join("", prefix, lib->name, ".", version, ext, NULL);
}
else {
return chaz_Util_join("", prefix, lib->name, ext, ".", version, NULL);
}
}
static const char*
S_get_prefix() {
if (chaz_CC_msvc_version_num()) {
return "";
}
else if (chaz_OS_is_cygwin()) {
return "cyg";
}
else {
return "lib";
}
}