2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-05-12 23:37:45 +00:00
|
|
|
|
|
|
|
|
1999-11-09 23:28:10 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* A sample of XPConnect. This file contains an implementation nsSample
|
|
|
|
* of the interface nsISample.
|
|
|
|
*
|
|
|
|
*/
|
2001-11-23 22:36:54 +00:00
|
|
|
#include <stdio.h>
|
1999-05-12 23:37:45 +00:00
|
|
|
|
1999-11-09 23:28:10 +00:00
|
|
|
#include "nsSample.h"
|
2000-06-03 09:46:12 +00:00
|
|
|
#include "nsMemory.h"
|
2002-10-17 23:41:47 +00:00
|
|
|
|
|
|
|
#include "nsEmbedString.h"
|
2006-03-15 04:59:42 +00:00
|
|
|
#include "nsIClassInfoImpl.h"
|
1999-05-12 23:37:45 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
nsSampleImpl::nsSampleImpl() : mValue(nullptr)
|
1999-05-12 23:37:45 +00:00
|
|
|
{
|
2014-08-25 19:17:28 +00:00
|
|
|
mValue = (char*)nsMemory::Clone("initial value", 14);
|
1999-05-12 23:37:45 +00:00
|
|
|
}
|
|
|
|
|
1999-11-09 23:28:10 +00:00
|
|
|
nsSampleImpl::~nsSampleImpl()
|
1999-05-12 23:37:45 +00:00
|
|
|
{
|
2014-08-25 19:17:28 +00:00
|
|
|
if (mValue) {
|
|
|
|
nsMemory::Free(mValue);
|
|
|
|
}
|
1999-05-12 23:37:45 +00:00
|
|
|
}
|
|
|
|
|
1999-07-22 02:46:53 +00:00
|
|
|
/**
|
2014-04-27 07:06:00 +00:00
|
|
|
* NS_IMPL_ISUPPORTS expands to a simple implementation of the nsISupports
|
1999-07-22 02:46:53 +00:00
|
|
|
* interface. This includes a proper implementation of AddRef, Release,
|
|
|
|
* and QueryInterface. If this class supported more interfaces than just
|
2014-08-25 19:17:28 +00:00
|
|
|
* nsISupports,
|
1999-07-22 02:46:53 +00:00
|
|
|
* you could use NS_IMPL_ADDREF() and NS_IMPL_RELEASE() to take care of the
|
|
|
|
* simple stuff, but you would have to create QueryInterface on your own.
|
|
|
|
* nsSampleFactory.cpp is an example of this approach.
|
2001-03-12 20:43:02 +00:00
|
|
|
* Notice that the second parameter to the macro is name of the interface, and
|
|
|
|
* NOT the #defined IID.
|
|
|
|
*
|
|
|
|
* The _CI variant adds support for nsIClassInfo, which permits introspection
|
|
|
|
* and interface flattening.
|
1999-07-22 02:46:53 +00:00
|
|
|
*/
|
2013-10-10 20:42:16 +00:00
|
|
|
NS_IMPL_CLASSINFO(nsSampleImpl, nullptr, 0, NS_SAMPLE_CID)
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS_CI(nsSampleImpl, nsISample)
|
1999-07-22 02:46:53 +00:00
|
|
|
/**
|
|
|
|
* Notice that in the protoype for this function, the NS_IMETHOD macro was
|
|
|
|
* used to declare the return type. For the implementation, the return
|
|
|
|
* type is declared by NS_IMETHODIMP
|
|
|
|
*/
|
1999-05-12 23:37:45 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-09 23:28:10 +00:00
|
|
|
nsSampleImpl::GetValue(char** aValue)
|
1999-05-12 23:37:45 +00:00
|
|
|
{
|
2014-08-25 19:17:28 +00:00
|
|
|
NS_PRECONDITION(aValue != nullptr, "null ptr");
|
|
|
|
if (!aValue) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mValue) {
|
|
|
|
/**
|
|
|
|
* GetValue's job is to return data known by an instance of
|
|
|
|
* nsSampleImpl to the outside world. If we were to simply return
|
|
|
|
* a pointer to data owned by this instance, and the client were to
|
|
|
|
* free it, bad things would surely follow.
|
|
|
|
* On the other hand, if we create a new copy of the data for our
|
|
|
|
* client, and it turns out that client is implemented in JavaScript,
|
|
|
|
* there would be no way to free the buffer. The solution to the
|
|
|
|
* buffer ownership problem is the nsMemory singleton. Any buffer
|
|
|
|
* returned by an XPCOM method should be allocated by the nsMemory.
|
|
|
|
* This convention lets things like JavaScript reflection do their
|
|
|
|
* job, and simplifies the way C++ clients deal with returned buffers.
|
|
|
|
*/
|
|
|
|
*aValue = (char*)nsMemory::Clone(mValue, strlen(mValue) + 1);
|
|
|
|
if (!*aValue) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
1999-05-12 23:37:45 +00:00
|
|
|
}
|
2014-08-25 19:17:28 +00:00
|
|
|
} else {
|
|
|
|
*aValue = nullptr;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
1999-05-12 23:37:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-09 23:28:10 +00:00
|
|
|
nsSampleImpl::SetValue(const char* aValue)
|
1999-05-12 23:37:45 +00:00
|
|
|
{
|
2014-08-25 19:17:28 +00:00
|
|
|
NS_PRECONDITION(aValue != nullptr, "null ptr");
|
|
|
|
if (!aValue) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mValue) {
|
|
|
|
nsMemory::Free(mValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Another buffer passing convention is that buffers passed INTO your
|
|
|
|
* object ARE NOT YOURS. Keep your hands off them, unless they are
|
|
|
|
* declared "inout". If you want to keep the value for posterity,
|
|
|
|
* you will have to make a copy of it.
|
|
|
|
*/
|
|
|
|
mValue = (char*)nsMemory::Clone(aValue, strlen(aValue) + 1);
|
|
|
|
return NS_OK;
|
1999-05-12 23:37:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-09 23:28:10 +00:00
|
|
|
nsSampleImpl::Poke(const char* aValue)
|
1999-05-12 23:37:45 +00:00
|
|
|
{
|
2014-08-25 19:17:28 +00:00
|
|
|
return SetValue((char*)aValue);
|
1999-05-12 23:37:45 +00:00
|
|
|
}
|
|
|
|
|
2002-10-17 23:41:47 +00:00
|
|
|
|
2014-08-25 19:17:28 +00:00
|
|
|
static void
|
|
|
|
GetStringValue(nsACString& aValue)
|
2002-10-17 23:41:47 +00:00
|
|
|
{
|
2014-08-25 19:17:28 +00:00
|
|
|
NS_CStringSetData(aValue, "GetValue");
|
2002-10-17 23:41:47 +00:00
|
|
|
}
|
|
|
|
|
1999-05-12 23:37:45 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-09 23:28:10 +00:00
|
|
|
nsSampleImpl::WriteValue(const char* aPrefix)
|
1999-05-12 23:37:45 +00:00
|
|
|
{
|
2014-08-25 19:17:28 +00:00
|
|
|
NS_PRECONDITION(aPrefix != nullptr, "null ptr");
|
|
|
|
if (!aPrefix) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s %s\n", aPrefix, mValue);
|
|
|
|
|
|
|
|
// This next part illustrates the nsEmbedString:
|
|
|
|
nsEmbedString foopy;
|
|
|
|
foopy.Append(char16_t('f'));
|
|
|
|
foopy.Append(char16_t('o'));
|
|
|
|
foopy.Append(char16_t('o'));
|
|
|
|
foopy.Append(char16_t('p'));
|
|
|
|
foopy.Append(char16_t('y'));
|
|
|
|
|
|
|
|
const char16_t* f = foopy.get();
|
|
|
|
uint32_t l = foopy.Length();
|
|
|
|
printf("%c%c%c%c%c %d\n",
|
|
|
|
char(f[0]), char(f[1]), char(f[2]), char(f[3]), char(f[4]), l);
|
|
|
|
|
|
|
|
nsEmbedCString foopy2;
|
|
|
|
GetStringValue(foopy2);
|
|
|
|
|
|
|
|
//foopy2.AppendLiteral("foopy");
|
|
|
|
const char* f2 = foopy2.get();
|
|
|
|
uint32_t l2 = foopy2.Length();
|
|
|
|
|
|
|
|
printf("%s %d\n", f2, l2);
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-05-12 23:37:45 +00:00
|
|
|
}
|