X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Fstring.c;h=4860740616ae97631c1a0c61ffd6f61a10ef8220;hp=9eaa9df800e25219e6d817e98c57daa2b94f4565;hb=c462e188f3e7819c7bc74f671038cdbf36e8c3c0;hpb=64fa3fec6c28f1d077812b4bfa06ae73b0f5999d diff --git a/types/string.c b/types/string.c index 9eaa9df8..48607406 100644 --- a/types/string.c +++ b/types/string.c @@ -16,11 +16,20 @@ * * 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 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. */ #include #include #include +#include static struct definition *_string_definition_new(struct declaration *declaration, @@ -99,3 +108,24 @@ void _string_definition_free(struct definition *definition) g_free(string->value); g_free(string); } + +enum ctf_string_encoding get_string_encoding(const struct definition *field) +{ + struct definition_string *string_definition; + const struct declaration_string *string_declaration; + + string_definition = container_of(field, struct definition_string, p); + string_declaration = string_definition->declaration; + + return string_declaration->encoding; +} + +char *get_string(const struct definition *field) +{ + struct definition_string *string_definition = + container_of(field, struct definition_string, p); + + assert(string_definition->value != NULL); + + return string_definition->value; +}